/********** Template CSS **********/
:root {
    --primary: #c59535;
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #0E2E50;
}
*{
    box-sizing: border-box !important;
}
body {
    
    font-family: "Heebo",sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #666565;
    background-color:#ffffff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    box-sizing: border-box !important;
  }
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.text-white1{
     color:#c59535;
}
a {
    color:#c59535;
  }
  section {
    padding: 0px 0;
   
}



.founders-section {
    background-color: #3b3b3b; /* Dark background */
    padding: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;width: 100%;
}

.founders-wrapper {
    padding: 40px;
    border-left: 40px solid white; /* White border */
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; margin-left: -80px;
}
.bg-white2{
    background-color: #4b5257;
}

.gallery {
    padding: 20px;
}
.gallery h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 90%;
    margin: auto;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 5px;
}
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    background: rgba(0, 100, 255, 0.7);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.gallery-item:hover .overlay {
    opacity: 1;
}
/* ---------- Section Title & Subtitle ---------- */
.mv-section {
    width: 100%;
    margin: 0 auto;
    text-align: center;  /* Center the heading & subtitle */
  }
  .mv-section h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  .mv-section .subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
  }
  
  /* ---------- Container for the 3 Cards ---------- */
  .card-container {
    display: flex;
    flex-wrap: wrap;           /* wrap on smaller screens */
    gap: 20px;
    justify-content: center;
  }
  
  /* ---------- Each Card ---------- */
  .mv-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 20px 20px 20px 20px rgba(0,0,0,0.1);
    width: 30%;            /* fixed width (adjust as needed) */
    padding: 0px 0px 0px;   /* top padding leaves space for the ribbon */
    position: relative;        /* so ribbon can be absolutely positioned */
    text-align: center;
    overflow: visible;      
    
  }
  
  
  /* Decorative shape below the card */
  .mv-card::after {
    content: "";
    position: absolute;
    bottom: -15px; /* Adjust to control vertical placement */
    left: 50%;
    transform: translateX(-50%);
    width: 30px;   /* Adjust the size of the diamond */
    height: 30px;
    background-color: #fff;
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  }
  
  
  .mv-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #444;
  }
  .mv-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
  }
  
  .whatsapp-float {
    position: fixed;
    bottom: 52px;
    right: 20px; z-index: 999;
    background-color: #25D366;
    color: white;
    font-size: 40px;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    transition: background 0.3s ease-in-out;
}



.whatsapp-float i {
    display: flex;
    justify-content: center;
    align-items: center;
}
  
  /* Wrapper just to position each ribbon neatly */
.ribbon-wrapper {
    position: relative; 
    height: 60px;
}

/* The main banner shape */
.ribbon {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;   /* length of the banner */
    height: 40px;   /* height of the banner */
    background: linear-gradient(to right, #cf940f, #4b5257); /* updated gradient */
    border-radius: 4px;  /* slight rounding */
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}
.navbar-brand {
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    white-space: nowrap;
    margin-left: 60px !important;
  }

/* The angled edges of the banner using two triangles */
.ribbon::before,
.ribbon::after {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    /* We use borders to create triangular shapes */
    border-top: 20px solid #4b5257; /* right-side gradient color */
    border-bottom: 20px solid #cf940f; /* left-side gradient color */
}

/* Left triangle */
.ribbon::before {
    left: -20px;
    border-right: 20px solid transparent;
}

/* Right triangle */
.ribbon::after {
    right: -20px;
    border-left: 20px solid transparent;
}

/* The circular badge that sits on top of the banner */
.ribbon-circle {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #cf940f, #4b5257); /* Updated gradient */
    border: 4px solid #fff; /* White ring around circle */
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon inside the circle */
.ribbon-circle img {
    width: 24px;
    height: 24px;
    animation: rotateIcon 3s linear infinite;
}

/* Keyframes for continuous rotation */
@keyframes rotateIcon {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ---------- Custom Ribbon Variant ---------- */
.ribbon-custom .ribbon {
    background: linear-gradient(to right, #cf940f, #4b5257);
}
.ribbon-custom .ribbon::before {
    border-top-color: #4b5257;
    border-bottom-color: #cf940f;
}
.ribbon-custom .ribbon::after {
    border-top-color: #4b5257;
    border-bottom-color: #cf940f;
}
.ribbon-custom .ribbon-circle {
    background: linear-gradient(to bottom, #cf940f, #4b5257);
}


.founders-section h2 {
    color: #c9a959;
}
.founder h3 {
    font-weight: bold; color: #ffffff;
}
.gold-logo {
    width: 150px;
    margin-left: 100px;
}
.bg-light1{
    background-color:#d2d0d0b8 !important ;
}
.project-section {
    padding: 50px 0;
}
.project-content{
    margin-top: 110px;
}
.project-image {
    position: relative;
   
  
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; height:500px;
}
.swiper-wrapper{
    margin-left: 0px !important;
}
.swiper {
    width: 100%;
    padding: 20px 0;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center; margin-left: 35vh !important;
    
}
.swiper-slide img {
    width: 350px !important;
    height: auto;
}

#vision-mission {
    background-color: #3d4042;
    color: white;
    padding: 50px 20px;
    text-align: center;
}
#vision-mission h2 {
    font-weight: bold;
    text-transform: uppercase;text-align: center; color: #ffffff;
}
.card { width: 100%;
    background-color: #e8e8e8;
    border: none;
    padding: 20px; color: #666565;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);height: 200px;
}
.card-title {
    background-color: #cd9309;
    padding: 5px 5px;
    display: inline-block;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    width: 35%;
  margin-top: -33px;
}
.card-text{
    margin-top: 20px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%; /* Overlay takes up 80% width */
    height: 100%;
    background: #2F2F2F;
    z-index: 1;
}

.shifted-image {
    position: relative;
    z-index: 2;
    max-width: 70%;
    transform: translateX(20px); /* Moves image slightly right */
}

@media (max-width: 1024px) {
    .card-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .mv-card {
        width: 31%;
    }
    .navbar-light .navbar-nav .nav-link {
        margin-right: 30px;
        padding: 25px 0;
        color: #FFFFFF;
        font-size: 12px !important;
        text-transform: uppercase;
        outline: none;
    }
    h5, .h5 {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .mv-card {
        width: 100%;
        padding: 15px;
        margin-bottom: 20px;
      }
    .ribbon-circle img {
        width: 40px;
        height: 40px;
    }
    h3 {
        font-size: 18px;
    }
    p {
        font-size: 14px;
    }
    .footer .copyright {
        padding: 15px 0 !important;
        font-size: 13px !important;
        border-top: 1px solid rgba(256, 256, 256, .1);
      }
    .btn-primary1{
        color: #ffffff !important;
        background-color: #cd9309;
        border-color: #cd9309; margin-bottom: 20px !important;
    }
    .swiper-slide img {
        width: 131px !important;
        height: auto;
        margin-left: -88px !important;
      }
    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center; margin-left: 3vh !important;
        
    }
   
    .icon img{
        width:50px !important; height: 50px !important;
    }
    .navbar-brand {
        padding-top: .3125rem;
        padding-bottom: .3125rem;
        margin-right: 1rem;
        font-size: 1.25rem;
        white-space: nowrap;
        margin-left: 0px !important;
      }
      .display-5 {
        margin-top: 0px !important;
        text-align: center !important;
      }
      .swiper-wrapper{
        margin-left: 70px !important;
    }
  
      .founder p{
       
            text-align:justify !important;
      }
      .text-white1 h5 {
       text-align: left !important;
    }
      .animated{
        text-align: center !important;
      }
     #about h1{
        text-align: left !important;
     }
     #about p{
        text-align: left !important;
     }
     .btn-primary1 {
        margin-left: 0px !important;
     }
     .btn-dark1 {
        margin-left: 50px !important;
    }
    .founders-section h2 {
        color: #c9a959;
        text-align: left;
    }
    .founders-wrapper {
       
        
            border-left: none !important;
            display: flex;
            flex-direction: column; /* Ensures proper alignment */
            align-items: center; /* Centers content horizontally */
            justify-content: center !important; /* Centers content vertically */
            width: 100%;
            padding: 0px 20px !important; /* Adjust padding for better spacing */
            text-align: center; /* Centers text */
        }
    
    .founders-section {
        background-color: #3b3b3b;
        padding: 40px;
        position: relative;
        display: flex
    ;
        align-items: center !important;
        justify-content: end;
        width: 100%;
    }
    .founder h3 {
        font-weight: bold;
        color: #ffffff;
        text-align: left;}
      .gold-logo{
        display: none;
      }
      .text-primary1 {
        color: #cd9309 !important;
        text-align: center;
    }
    .p-4 p {
        font-size: 14px;
        text-align: center !important;
    }
    .d-block {
        display: block !important;
    text-align: center;
    }
    .mb-4 p {
       text-align: left !important;
        
    }
   
    
    
}
/* Responsive Design */
@media (max-width: 768px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
       
    }
    .me-2 {
        margin-right: 0px!important;
    }
    .mv-card {
        max-width: 90%;
    }
    h5, .h5 {
        font-size: 8px !important;
    }
p{
    font-size: 13px;
}
    .project-image, .project-content {
        width: 100%;
    }
    .project-content {
        padding: 30px;
    }
    .property-item {
        box-shadow: 0 0 30px rgba(0, 0, 0, .08);
        
    }
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 45px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999;
  }
 

.nav-bar.fixed {
    position: fixed;
    top: -50px;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: .3s;
}
.nav-bar.sticky-top {
   
    padding: 0;
    z-index: 9999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    background-color: #4b5257;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #cd9309;
}
.bg-primary {
    background-color: #dcbd53 !important;
  }
  .text-primary1 {
    color: #dcbd53 !important;
  }
@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: #FFFFFF;
    font-weight: 500;
}
.btn-primary1 {
    color: #ffffff !important;
    background-color: #cd9309;
    border-color: #cd9309;
} 
.text-primary1 {
    color: #cd9309 !important;
}
.btn-primary1{
    color: #ffffff !important;
    background-color: #cd9309;
    border-color: #cd9309;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    color: #ffffff !important;
    background-color: #cd9309;
    
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.bg-primary1{
    background-color: #cd9309;
}
.btn-dark1 {
    color: #fff;
    background-color: #4b5257;
    
}  
.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background-color: #4b5257;
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
   
    border-radius: 50px;
   
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: #cca146;
    transform: skew(20deg);
    z-index: 1;
}
.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
   
    background-color: #cd9309 !important;
    border-color: #cd9309 !important;
  }
  .bg-dark1 {
    background-color: #4b5257 !important;
  }
  .btn-outline-primary1 {
   color:#ffffff;
    border-color: #cd9309;
  }
/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 2px dashed #cd9309;
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #000000 !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #000000;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: #FFFFFF;
    background: #cca146;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: #4b5257;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
   
}
@media (max-width: 768px) { /* Targeting mobile devices */
    .gold-logo {
        width: 70px !important;
    }
}
.testimonial-carousel .testimonial-item .border {
    border: 1px dashed #c59535 !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: #4b5257;
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: #ffffff !important;
    background-color: #dcbd53;
    border-color: #dcbd53;
  
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

@media (max-width: 1024px) {
    #property-type .cat-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    #property-type .icon img {
        width: 60px;
        height: 60px;
    }
    #property-type h6 {
        font-size: 10px;
    }
}

#testimonial {
    padding: 50px 0;
}

#testimonial h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

#testimonial p {
    font-size: 16px;
    line-height: 1.6;
    
    margin: 0 auto 30px;
}

/* Grid container for partner logos */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 4 columns by default */
   
    justify-content: center;
    align-items: center;
}

/* Partner item */
.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;

    border-radius: 10px;
   
}

.partner-item img {
    
    max-height: 180px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for tablets */
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(1, 1fr); /* 2 columns for smaller tablets */
    }
}

@media (max-width: 480px) {
   
    .partner-item img {
    
        max-height: 60px;
    }
}

