html, body {
    overflow-x: hidden;
    width: 100%;
}



/* Nav Bar - Header */
 /* Top Bar */
 /* Top Bar */
.top-bar {
    background: #f8f9fa;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    transition: top 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Sticky Navbar */
.sticky-navbar {
    position: fixed;
    top: 40px; /* Initially below Top Bar */
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease-in-out;
}

/* जब स्क्रॉल हो, तो टॉप बार गायब हो जाए और Navbar `top: 0` पर आ जाए */
.hide-topbar {
    top: -50px; /* Top Bar छुपा दें */
    opacity: 0;
}

.fixed-navbar {
    top: 0 !important; /* Navbar को फिक्स कर दें */
}

@media screen and (max-width:991px) {
    /* Nav Bar - Header */
 /* Top Bar */
 .top-bar {
    display: none;
}

/* Sticky Navbar */
.sticky-navbar {
    width: 100%;
    float: left;
   top: 0;
}

.navbar-nav{
    width: 100%;
}

.cta-btn{
    display: none;
}

.collapse {
    display: none !important; /* Navbar Initially Hidden */
}
    
}

/* Scroll Effect */
.scrolled .top-bar {
    top: -40px; /* Hide Top Bar */
}

.scrolled .sticky-navbar {
    top: 0; /* Move Navbar to Top */
}

/* Dropdown Hover Effect */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}



.navbar-expand-lg .navbar-collapse {

gap: 40px;
/* flex-basis: auto; */
}

.navbar-collapse{
    display: none;
}

.navbar-toggler:focus,
.navbar-toggler:active {
outline: none;
box-shadow: none;
}

/* CTA Button */
.cta-btn {
    background:#DDB793;
    color: black;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}

.cta-btn:hover {
    background: black;
    color: white;
}

/* Hamburger Menu Styles */
.navbar-toggler {
    border: none;
    outline: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.navbar-toggler span {
    display: block;
    font-size: 28px;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-item {
margin-right: 30px; /* Adds spacing between menu items */
}

/* Last item के बाद extra space ना आए */
.navbar-nav .nav-item:last-child {
margin-right: 0;
}

.navbar-toggler.active span {
    transform: rotate(135deg);
}

/* Hide body overflow when menu is open */
.menu-open {
    overflow: hidden;
}

/* Body Padding */
body {
    padding-top: 90px;
}

/* 
.logo{
    padding: 20px;
    background-color: aqua;
    border-radius: 50px;
} */


.form-container {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    
}

.form-heading {
    font-weight: bold;
    color: black;
}

.form-heading::after {
    content: "";
    width: 60%;
    height: 1px;
    background-color: #DDB793;
    display: block;
    margin: 5px auto;
    border-radius: 5px;
}

.form-subtext {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.form-control {
    outline: none !important;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px;
}
.hero-form input:focus, 
.hero-form textarea:focus, 
.hero-form select:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #ccc; /* Optional: Border styling */
}

.submit-btn {
    background-color: #DDB793;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    border: none;
}

.submit-btn:hover {
    background-color: black;
    color: white;
}

.phone-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    background: white;
}

.phone-group span {
    padding: 5px;
    font-size: 18px;
}

.phone-group input {

    border: none;
    outline: none !important;
    flex: 1;
    padding: 8px;
}



/* ------------------------------ */

.stats-section {
    background-color: #f9fafb; /* हल्का बैकग्राउंड */
    padding: 20px 0px 40px 0px;
}
.stats-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.stats-icon {
    font-size: 30px;
    color: black; 
}
.stats-number {
    font-size: 18px;
    font-weight: bold;
    color: black;
}
.stats-text {
    font-size: 15px;
    color: #333;
}
/* -----------------------------------services-------------- */
.servicecard {
    border: 1px solid rgb(184, 192, 204);
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    height: 100%;
}

.servicecard:hover {
    /* transform: translateY(-5px); */
       box-shadow: 0px 0px 10px rgba(46, 47, 48, 0.5);


}


.servicecard img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 6px solid#EAF5FE;
    /* box-shadow: 0px 0px 10px rgba(158, 186, 215, 0.5); */
}

.servicecard-title {
    font-size: 12px;
    /* font-weight: bold; */
    text-align: center;
    padding: 5px 0;
}

.serviceunderline {
    width: 110px;
    height: 4px;
    background-color: #DDB793;
    margin: 0 auto 10px;
}
.para{
    color: black;
    font-size: 12px;
}
.read{
    font-size: 15px;
    padding: 5px;
    font-weight: bold;
    color: black;
}

/* ------------------------------offer card------ */
.offercard {
    border: 1px solid rgb(184, 192, 204);
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    height: 100%;
}

.offercard:hover {
    transform: translateY(-5px);
}

.offercard img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 6px solid#EAF5FE;
    /* box-shadow: 0px 0px 10px rgba(158, 186, 215, 0.5); */
}

.offercard-title {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
}

.underline {
    width: 40px;
    height: 2px;
    background-color: #DDB793;
    margin: 0 auto 10px;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: black;
}


/* --------------------------card------------------ */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}
.card:hover {
    transform: translateY(-5px);
}
.card-header {
    padding: 0px !important;
    background-color: black;
    width: 100%;
    height: 10px;
}
.card img {
    width: 60px;
    height: 60px;
    margin: 10px auto;
    display: block;
}
.card-title {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
}
.underline {
    width: 40px;
    height: 2px;
    background-color: #DDB793;
    margin: 0 auto 10px;
}


/* --------------------------------------- */

/* .steps-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-button:hover, .step-button.active {
    background: #007bff;
    color: #fff;
}
.image-container {
    width: 100%;
    max-width: 300px;
    height: auto;
    transition: 0.3s;
} */
.hidden {
    display: none;
}

.steps-container {
    text-align: left;
    display: flex;
    justify-content: center !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.step-button {
    flex: 1 1 calc(50% - 10px);
    padding: 15px;
    border: 2px solid #ccc;
    background-color: white;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}

.step-button:hover {
    background-color: black;
    color: white;
}

.step-button.active {
    background-color:#DDB793;
    color: white;
}
.image-container {
    width: 100%;
    max-width: 500px;
    height: auto;
} 
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
    }
    .step-button {
        flex: 1 1 100%;
    }
}
/* ------------------------------contact css------------ */
.contact-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;

}
.contact-box {
    width: 80%;
    background: white;
    padding: 30px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.contact-img {
    max-width: 90%;
    height: auto;
}

@keyframes upDownAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
    100% { transform: translateY(0); }
}

.contact-img {
    animation: upDownAnimation 2s ease-in-out infinite;
}

.contact-form input, .contact-form textarea {
    border-radius: 5px;
}
.submit-btn {
    background-color: #DDB793;
    color: black;
    padding: 10px;
    border-radius: 20px;
    width: 100%;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
.submit-btn:hover {
    background-color:black;
}
.heading {
    color: black;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-decoration: underline;
}

/* -------------------------------------------------------------- */
.industries{
background-color: #DDB793;
color: black;
text-align: center;
}
.industries-section {
    padding: 50px 0;
}
.industries-title {
    font-size: 28px;
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 30px;
}
.industry-box {
    background:#BFD7D2;
    /* padding: 10px; */
    border-radius: 4px;
    border: 10px solid #BFD7D2;

    display: inline-block;
    width: auto;
    text-align: center;
    transition: 0.3s ease-in-out;
}
.industry-box i {
    font-size: 30px;
    /* background-color: #EAF5FE; */
    /* margin-bottom: 10px; */
    color: #333;
}
.industry-box:hover {
    background: #b0c4de;
    transform: scale(1.1);
}
.industry-text {
    font-size: 16px;
    margin-top: 10px;
    color: black;
}
/* ----------------------------- */
.dreamhouse {
    background-color: white;
    color: black;
    text-align: center;
}

.dreamhouse-section {
    padding: 50px 0;
}

.dreamhouse-title {
    font-size: 28px;
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 30px;
}

.dreamhouse-box {
    /* background: #BFD7D2; */
    border-radius: 4px;
    /* border: 10px solid #BFD7D2; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    transition: 0.3s ease-in-out;
    margin: 0 auto;
}

.dreamhouse-box img {
    width: 60px;
    height: 60px;
}

.dreamhouse-box:hover {
    background: #b0c4de;
    transform: scale(1.1);
}

.dreamhouse-text {
    font-size: 16px;
    margin-top: 10px;
    color: black;
}

/* ------------------------------------ */
.counter-section {
    background-color: #8ca5a5; /* बैकग्राउंड कलर */
    color: black;
    padding: 50px 0;
    text-align: center;
    margin-top: 10px;
}
.counter-box {
    font-size: 40px;
    font-weight: bold;
}
.counter-text {
    font-size: 18px;
    margin-top: 5px;
}
/* ------------------------------------------------ */

.refer{
    color: white;
    border-bottom:1px solid #7b4f5d;
}
.refer-section {
    padding: 10px 20px;
    text-align: center;
}
.refer-title {
    font-size: 28px;
    font-weight: bold;
    color: black;
}
.refer-subtitle {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}
.refer-btn {
    background-color: #DDB793;
    color: black;
    font-size: 18px;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
}
.refer-btn:hover {
    background-color: black;
    color: white;
}
.refer-img {
    width: 100%;
    max-width: 400px;
}

/* ---------------------------------------------- */

.blog-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
}
.blog-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.blog-card:hover {
    transform: scale(1.05);
}
.blog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.blog-section {
    padding: 50px 0;
}
.blog-title {
    font-size: 32px;
    font-weight: bold;
    text-align: left; /* टेक्स्ट को बाईं ओर लाने के लिए */
}
.blog-subtitle {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    text-align: left;
}
.blog-description {
    font-size: 16px;
    color: #555;
    text-align: left;
}
.mm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* छोटे डिवाइसेस के लिए */
}
.blog-button {
    margin-top: 20px;
}
.blog-button a {
    background-color: #DDB793;
    color: black;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}
.blog-button a:hover {
    background-color: black;
    color: white;
}

/* 🟢 बटन को लेफ्ट में लाने के लिए */
@media (max-width: 768px) {
    .mm {
        flex-direction: column;
        align-items: flex-start; /* सभी एलिमेंट्स को लेफ्ट में लाने के लिए */
    }
    .blog-button {
        margin-top: 10px;
    }
}


/* slick slider*/

.team-section{
    padding: 50px 0;
    background-color: #DDB793;
}
.slider-container {
    width: 80%;
    margin: auto;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

 .hero-section .slider-item, .consultant .slider-item{
    border: none !important;
    border-radius: 5px;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: transparent !important;
   
}

.hero-section .slider-item img, .consultant .slider-item img{
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-repeat: no-repeat;
   
}

.slider-item{
    background-color: #d0d6dc;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    background-size: cover;
    background-repeat: no-repeat;
   margin: 10px;
    /* border: 2px solid black; */
   
}
.slider-item img{
    width: 80%;
    /* height: 200px; */
    
}

.team img {
    width: 100%;
    height: 20%;
    text-align: center;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
}

.team .name {
    font-size: 20px;
    font-weight: 700;
    color: #242323;
}

.team .designation {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    
}



/* Custom Prev & Next Buttons */
.slick-prev:before,
.slick-next:before {
    font-family: "slick" !important;
    font-size: 45px !important;
    opacity: 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px; /* Arrow size set */
    height: 45px;
    border-radius: 50%;
    /* background-color: #000 !important; */
    color: #fff !important;
    transition: all 0.3s ease-in-out;
}

/* Left Arrow (Previous) */
.slick-prev {
    left: 45px !important;
    z-index: 99 !important;
}

/* Right Arrow (Next) */
.slick-next {
    right: 45px !important;
    z-index: 99 !important;
}

/* Hover Effect */



    

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section {
                max-width: 100%;
            }

             .slick-prev {
            left: -45px !important;
        }

        .slick-next {
            right: -45px !important;
        }

        }

       
/* -------------------------------- */
.partners-sectionmain {
  background-color:#F8FBFF;
  border-bottom: 1px solid rgb(172, 154, 154);
}
.partners-section {
    text-align: center;
    padding: 40px 0;
}
.partners-section h3 {
    font-weight: bold;
    margin-bottom: 20px;
}
.carousel-inner {
    display: flex;
    align-items: center;
}
.carousel-item {
    text-align: center;
}
.carousel-item img {
    width: 150px;
    height: auto;
    margin: 0 15px;
    border-radius: 10px;
    background: white;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* ----------------------- */
.content1 {
 
    font-size: 13px;
}
  .content {
    display: none;
    font-size: 13px;
}
.container2 {
    max-width: 90%;
    margin: 20px auto;
    padding: 20px;
  
}

.btn-custom{
    color: black;
    cursor: pointer;
}

/* footer */
.footer{
    padding: 50px 0px 20px 0px;
    background-color: #070707;
    color: white;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}
.footer a:hover {
    color: #fff;
}
.footer-logo img{
    width: 100%;
}

.social-media li{
    list-style: none;
   margin-left: 20px;

}
.copyright, .class1 {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

/* ------------------------------- */
.para1{
    font-size: 14px;
     padding: 15px;
    text-align: center;
}
.design{
    background-color: #F8FBFF;
    border-bottom: 1px solid rgb(201, 189, 189);
}
.card {
  
    border: 1px solid rgb(165, 183, 200);
    /* border-radius: 20px; */
    box-shadow: 0 4px 8px rgba(173, 9, 9, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 300px;
  }

  .card:hover {
    transform: translateY(-30px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border: none;
  }

  /* .card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  } */

  .card-title {
    font-size: 1.25rem;
    font-weight: bold;
  }

  .card-text {
    font-size: 0.95rem;
    color: #555;
  }

  .card-body {
    padding: 20px;
    background-color: #f9f9f9;
  }

  /* Responsive card size adjustments */
  @media (max-width: 768px) {
    .card {
      margin-bottom: 20px;
    }
  }


  /* ----------------------------------------- */
  .feature-section{
    background-color: #F8FBFF;
   
  }
 
  .feature-card {
    text-align: center;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    background-color:white;
    width: auto;
}
.featurepara{
    font-size: 13px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px; /* Adjust icon size */
    height: 60px;
    margin-bottom: 10px;
}
.service-card {
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0px 4px 10px rgba(80, 77, 77, 0.1); */
    transition: all 0.3s ease-in-out;
    background-color: white;
    border: 1px solid rgb(155, 184, 207);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}



.service-card h5 {
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0;
}