/*

TemplateMo 591 villa agency

https://templatemo.com/tm-591-villa-agency

*/

/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");

/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}

header,
nav,
section,
article,
aside,
footer,
hgroup {
    display: block;
}

* {
    box-sizing: border-box;
}

html,
body {
    font-family: "Poppins", sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;


    user-select: none;  /* Prevent text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;


}
img {
    pointer-events: none;
    -webkit-user-drag: none;
}


a {
    text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1e1e1e;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    font-weight: 700;
}

ul {
    margin-bottom: 0px;
}

p {
    font-size: 14px;
    line-height: 28px;
    color: #4a4a4a;
}

img {
    width: 100%;
    overflow: hidden;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
    font-family: "Poppins", sans-serif;
}

::selection {
    background: #0071f8;
    color: #fff;
}

::-moz-selection {
    background: #0071f8;
    color: #fff;
}

.section-heading {
    margin-bottom: 70px;
}

.section-heading h2 {
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 20px;
    line-height: 56px;
}

.section-heading h2 em {
    font-style: normal;
    color: #0071f8;
}

.section-heading h6 {
    color: #ee626b;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.icon-button a {
    display: inline-block;
    background-color: #1e1e1e;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    height: 50px;
    line-height: 50px;
    padding: 0px 30px 0px 0px;
    border-radius: 25px;
    transition: all 0.3s;
}

.icon-button a i {
    background-color: #f35525;
    height: 50px;
    width: 50px;
    text-align: center;
    border-radius: 50%;
    line-height: 50px;
    display: inline-block;
    margin-right: 15px;
    margin-left: -1px;
}

.icon-button a:hover {
    color: #f35525;
}

.icon-button a:hover i {
    color: #fff;
}

.main-button a {
    display: inline-block;
    background-color: #1e1e1e;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    line-height: 40px;
    padding: 0px 30px;
    border-radius: 25px;
    transition: all 0.3s;
}

.main-button a:hover {
    background-color: #f35525;
    color: #fff;
}

/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.99);
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.js-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@-webkit-keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@-webkit-keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

@keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

.preloader-inner {
    position: relative;
    width: 142px;
    height: 40px;
    background: transparent;
}

.preloader-inner .dot {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    left: 15px;
    background: #f35525;
    border-radius: 50%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation: dot 2.8s infinite;
    animation: dot 2.8s infinite;
}

.preloader-inner .dots {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    -webkit-animation: dots 2.8s infinite;
    animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 16px;
    background: #f35525;
    border-radius: 50%;
}

/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

.sub-header {
    background-color: #fff;
    padding: 10px 0px;
    border-bottom: 1px solid #eee;
    min-height: 40px;
}

.sub-header ul li {
    display: inline-block;
}

.sub-header ul.social-links {
    text-align: right;
}

.sub-header ul.social-links li {
    margin-left: 8px;
}

.sub-header ul.social-links li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #cdcdcd;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
}

.sub-header ul.social-links li a:hover {
    background-color: #f35525;
}

.sub-header ul.info {
    display: flex;
    align-items: center;
}

.sub-header ul.info li {
    font-size: 14px;
    color: #7a7a7a;
    border-right: 1px solid #eee;
    margin-right: 25px;
    padding-right: 25px;
    display: flex;
    align-items: center;
}

.sub-header ul.info li:last-child {
    margin-right: 0px;
    padding-right: 0px;
    border-right: none;
}

.sub-header ul.info li i {
    font-size: 20px;
    color: #f35525;
    margin-right: 8px;
}

.background-header {
    background-color: #fff;
    height: 130px !important;
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.header-area {
    position: relative;
    background-color: #fff;
    height: 120px;
    z-index: 100;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    display: flex;
    align-items: stretch;
}

.header-area .main-nav {
    background: transparent;
    display: flex;
    align-items: center;
}

.header-area .main-nav .logo {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    display: inline-block;
}

.header-area .main-nav .logo h1 {
    line-height: 100px;
    font-size: 28px;
    text-transform: uppercase;
    color: #1e1e1e;
    font-weight: 700;
    letter-spacing: 7px;
}

.background-header .main-nav .logo h1 {
    line-height: 80px;
}

.header-area .main-nav ul.nav {
    flex-basis: 100%;
    justify-content: right;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
    /*z-index: 999; FEB 16*/
    display: flex;
    align-items: center;
    z-index: 99;
}

.header-area .main-nav .nav li:last-child {
    padding-right: 0px;
}

.header-area .main-nav .nav li {
    padding-left: 10px;
    padding-right: 10px;
}

.header-area .main-nav .nav li a {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 500;
    font-size: 15px;
    height: 40px;
    line-height: 40px;
    text-transform: capitalize;
    color: #1e1e1e;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    border: transparent;
    letter-spacing: 0.25px;
}

/* .header-area .main-nav .nav li:last-child a {
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  border-radius: 20px;
  padding-left: 0px;
} */

.header-area .main-nav .nav li:last-child a i {
    background-color: #f35525;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    margin-left: -1px;
}

/* .header-area .main-nav .nav li:last-child:hover a {
  background-color: #1e1e1e;
} */

/* .header-area .main-nav .nav li:last-child:hover a i {
  color: #fff;
} */

.header-area .main-nav .nav li:hover a {
    color: #f35525;
}

.header-area .main-nav .nav li a.active {
    color: #f35525;
}

.background-header .main-nav .nav li a.active {
    color: #f35525;
}

.header-area .main-nav .menu-trigger {
    cursor: pointer;
    position: absolute;
    /*top: 23px;*/
    /*top: 0;*/
    top: -38px;
    width: 32px;
    height: 40px;
    text-indent: -9999em;
    z-index: 99;
    right: 20px;
    display: none;
}

.background-header .main-nav .menu-trigger {
    top: 22px;
}

.background-header .main-nav ul.nav {
    margin-top: 20px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #1e1e1e;
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #1e1e1e;
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 0;
    width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
    content: "";
}

.header-area .main-nav .menu-trigger span {
    top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
    -moz-transform-origin: 33% 100%;
    -ms-transform-origin: 33% 100%;
    -webkit-transform-origin: 33% 100%;
    transform-origin: 33% 100%;
    top: -10px;
    z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
    -moz-transform-origin: 33% 0;
    -ms-transform-origin: 33% 0;
    -webkit-transform-origin: 33% 0;
    transform-origin: 33% 0;
    top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
    background-color: transparent;
    width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
    -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
    -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
    -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
    transform: translateY(6px) translateX(1px) rotate(45deg);
    background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
    background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
    -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
    -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
    -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
    transform: translateY(-6px) translateX(1px) rotate(-45deg);
    background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
    background-color: #1e1e1e;
}

.visible {
    display: inline !important;
}

@media (max-width: 1200px) {
    .header-area .main-nav .nav li {
        padding-left: 5px;
        padding-right: 5px;
    }
}

.founder-image {
    width: 100%;
    max-width: 160px;
    border-radius: 5px;
}

@media (max-width: 1400px) {
    .background-header .main-nav {
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
        border-radius: 0px 0px 25px 25px;
        width: 100%;
    }

    .background-header .main-nav .nav,
    .header-area .main-nav .nav {
        background-color: #fff;
    }

    .background-header .main-nav .nav li a,
    .header-area .main-nav .nav li a {
        line-height: 50px;
        height: 50px;
        font-weight: 400;
        color: #1e1e1e;
        background-color: #fff;
        border-radius: 0px 0px 25px 25px;
    }

    .background-header .main-nav .nav li,
    .header-area .main-nav .nav li {
        border-top: 1px solid #ddd;
        background-color: #f1f0fe;
        height: 50px;
        border-radius: 0px 0px 25px 25px;
    }

    .header-area .main-nav .nav {
        height: auto;
        flex-basis: 100%;
    }

    .header-area .main-nav .logo {
        position: absolute;
        left: 20px;
        top: 50%;
         /*top: 20%;*/
        transform: translateY(-50%);
    }

    .header-area .main-nav .logo img {
        max-width: 350px !important;
    }

    /* .background-header .main-nav .logo {
    top: 0px;
  } */

    .background-header .main-nav .border-button {
        top: 0px !important;
    }

    .header-area .main-nav .border-button {
        position: absolute;
        top: 15px;
        right: 70px;
    }

    .header-area.header-sticky .nav li a:hover,
    .header-area.header-sticky .nav li a.active {
        color: #ee626b !important;
        opacity: 1;
    }

    .header-area.header-sticky .nav li.search-icon a {
        width: 100%;
    }

    .header-area .nav li:last-child a {
        background-color: transparent !important;
        font-weight: 300 !important;
        text-transform: capitalize !important;
    }

    .header-area {
        padding: 0;
        height: 80px;
        box-shadow: none;
        text-align: center;
    }

    .header-area .container {
        padding: 0 !important;
        max-width: 100%;
    }

    .header-area .logo {
        margin-left: 0px;
    }

    .header-area .menu-trigger {
        display: block !important;
    }

    .header-area .main-nav {
        overflow: hidden;
    }

    .header-area .main-nav .nav {
        float: none;
        width: 100%;
        -webkit-transition: all 0s ease 0s;
        -moz-transition: all 0s ease 0s;
        -o-transition: all 0s ease 0s;
        transition: all 0s ease 0s;
        margin-left: 0px;
    }

    .sub-header ul.info {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .sub-header ul.info li {
        font-size: 10px;
        margin-right: 10px;
        padding-right: 10px;
    }

    .sub-header ul.info li i {
        font-size: 12px;
        margin-right: 5px;
    }

    .header-area .main-nav .nav li:first-child {
        border-top: 1px solid #eee;
    }

    .header-area.header-sticky .nav {
        margin-top: 0px !important;
    }

    .background-header.header-sticky .nav {
        /* margin-top: 80px !important; */
    }

    .header-area .main-nav .nav li {
        width: 100%;
        background: #fff;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .header-area .main-nav ul.nav {
        display: none;
    }
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner .item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 220px 20% 320px 20%;
    margin-top: 0px;
}

.main-banner .item-1 {
    background-image: url('../images/home-banner-01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-banner .item-2 {
    background-image: url('../images/home-banner-02.jpg');
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-banner .item-3 {
    background-image: url('../images/home-banner-03.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-banner .item-4 {
    background-image: url('../images/home-banner-04.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
}

.main-banner .item-5 {
    background-image: url('../images/home-banner-05.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
}
.main-banner .item-6 {
    background-image: url('../images/1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
}
.main-banner .item-7 {
    background-image: url('../images/2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
}
.main-banner .item-8 {
    background-image: url('../images/3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
}
.main-banner .item-9 {
    background-image: url('../images/4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
}
.main-banner .item-10 {
    background-image: url('../images/5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
}

.main-banner .item span.category {
    background-color: #fff;
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 6px 15px;
    display: inline-block;
    margin-bottom: 30px;
}

.header-text {
    position: absolute;
    left: 12%;
    top: 50%;
    transform: translateY(-50%);
}

.main-banner .item span.category em {
    font-style: normal;
    color: #f35525;
}

.main-banner .item h2 {
    font-size: 52px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 65px;
        margin-top: 0px;
    margin-bottom: 0px;
    margin-left: -150px;
    margin-right: 0px;
}

.main-banner .item h5 {
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 65px;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: -150px;
    margin-right: 0px;
}
.main-banner .item h6 {
    font-size: 29px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 36px;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: -150px;
    margin-right: 0px;
}
.malayalam_heading {
    font-size: 62px !important;
}

.main-banner .owl-dots {
    position: absolute;
    bottom: 60px;
    left: 20%;
}

.main-banner .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.5s;
}

.main-banner .owl-dots .active {
    background-color: #f35525;
    width: 13px;
    height: 13px;
}

.main-banner .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50px);
}

.main-banner .owl-nav .owl-prev i,
.main-banner .owl-nav .owl-next i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    display: inline-block;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s;
}

.main-banner .owl-nav .owl-prev i {
    position: absolute;
    left: 45px;
}

.main-banner .owl-nav .owl-next i {
    position: absolute;
    right: 45px;
}

.main-banner .owl-nav .owl-prev i:hover,
.main-banner .owl-nav .owl-next i:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1200px) {
    .main-banner .item h2 {
        font-size: 42px;
        line-height: 55px;
        margin-left: -45px;
    }

    .main-banner .item h5 {
        font-size: 30px;
        line-height: 45px;
        margin-left: -86px;
    }

    .main-banner .item h6 {
        font-size: 17px;
        line-height: 36px;
        margin-left: -84px;
    }

    .malayalam_heading {
        font-size: 50px !important;
    }
}

@media (max-width: 768px) {
    .main-banner .item h2 {
        font-size: 32px;
        line-height: 45px;
        margin-left: -50px;
    }

    .main-banner .item h5 {
        font-size: 24px;
        line-height: 35px;
        margin-left: -65px;
    }

    .main-banner .item h6 {
        font-size: 20px;
        line-height: 28px;
        margin-left: -65px;
    }

    .malayalam_heading {
        font-size: 40px !important;
    }
}

@media (max-width: 480px) {
    .main-banner .item h2 {
        font-size: 26px;
        line-height: 36px;
        margin-left: -25px;
    }

    .main-banner .item h5 {
        font-size: 20px;
        line-height: 28px;
        margin-left: -30px;
    }

    .main-banner .item h6 {
        font-size: 13px;
        line-height: 22px;
        margin-left: -42px;
    }

    .malayalam_heading {
        font-size: 32px !important;
        text-align: inherit;
    }
}

/* 
---------------------------------------------
Featured Style
--------------------------------------------- 
*/
.uppercase {
    text-transform: uppercase;
}
.special-ul {
    margin-top:10px;
    /*list-style-type: square;*/
    /*padding-left: 20px;*/ /* Ensures bullets are not cut off */
}

.special-ul li {
    list-style-type: disc;
    margin-bottom: 10px;
    margin-left: 20px;
}


.featured_row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}



.featured_heading {
    color: #1e1e1e;
    font-size: 30px;
    font-weight: 700;
}

.featured_sub_heading {
    margin: 0;
    margin-top: 0.5rem;
    box-shadow: none;
    font-size: 22px;
    font-weight: 500;
    color: #f35525;
}

.featured_para {
    margin-top: 0.5rem;
    font-size: 17px;
    /*line-height: normal;*/
    color: #4a4a4a;
    /*max-width: 40rem;*/
}

@media (max-width: 992px) {
    .featured_row {
        gap: 2rem;
    }

    .featured_sub_heading {
        font-size: 18px;
    }

    .featured_para {
        font-size: 15px;
    }

    .featured_row div img {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .featured_row {
        flex-direction: column;
        padding: 0 2%;
    }

    .featured_row div img {
        min-width: 0;
    }
}

/* 
.featured #headingThree {
  border-bottom: none;
}

.featured .accordion-item:last-of-type .accordion-collapse {
  border-top: 1px solid #ffffff;
}

.featured .info-table {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  height: 600px;
}

.featured .info-table ul li {
  display: block;
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid #eee;
}

.featured .info-table ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.featured .info-table ul li img {
  float: left;
  margin-right: 25px;
}

.featured .info-table ul li h4 {
  font-size: 22px;
  font-weight: 600;
}

.featured .info-table ul li h4 span {
  font-size: 15px;
  color: #aaa;
  font-weight: 400;
} */

/* 
---------------------------------------------
Video Style
--------------------------------------------- 
*/

.video {
    background-image: url(../images/video-bg.html);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 100px 0px 250px 0px;
    position: relative;
}

.video-content {
    margin-top: -240px;
}

.video .section-heading h2 {
    color: #fff;
}

.video-content .video-frame {
    position: relative;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.video-content .video-frame img {
    border-radius: 10px;
}

.video-content .video-frame a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-26px, -26px);
    width: 52px;
    height: 52px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 52px;
    color: #f35525;
    outline: 15px solid rgba(254, 85, 37, 0.5);
    font-size: 18px;
}

/* 
---------------------------------------------
Page Link Card Style
--------------------------------------------- 
*/

.page_link_card_container {
    margin-top: 6rem;
    margin-bottom: 3rem;
}

.page_link_card {
    background-color: #ffeee9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-radius: 8px;
    min-height: 9.5rem;
}

.page_link_card h4 {
    font-size: 1.5rem;
    color: #1e1e1e;
    font-weight: 700;
}

@media (max-width: 768px) {
    .page_link_card h4 {
        font-size: 1.25rem;
    }
}

/* 
---------------------------------------------
We Provide Style
--------------------------------------------- 
*/

.provide_heading {
    margin-top: 8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 40px;
    text-transform: capitalize;
}

.provide_card_container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    min-height: 80vh;
}

/*.provide_card {
    width: 100%;
    max-width: 320px;
    
}*/
.provide_card_gallery {
   width: 350px;              /* Fixed width for container */
    height: 350px;             /* Fixed height for container */
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;  
}

.weProvide_image_gallery {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;       /* Keeps aspect ratio, shows full image */
    display: block;
}


.provide_card {
    width: 100%;
    max-width: 320px;
    padding: 15px;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Prevents text from spilling */
    min-height: 180px; /* Gives enough space for larger text */
}



.weProvide_image {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 15px;
    display: block;
}
.weProvide_image12 {
    width: 100%;
    object-fit: cover;
  
    border-radius: 15px;
    display: block;
}
.provide_card_text {
    margin-top: 0.5rem;
    font-size: 20px;
    font-weight: 600;
    color: #1e1e1e;
}

.provide_sub_heading {
    font-size: 24px;
    color: #1e1e1e;
    font-weight: 600;
}

.provide_para {
    margin-top: 0.35rem;
    font-size: 18px;
    line-height: 26px;
    color: #3a3a3a;
}

.provide_view_more {
    font-size: 16px;
    color: #ee626b;
    text-decoration: underline !important;
}

.provide_view_more_btn {
    margin-top: 1rem;
    background-color: #243e8c;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease-in;
}

.provide_view_more_btn:hover {
    background-color: #1a327a;
}

@media (max-width: 768px) {
    .provide_heading {
        margin-top: 5rem;
        font-size: 30px;
    }

    .provide_card_text {
        font-size: 18px;
    }

    .provide_sub_heading {
        font-size: 22px;
    }

    .provide_para {
        margin-top: 0.35rem;
        font-size: 16px;
        line-height: normal !important;
    }

    .provide_view_more {
        font-size: 14px;
    }
}

/* 
---------------------------------------------
Best Deal Style
--------------------------------------------- 
*/

.best-deal {
    background-color: #fafafa;
    padding: 100px 0px;
}

.best-deal .tab-content img {
    padding: 10px 45px;
}

.best-deal .tabs-content .nav-link {
    font-size: 16px;
    font-weight: 500;
    background-color: #1e1e1e !important;
    border-radius: 5px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    padding: 0px 25px;
    color: #fff;
}

.best-deal .tabs-content .nav-tabs .nav-link.active {
    background-color: #f35525 !important;
    color: #fff;
}

.best-deal .tabs-content ul.nav-tabs {
    border-bottom: none !important;
    margin-bottom: 80px;
    align-items: end;
    justify-content: end;
    margin-top: -130px;
}

.best-deal .tabs-content ul.nav-tabs li {
    padding-right: 0px;
    border-right: none;
    margin-left: 20px;
}

.best-deal .info-table {
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    padding: 35px 30px;
}

.best-deal .info-table ul li {
    display: block;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 15px;
    color: #aaa;
    font-weight: 400;
}

.best-deal .info-table ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.best-deal .info-table ul li span {
    font-size: 20px;
    color: #1e1e1e;
    font-weight: 700;
    float: right;
    display: inline-block;
}

.best-deal .tabs-content {
    padding: 0px;
    background-color: transparent;
}

.best-deal .tabs-content h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 30px;
}

.best-deal .icon-button {
    margin-top: 30px;
}

/* 
---------------------------------------------
Properties Style
--------------------------------------------- 
*/

.properties .item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.properties .item img {
    border-radius: 10px;
}

.properties .item span.category {
    background-color: #fbd9cf;
    font-weight: 500;
    border-radius: 5px;
    font-size: 14px;
    color: #1e1e1e;
    padding: 5px 12px;
    display: inline-block;
    margin-top: 25px;
}

.properties .item h4 {
    font-size: 19px;
    margin: 25px 0px;
}

.properties .item h4 a {
    color: #1e1e1e;
}

.properties .item ul li {
    display: inline-block;
    font-size: 15px;
    color: #4a4a4a;
    margin-right: 20px;
}

.properties .item ul li span {
    font-weight: 600;
    color: #1e1e1e;
}

.properties .item ul {
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.properties .item h6 {
    font-size: 20px;
    color: #f35525;
    margin-top: 6px;
    display: inline-block;
    float: right;
    margin-top: 30px;
}

.properties .item .main-button {
    text-align: center;
}

/* 
---------------------------------------------
Contact Style
--------------------------------------------- 
*/

.contact {
    background-image: url(../img/Bl-1-01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 100px 0px 250px 0px;
    position: relative;
}

.contact .section-heading h2 {
    color: #fff;
}

.contact-content {
    margin-top: -240px;
    position: relative;
    z-index: 1;
}

.contact-content #map {
    border-radius: 10px;
    margin-bottom: 60px;
}

.contact-content .item {
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    padding: 35px 35px;
    background-color: #fff;
}

.contact-content .phone {
    margin-right: 15px;
    margin-left: 15px;
}

.contact-content .email {
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 20px;
}

.contact-content .item img {
    float: left;
    margin-right: 25px;
    vertical-align: middle;
}

.contact-content .item h6 {
    font-size: 20px;
    font-weight: 600;
    vertical-align: middle;
}

.contact-content .item h6 span {
    font-size: 15px;
    color: #aaaaaa;
    font-weight: 400;
}

.contact-content #contact-form {
    margin-left: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    padding: 35px 30px;
    background-color: #fff;
}

.contact-content #contact-form label {
    font-size: 15px;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.contact-content #contact-form input {
    width: 100%;
    height: 44px;
    border-radius: 22px;
    background-color: #f6f6f6;
    border: none;
    margin-bottom: 30px;
    font-size: 14px;
    padding: 0px 15px;
}

.contact-content #contact-form textarea {
    width: 100%;
    height: 150px;
    max-height: 180px;
    border-radius: 22px;
    background-color: #f6f6f6;
    border: none;
    margin-bottom: 40px;
    font-size: 14px;
    padding: 15px 15px;
}

.contact-content #contact-form button {
    background-color: #1e1e1e;
    height: 44px;
    border-radius: 22px;
    padding: 0px 20px;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.5s;
}

.contact-content #contact-form button:hover {
    background-color: #f35525;
}

.contact_container {
    margin-top: 8rem;
    width: 100%;
    background-image: url(../img/Bl-1-01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 6rem 5% 5rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact_sub_heading {
    color: #ee626b;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.contact_heading {
    margin-top: 1rem;
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: normal;
    color: #fff;
}

.contact_details {
    margin-top: 4rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.first_section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location_card {
    max-width: 820px;
    border-radius: 20px;
    box-shadow: 0px 0px 15px rgba(19, 18, 18, 0.15);
    background-color: white;
    padding: 2rem 1.5rem;
    gap: 1rem;
    row-gap: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.location_card_item h4 {
    color: rgb(255, 81, 0);
    font-size: 1.25rem;
    font-weight: 600;
}

.location_card_item p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #1e1e1e;
    font-weight: 500;
    line-height: normal;
}

.location_card_item img {
    margin-top: 1.5rem;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 15px;
}

.contact_card_container {
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.contact_card {
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.contact_card img {
    max-width: 25px;
}

.contact_card h6 {
    font-size: 16px;
    font-weight: 600;
}

.contact_card h6 span {
    font-size: 13px;
    color: #aaaaaa;
    font-weight: 400;
}

.contact_from_container {
    max-width: 500px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    padding: 35px 30px;
    background-color: #fff;
}

.contact_from_container .contact_from {
    width: 100%;
}

.contact_from_container .contact_from input,
.contact_from_container .contact_from textarea {
    width: 100%;
    border-radius: 15px;
    background-color: #f6f6f6;
    border: none;
    font-size: 14px;
}

.contact_from_container .contact_from label {
    font-size: 14px;
    color: #3a3a3a;
}

.contact_from_container .contact_from button {
    background-color: #1e1e1e;
    height: 44px;
    border-radius: 22px;
    padding: 0px 20px;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.5s;
}

.contact_from_container .contact_from button:hover {
    background-color: #f35525;
}

@media (max-width: 1175px) {
    .location_card {
        min-width: 400px;
        gap: 2rem;
    }

    .contact_card_container {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact_card {
        padding: 15px;
    }

    .contact_details {
        margin-top: 3rem;
        flex-direction: column;
    }
}

@media (max-width: 850px) {
    .contact_container {
        margin-top: 6rem;
        padding: 4rem 5% 3rem 5%;
    }

    .contact_sub_heading {
        font-size: 14px;
    }

    .contact_heading {
        margin-top: 0.5rem;
        font-size: 32px;
    }

    .contact_details {
        margin-top: 3rem;
        flex-direction: column;
    }

    .first_section {
        gap: 0.5rem;
    }

    .location_card {
        min-width: 0;
        padding: 1.5rem;
    }

    .location_card_item h4 {
        font-size: 1rem;
    }

    .location_card_item p {
        font-size: 0.75rem;
    }

    .location_card_item img {
        margin-top: 1rem;
    }

    .contact_card_container {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .contact_card {
        padding: 15px;
    }

    .contact_card img {
        max-width: 20px;
    }

    .contact_card h6 {
        font-size: 14px;
    }

    .contact_card h6 span {
        font-size: 11px;
    }

    .contact_from_container {
        max-width: 100%;
    }

    .contact_from_container .contact_from input,
    .contact_from_container .contact_from textarea {
        font-size: 12px;
    }

    .contact_from_container .contact_from label {
        font-size: 12px;
    }

    .contact_from_container .contact_from button {
        height: 40px;
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .location_card {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 492px) {
    .location_card {
        min-width: 0;
        padding: 1.5rem;
        flex-direction: column;
        gap: 3rem;
    }
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer {
    margin-top: 80px;
    background-color: #1e1e1e;
    min-height: 100px;
    display: flex;
    align-items: center;
}

footer span {
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

footer span a:hover {
    opacity: 0.75;
}

@media (max-width: 850px) {
    footer {
        min-height: 0;
        padding: 1rem 0;
    }

    footer span {
        font-size: 13px;
    }
}

/* 
---------------------------------------------
Page Header Style
--------------------------------------------- 
*/

.page-heading {
    background-image: url(../images/page-heading-bg.html);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 110px 0px;
    text-align: center;
}

.page-heading span {
    background-color: #fff;
    color: #1e1e1e;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 25px;
    display: inline-block;
    margin-bottom: 30px;
}

.page-heading span a {
    color: #1e1e1e;
}

.page-heading h3 {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
}

/* 
---------------------------------------------
Properties Style
--------------------------------------------- 
*/

.properties ul.properties-filter {
    list-style: none;
    text-align: center;
    margin-bottom: 70px;
}

.properties ul.properties-filter li {
    display: inline-block;
    margin: 5px 8px;
}

.properties ul.properties-filter li a {
    display: inline-block;
    text-align: center;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 500;
    color: #fff;
    background-color: #1e1e1e;
    padding: 12px 25px;
    border-radius: 5px;
    transition: all 0.3s;
}

.properties ul.properties-filter li a.is_active {
    background-color: #f35525;
    color: #fff;
}

.properties ul.properties-filter li a.is_active:hover {
    color: #fff;
}

.properties ul.properties-filter li a:hover {
    color: #f35525;
}

.properties ul.pagination {
    margin-top: 50px;
    text-align: center;
    width: 100%;
    display: inline-block;
}

.properties ul.pagination li {
    display: inline-block;
    margin: 0px 5px;
}

.properties ul.pagination li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #1e1e1e;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50%;
    transition: all 0.3s;
}

.properties ul.pagination li a:hover,
.properties ul.pagination li a.is_active {
    background-color: #f35525;
    color: #fff;
}

/* 
---------------------------------------------
Single Page Style
--------------------------------------------- 
*/

.single-property .main-image img {
    float: none;
}

.single-property .main-content h4 {
    font-size: 25px;
    margin-top: 25px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.single-property .main-content span.category {
    background-color: #fbd9cf;
    font-weight: 500;
    border-radius: 5px;
    font-size: 14px;
    color: #1e1e1e;
    padding: 5px 12px;
    display: inline-block;
    margin-top: 40px;
}

.single-property .accordion {
    margin-top: 60px;
    margin-left: 0px;
    margin-right: 0px;
    --bs-accordion-border-radius: 10px;
    --bs-accordion-inner-border-radius: 10px;
    --bs-accordion-bg: #fafafa;
    --bs-accordion-border-color: none;
    border: none !important;
}

.single-property .accordion-header {
    border-bottom: 1px solid #eaeaea;
}

.single-property .accordion-button {
    box-shadow: none;
    font-size: 17px;
    font-weight: 500;
    color: #1e1e1e;
}

.single-property .accordion-button:not(.collapsed) {
    color: #f35525;
    background-color: #fafafa;
    outline: none;
}

.single-property .accordion-button::after {
    display: none;
}

.single-property #headingThree {
    border-bottom: none;
}

.single-property .accordion-item:last-of-type .accordion-collapse {
    border-top: 1px solid #eaeaea;
}

.single-property .info-table {
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    padding: 35px 30px;
    margin-left: 60px;
}

.single-property .info-table ul li {
    display: block;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #eee;
}

.single-property .info-table ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.single-property .info-table ul li img {
    float: left;
    margin-right: 25px;
}

.single-property .info-table ul li h4 {
    font-size: 22px;
    font-weight: 600;
}

.single-property .info-table ul li h4 span {
    font-size: 15px;
    color: #aaa;
    font-weight: 400;
}

/* 
---------------------------------------------
Contact Page Style
--------------------------------------------- 
*/

.contact-page #map {
    margin-top: 100px;
}

.contact-page .section-heading {
    margin-bottom: 40px;
    margin-right: 280px;
}

.contact-page p {
    margin-bottom: 50px;
}

.contact-page .item {
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    padding: 35px 30px;
    background-color: #fff;
    display: inline-block;
    min-width: 360px;
}

.contact-page .phone {
    margin-bottom: 30px;
}

.contact-page .item img {
    float: left;
    margin-right: 25px;
    vertical-align: middle;
}

.contact-page .item h6 {
    font-size: 20px;
    font-weight: 600;
    vertical-align: middle;
}

.contact-page .item h6 span {
    font-size: 15px;
    color: #aaaaaa;
    font-weight: 400;
}

.contact-page #contact-form {
    margin-left: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    padding: 35px 30px;
    background-color: #fff;
}

.contact-page #contact-form label {
    font-size: 15px;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.contact-page #contact-form input {
    width: 100%;
    height: 44px;
    border-radius: 22px;
    background-color: #f6f6f6;
    border: none;
    margin-bottom: 30px;
    font-size: 14px;
    padding: 0px 15px;
}

.contact-page #contact-form textarea {
    width: 100%;
    height: 150px;
    max-height: 180px;
    border-radius: 22px;
    background-color: #f6f6f6;
    border: none;
    margin-bottom: 40px;
    font-size: 14px;
    padding: 15px 15px;
}

.contact-page #contact-form button {
    background-color: #1e1e1e;
    height: 44px;
    border-radius: 22px;
    padding: 0px 20px;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.5s;
}

.contact-page #contact-form button:hover {
    background-color: #f35525;
}

/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .header-area .main-nav .logo h1 {
        line-height: 80px !important;
    }

    .best-deal .tabs-content .nav-link {
        font-size: 14px;
        padding: 0px 15px;
        height: 44px;
        line-height: 44px;
    }

    .best-deal .tabs-content ul.nav-tabs li {
        margin: 0px 5px;
    }

    .properties ul.properties-filter li a {
        font-size: 14px;
        padding: 10px 15px;
    }

    .properties ul.properties-filter li {
        margin: 5px;
    }
}

@media (max-width: 992px) {
    .header-area .main-nav .logo h1 {
        line-height: 100px;
    }

    .background-header .main-nav .logo h1 {
        line-height: 80px;
    }

    .header-area .main-nav .nav li a {
        padding-left: 3px;
        padding-right: 3px;
    }

    .header-area .main-nav .nav li:last-child a {
        padding-right: 15px;
    }

    .main-banner .item h2 {
        width: 100%;
    }

    .featured .section-heading {
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 100px;
    }

    .featured .accordion {
        margin-left: 0px;
        margin-right: 0px;
    }

    .featured .info-table {
        margin-top: 45px;
    }

    .fun-facts .counter {
        margin-bottom: 45px;
    }

    .best-deal .section-heading {
        text-align: center;
    }

    .best-deal .tabs-content ul.nav-tabs {
        margin-top: 0px;
        justify-content: center;
    }

    .best-deal .info-table {
        margin-bottom: 45px;
    }

    .best-deal .tab-content img {
        padding: 0px;
    }

    .best-deal .tabs-content h4 {
        margin-top: 45px;
    }

    .properties .item h6 {
        text-align: center;
        margin-bottom: 15px;
    }

    .properties .item .main-button {
        text-align: center;
    }

    .properties .item ul li {
        margin-right: 10px;
        font-size: 13px;
    }

    .contact-content .phone {
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .contact-content .email {
        margin-left: 0px;
        margin-bottom: 45px;
    }

    .contact-content #contact-form {
        margin-left: 0px;
    }

    .single-property .info-table {
        margin-left: 0px;
        margin-top: 45px;
    }

    .contact-page .section-heading {
        margin-right: 0px !important;
    }

    .contact-page #contact-form {
        margin-left: 0px;
        margin-top: 60px;
    }

    .best-deal .info-table ul li span {
        float: right !important;
        width: auto !important;
    }
}

@media (max-width: 1200px) {
    .best-deal .info-table ul li span {
        float: none;
        width: 100%;
    }

    .contact-page .section-heading {
        margin-right: 100px;
    }
}

@media (max-width: 460px) {
    .header-area .main-nav .logo img {
        max-width: 250px !important;
    }
}

@media (max-width: 350px) {
    .header-area .main-nav .logo img {
        max-width: 220px !important;
    }
}

@media only screen and (max-width: 768px) and (min-width: 576px) {
    .sub_container {
        max-width: none;
    }
}

/* 
---------------------------------------------
Lending Partners Style
--------------------------------------------- 
*/
.lending_section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.lending_sub_title {
    margin-top: 1rem;
    text-transform: uppercase;
    color: #f35525;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2em;
}

.lending_title {
    margin-top: 1rem;
    font-size: 38px;
    color: #1c1c26;
}

.lending_partners {
    margin: 2.5rem 0;
    width: 100%;
    max-width: 1200px;
}

.lending_partners .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.lending_partners .owl-dot {
    display: inline-block !important;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #969393 !important;
    margin: 0 5px;
    cursor: pointer;
}

.lending_partners .owl-dot.active {
    width: 13px;
    height: 13px;
    background-color: #f35525 !important;
}

.lending_partners .owl-nav {
    display: none;
}

.partners_container {
    width: 100%;
    display: grid;
    place-items: center;
}

.partners_grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-row-gap: 20px;
    grid-column-gap: 20px;
}

.partners_grid > div {
    border: 1px solid #83838340;
    transition: all 0.3s ease;
    text-align: center;
}

@media (max-width: 1150px) {
    .partners_container {
        padding: 0 5%;
    }
}

@media (max-width: 768px) {
    .partners_grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-row-gap: 8px;
        grid-column-gap: 8px;
    }
}

@media (max-width: 600px) {
    .lending_sub_title {
        font-size: 12px;
    }

    .lending_title {
        font-size: 32px;
    }

    .lending_partners .owl-dot {
        width: 6px;
        height: 6px;
        margin: 0 5px;
    }

    .lending_partners .owl-dot.active {
        width: 10px;
        height: 10px;
    }
}

/* 
---------------------------------------------
Founder Style
--------------------------------------------- 
*/
.founder_container {
    margin-top: 7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5%;
}

.founder_title {
    font-size: 32px;
    color: #f35525;
    font-weight: 600;
    text-align: center;
}

.founder_card {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    border-radius: 8px;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
}

.founder_image {
    width: 100%;
    max-width: 320px;
    border-radius: 5px;
}
.founder_details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.founder_name {
    list-style-type: square;
    margin-top: 1rem;
    font-size: 22px;
    font-weight: 500;
    color: #3a3a3a;
}

@media (max-width: 1100px) {
    .founder_card {
        gap: 1.5rem;
        flex-direction: column;
        padding: 1rem 2rem 1rem 2rem;
    }
}

@media (max-width: 871px) {
    .founder_card {
        gap: 1.5rem;
        flex-direction: column;
        padding: 1rem 2rem 1rem 2rem;
    }
    .founder_image {
        width: 100%;
        max-width: 280px;
        border-radius: 5px;
    }
    .founder_name {
        margin-top: 0.5rem;
        font-size: 19px;
    }
}

@media (max-width: 600px) {
    .founder_container {
        margin-top: 5rem;
    }

    .founder_title {
        font-size: 26px;
    }

    .founder_card {
        margin-top: 1.5rem;
    }

    .founder_name {
        font-size: 17px;
    }
}

/* 
---------------------------------------------
Emi Calculator Style
--------------------------------------------- 
*/
.emi_container {
    margin-top: 6rem;
    margin-bottom: 8rem;
}

.accordion-button {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    background-color: #f35525;
    padding: 1rem;
    border: none;
}

.accordion-button:not(.collapsed)::after {
    display: none;
}

.accordion-button::after {
    display: none;
}

.accordion-body {
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #f35525;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: #f35525;
    box-shadow: none;
}

.Loan_calcualtor {
    width: 100%;
    max-width: 500px;
    padding: 2rem 3rem;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.emi_title {
    font-size: 30px;
    color: #1e1e1e;
    font-weight: 600;
    text-align: center;
}

.Loan_calcualtor label {
    font-size: 1rem;
    font-weight: 400;
    color: #1e1e1e;
    text-align: left;
}

.Loan_calcualtor input[type="button"] {
    margin-top: 2rem;
    width: 100%;
    border-radius: 5px;
    padding: 0.5rem;
    border: none;
    background-color: #f35525;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

.Loan_calcualtor input[type="button"]:hover {
    background-color: #f54009;
}

.total_emi {
    margin-top: 2rem;
    font-size: 24px;
    font-weight: 500;
    color: #7a7a7a;
}

.total_emi span {
    font-size: 26px;
    color: #1c1c26;
}

.label_section {
    margin: 2rem 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.amount_container {
    background-color: #f3eeee;
    padding: 5px;
    min-width: 110px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    color: #f35525;
}

.amount_input {
    width: 100%;
    height: 100%;
    max-width: 110px;
    background-color: transparent;
    outline: none;
    border: none;
    color: #f35525;
    font-size: 1.125rem;
    text-align: right;
}

.month_input {
    max-width: 65px;
}

.amount_input::-webkit-inner-spin-button,
.amount_input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.amount_input {
    -moz-appearance: textfield;
}

.form-range {
    width: 100%;
    height: 16px;
    background-color: transparent;
}

/* We set the track gradient dynamically in JavaScript */
.form-range::-webkit-slider-runnable-track {
    background: linear-gradient(
        to right,
        #f35525 0%,
        #f35525 var(--thumb-percentage),
        darkgray var(--thumb-percentage),
        darkgray 100%
    );
}

.form-range::-moz-range-track {
    background: linear-gradient(
        to right,
        #f35525 0%,
        #f35525 var(--thumb-percentage),
        darkgray var(--thumb-percentage),
        darkgray 100%
    );
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background-color: #f38925fd;
    cursor: pointer;
}

.form-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background-color: #f35525bb;
    cursor: pointer;
}

@media (max-width: 1000px) {
    .emi_container {
        margin-top: 4rem;
        margin-bottom: 6rem;
    }
}

@media (max-width: 600px) {
    .emi_container {
        margin-top: 3rem;
        margin-bottom: 5rem;
    }

    .accordion-button {
        font-size: 1rem;
    }

    .Loan_calcualtor {
        padding: 2rem 1rem;
    }

    .emi_title {
        font-size: 26px;
    }

    .total_emi {
        font-size: 20px;
    }

    .total_emi span {
        font-size: 23px;
    }
}

@media (max-width: 457px) {
    .label_section {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .emi_title {
        font-size: 24px;
    }
}

@media (max-width: 360px) {
    .accordion-body {
        padding: 1.5rem 0.5rem;
    }
}

/* 
---------------------------------------------
Certificate Style
--------------------------------------------- 
*/
.certifcate_container {
    margin-top: 6rem;
    margin-bottom: 2rem;
    width: 100%;
    display: grid;
    place-items: center;
    padding: 0 5%;
}

.certifcate_row {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    text-align: center;
    width: 100%;
    max-width: 1200px;
}

.certificate_title {
    color: #f35525;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
}

@media (max-width: 1000px) {
    .certifcate_container {
        margin-top: 4rem;
    }

    .certifcate_row {
        align-items: center;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .certifcate_container {
        margin-top: 4rem;
        margin-bottom: 0;
    }

    .certifcate_row {
        gap: 2rem;
    }

    .certificate_title {
        font-size: 1rem;
        margin-bottom: 0.65rem;
    }
}

/* Hide the arrows of number inputs in Chrome, Safari, and Edge */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide the arrows in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* real estate page's filter styels */
.filter_select {
    width: auto;
}

.filter_select:focus {
    border-color: #f35525;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(243, 119, 47, 0.25);
}

/* visitors count styels */
.visitors_container {
    width: 100%;
    display: grid;
    place-items: center;
    margin-bottom: -4.25rem;
}
.visitors_card {
    margin: 1rem 0 0 1rem;
    width: fit-content;
    padding: 1rem;
    text-align: center;
}
.visitors_text {
    font-size: 1rem;
    color: #7a7a7a;
    font-weight: 400;
}
.visitors_count {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    color: #f35525;
    font-weight: 500;
}

/* share buttons styles */
.share_link_btn {
    position: fixed;
    bottom: 1rem;
    right: 0.5rem;
    /* width: 3.25rem; */
    /* height: 3.25rem; */
    padding: 10px 5px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 5px;
    border: none;
    background-color: #f35525;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
        rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
        rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    font-size: 12px;
    color: #fff;
}

.shareButtons_card {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    z-index: 999;
    display: none;
}

.shareButtons_wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}
#share-facebook,
#share-whatsapp {
    color: white;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
}
#share-facebook {
    background-color: #3b5998;
}
#share-whatsapp {
    background-color: #25d366;
}
/*lOAND CSS BY GSEVEN*/

/*.loan-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}*/

.loan-title {
    font-size: 36px;
    color: #2E3A59;
    text-align: center;
    margin-bottom: 15px;
}

.loan-subtitle {
    font-size: 20px;
    font-weight: bold;
    color: #E65100;
    margin-top: 20px;
}

/*.loan-subtitlespecializsed {
    font-size: 20px;
    font-weight: bold;
    color: #E65100;
    margin-top: 20px;
  
}*/

.loan-subtitlespecializsed {
    font-size: 20px;
    font-weight: bold;
    color: #E65100;
    margin-top: 20px;
    white-space: normal; 
    word-wrap: break-word; 
    overflow-wrap: break-word; 
    text-align: center; 
}




.loan-list {
    list-style-type: square;
    margin-left: 20px;
    font-size: 16px;
}

.loan-list li {
    margin-bottom: 8px;
}

.loan-steps {
    list-style-type: decimal;
    margin-left: 20px;
    font-size: 16px;
}

.loan-steps li {
    margin-bottom: 10px;
}

.loan-footer {
    /*text-align: center;*/
    font-weight: bold;
    color: #2E3A59;
    margin-top: 30px;
}

.special-ol {
    list-style: decimal; /* Ensures numbers appear */
   
}


