* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; 
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif; 
}



/*Banner css*/
      .about-us {
    height: 500px; /* Aap is height ko media queries se adjust kar sakte ho */
    position: relative;
    overflow: hidden;
    width: 100%;
}

.about-us img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image ko container ke hisaab se fit karne ke liye */
}

    
    .sections-container{
        width: max-content;
    }

/* Responsive Design */
@media (max-width: 768px) {
  .learner-support-contacts {
    flex-direction: row;
    gap: 15px;
    /*margin: 0 15px;*/
  }

  .learner-contact-item {
    flex-direction: column; 
    align-items: flex-start; 
    gap: 10px; 
  }

  .learner-contact-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .learner-support-title {
    font-size: 24px; 
  }

  .learner-contact-item {
    gap: 15px;
  }

  .learner-support-description {
    font-size: 14px;
  }
}

/*Key Benefits section css*/

.key-benefits-office-space{
      background: #fbfbfb;
}

.interior-design-section {
    padding: 80px 0;
  text-align: center;

}

.containerd{
    max-width: 1300px;
    margin: auto;
}

.interior-design-section h2 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 15px;
}

.interior-design-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}

.detail-icon-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 120px;
}

.details-feature-boxeded {
  width: 18%; /* Ensures 5 boxes in one row */
  text-align: center;
  
  padding: 15px;
  border-radius: 10px;
  
}

.details-feature-boxeded img {
  width: 60px;
  height: 60px;
}

.details-details-feature-boxeded p {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

@media (max-width: 768px) {
.detail-icon-features {
    flex-direction: column;
    align-items: center;
  }

  .details-feature-boxeded {
    width: 100%;
    max-width: 300px;
  }
}



/*Location Advantage section css*/


    .location-advantage {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        gap: 100px;
        max-width: 1300px;
        margin: auto;
        padding: 150px 0;
    }

    .location-content {
        flex: 1;
        min-width: 300px;
    }

    .location-content h2 {
        color: #AD8B3A;
        font-size: 35px;
        margin-bottom: 20px;
    }

    .location-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;

   
    }

    .location-item {
        display: flex;
        align-items: center;
        /*margin: 10px 0;*/
        gap: 10px;
        padding: 25px 20px;
        border: 1px solid lightgrey;
        border-radius: 15px;
    }

    .location-item img {
        width: 45px;
    }

    .location-item p {
        color: #333;
        font-size: 16px;
    }

    .location-map {
        flex: 1;
        min-width: 350px;
        max-width: 625px;
    }

    .location-map iframe {
        width: 100%;
        height: 330px;
        border: 0;
        border-radius: 8px;
    }

    /* Tablet Responsive */
    @media (max-width: 1024px) {
        .location-advantage {
            flex-direction: column;
            align-items: center;
        }
        .location-items {
            grid-template-columns: repeat(2, 1fr);
        }
        .location-map {
            width: 90%;
            max-width: 100%;
        }
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .location-advantage {
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .location-items {
            grid-template-columns: repeat(1, 1fr);
        }
        .location-item {
            gap: 8px;
        }
        .location-map {
            width: 100%;
            max-width: 350px; /* Map is smaller on mobile */
        }
        .location-map iframe {
            /*height: 180px;*/
            width: 330px;
        }
    }
    
    
    
    
    
    
    
    
    /*client review section css */
    
    
    
/*What Our Clients Say section css*/




.reviews_section {
        background: #fbfbfb;
        padding: 150px 0;
    }
    
    .review-main {
        max-width: 1300px;
        margin: auto;
    }

    .reviews_heading {
        text-align: center;
        font-size: 35px;
        font-weight: bold;
        text-transform: uppercase;
        color: #AD8B3A;
        margin-bottom: 20px;
        font-family: 'Palatino Linotype';
    }
    
    /* New container to hold both the arrows and the carousel */
    .reviews_outer_container {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;
    }

    .reviews_wrapper {
        width: calc(100% - 100px); /* Make room for buttons on each side */
        overflow: hidden;
    }

    .reviews_container {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .review_card {
        flex: 0 0 calc(100% / 3 - 20px);
        /*padding: 20px;*/
        /*background: white;*/
        border-radius: 10px;
        margin: 10px;
        text-align: center;
        /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
    }

    .prev_review, .next_review {
        background: #044656;
        color: #fff;
        border: none;
        cursor: pointer;
        border-radius: 50%;
        font-size: 20px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        flex-shrink: 0; /* Prevent buttons from shrinking */
        margin: 0 10px; /* Add some space between buttons and carousel */
    }

    .prev_review:hover, .next_review:hover {
        background: #AD8B3A;
    }

    .reviewer_image {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 10px;
    }

    .company_label {
        font-size: 16px;
        color: #044656;
        font-weight: 900;
    }

    .reviewer_name {
        font-size: 18px;
        font-weight: bold;
        margin: 5px 0;
        color: #044656;
    }

    .stars_rating {
        color: #AD8B3A;
        font-size: 18px;
        margin: 5px 0;
    }

    .review_text {
        font-size: 14px;
        color: #666;
        margin-top: 10px;
    }

    @media screen and (max-width: 1024px) {
        .review_card {
            flex: 0 0 calc(100% / 2 - 20px);
        }
    }

    @media screen and (max-width: 768px) {
        .review_card {
            flex: 0 0 100%;
        }
    }
  .testimonial_image {
      width: 100%;
      height: auto;
      border-radius: 10px;
      object-fit: contain;
  }
  /*contact form section*/
  
  #custom-section .custom-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 25px 7%;
  
}

#custom-section{
    padding-top:40px;
}



.custom-card {
  /*background: #fff;*/
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 32%; /* Ensures 3 cards per row */
  transition: transform 0.3s;
}

.custom-card:hover {
  transform: translateY(-5px);
}

.custom-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}


.custom-card-content {
    padding: 20px; 
    text-align: left; 
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%); 
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3); 
    border-radius: 15px; 
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); 
    color: #fff; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.custom-card-content:hover {
    transform: translateY(-5px); 
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2); 
}

.middle-button {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.middle-button a {
  
    padding: 8px 18px;
    background-color: transparent;
    color: #ad8b3a;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
    border: 1px solid #ad8b3a;
    text-decoration: none;
}

.middle-button a:hover {
  background-color: #ad8b3a;
  color: white;
  border:1px solid #ad8b3a;
}


.custom-card-title {
  margin: 10px 0;
    font-size: 17px;
    color: #AD8B3A;
    font-weight: 300;
}


.custom-card-title a {
  text-decoration: none;
  color: inherit;
}

.custom-card-title a:hover {
  color: black;
}

.custom-card-location {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.custom-card-location span {
  font-size: 16px;
  color: #333;
}

/* Media queries */
@media (max-width: 768px) {
  .custom-card-container {
    gap: 15px;
  }

  .custom-card {
    width: 45%; 
  }
}

@media (max-width: 480px) {
  .custom-card {
    width: 100%;
  }
}

.main-paragraph{
    text-align: center;
    font-size:15px;
}






/*Exploer section css*/


        .office-wrapper {
            max-width: 1300px;
            margin: 0 auto;
            /*padding: 40px 20px;*/
        }
        
        .office-heading {
            text-align: center;
            color: #b3985d;
            font-size: 35px;
            font-weight: bold;
            margin-bottom: 40px;
            font-family: 'Palatino Linotype';
            text-transform: uppercase;
        }
        
        /* Desktop Gallery */
        .office-desktop-view {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            height: 400px;
        }
        
        .office-card {
            position: relative;
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .office-card.office-expanded {
            height: 350px;
            flex: 3;
        }
        
        .office-card:not(.office-expanded) {
            flex: 1;
        }
        
        .office-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .office-title {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgba(0,0,0,0.4);
            color: white;
            font-size: 24px;
            font-weight: bold;
            transition: opacity 0.3s ease;
        }
        
        .office-card.office-expanded .office-title {
            opacity: 0;
        }
        
        /* Mobile Carousel */
        .office-mobile-view {
            display: none;
            position: relative;
            width: 100%;
            height: 350px;
            margin: 0 auto;
        }
        
        .office-slider-box {
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
        }
        
        .office-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            display: none;
        }
        
        .office-slide.office-current {
            opacity: 1;
            display: block;
        }
        
        .office-slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .office-slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            background-color: rgba(0,0,0,0.6);
            color: white;
            text-align: center;
            font-size: 18px;
        }
        
        .office-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            width: 100%;
            margin-top: 15px;
        }
        
        .office-nav-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #b3985d;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            cursor: pointer;
            border: none;
            outline: none;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        /* Media Query for Mobile */
        @media (max-width: 768px) {
            .office-desktop-view {
                display: none;
            }
            
            .office-mobile-view {
                display: block;
            }
            
            .office-heading {
                font-size: 28px;
                margin-bottom: 25px;
            }
            
            .office-wrapper {
                padding: 20px 15px;
            }
        }
        .office-img-section{
            background: #FBFBFB;
            padding: 150px 0;
        }
        
        
            .faq-container {
        text-align: left;
        /*padding: 40px 7%;*/
        /*background: #fbfbfb;*/
        padding: 150px 0;
    }
    
    
    
    
    
    /*faq section css*/
    
    .faq-div{
        max-width: 1300px;
        margin: auto;
    }

    .faq-container h2 {
        color: #AD8B3A;
        font-size: 35px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .faq {
        width: 100%;
        max-width: 1300px;
        margin: auto;
    }

    .faq-item {
        border-bottom: 1px solid #ddd;
        padding: 15px 0;
    }

    .faq-question {
        width: 100%;
        background: none;
        border: none;
        text-align: left;
        font-size: 18px;
        font-weight: normal;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 10px 0;
    }

    .icon {
            font-size: 20px;
    font-weight: 600;
    transition: transform 0.3s ease;
    opacity: 0.7;
    transform: scale(0.9);
    }

    .faq-answer {
        display: none;
        padding-top: 10px;
        font-size: 16px;
        color: #555;
    }

    .faq-item.active .faq-answer {
        display: block;
    }

    .faq-item.active .icon {
        transform: rotate(180deg);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .faq-container {
            padding: 30px 5%;
        }
        .faq-container h2 {
            font-size: 22px;
        }
        .faq-question {
            font-size: 16px;
        }
        .faq-answer {
            font-size: 14px;
        }
    }
    
    
    
    
    
    /*Contact form section css */
    
       
        .contact-section {
 
  padding: 150px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.containe {
  max-width: 1300px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-content {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.image-container {
  flex: 1;
  min-width: 300px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-container {
  flex: 1.2;
  min-width: 400px;
  padding: 40px;
  background-color: #fbfbfb;
  box-sizing: border-box;
}

.form-container h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.form-container p {
  font-size: 16px;
  margin-bottom: 20px;
}

.form-group,
.form-group-inline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.form-group-inline {
  flex-direction: row;
  gap: 10px;
}

.form-group-inline select,
.form-group-inline input {
  flex: 1;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #a27b5c; /* Accent color */
  box-shadow: 0 0 3px rgba(162, 123, 92, 0.5);
}

.form-group-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.form-group-checkbox label {
  line-height: 1.4;
}

.submit-btn {
  padding: 10px 40px;
  background-color:transparent; /* Accent color */
  color: #AD8B3A;
  border: none;
  border-radius: 35px;
  cursor: pointer;
  font-size: 16px;
  
  transition: background-color 0.3s ease;
  border:1px solid #AD8B3A;
}

.submit-btn:hover {
  background-color: #AD8B3A; /* Darker shade of accent */
  color:white;
}

/* Responsive Design Fixes */
@media (max-width: 1024px) {
  .form-container {
    padding: 30px;
  }

  .form-group-inline {
    flex-direction: column;
    gap: 10px;
  }

  .form-group-inline input,
  .form-group-inline select {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .form-container {
    padding: 20px;
    min-width: unset;
  }

  .image-container {
    order: 2;
  }

  .form-container {
    order: 1;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .form-container h2 {
    font-size: 20px;
  }

.buttons{
    display:none;
}

  .form-container p {
    font-size: 14px;
  }

  input,
  select,
  textarea {
    font-size: 12px;
    padding: 8px;
    color: #757575 !important;
  }
  
  .input {
      color: #757575 !important;
  }
  

  .submit-btn {
    font-size: 14px;
    padding: 10px 15px;
  }
}

.got{
    color:#044656;
    
}


.select{
    color:#757575;
}


.form-group-inline select, .form-group-inline input{
    color: #757575 !important;
}







        .predict {
            display: flex;
            flex-wrap: wrap;
            max-width: 1300px;
            margin: 0 auto;
            padding: 150px 0;
            gap: 100px;
        }
        
        .prediction {
            flex: 1;
            min-width: 300px;
        }
        
        .prediction h1 {
            font-size: 35px;
            font-weight: bold;
            text-transform: uppercase;
            color: #AD8B3A;
            margin-bottom: 15px;
            font-family: 'Palatino Linotype', serif;
        }
        
        .prediction h2 {
            font-size: 26px;
            font-weight: bold;
            color: #044656;
            line-height: 1.2;
            margin-bottom: 30px;
        }
        
        .prediction p {
            font-size: 15px;
            line-height: 1.9;
            color: #333;
            margin-bottom: 15px;
            text-align: left;
        }
        
        .button {
            display: inline-block;
            padding: 8px 18px;
            background-color: transparent;
            color: #ad8b3a !important;
            border: 1px solid #ad8b3a;
            border-radius: 41px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-weight: 500;
            margin-top: 10px;
        }
        
        .button:hover {
            background: #ad8b3a;
            color: #fff !important;
        }
        

        .carousel-container {
            flex: 1;
            min-width: 300px;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            /*box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
        }
        
        .carousel-slide {
            display: flex;
            width: 100%;
            height: 303px;
        }
        
        .carousel-slide img {
            width: 100%;
            height: 192%;
            object-fit: cover;
            display: none;
        }
        
        .carousel-slide img.active {
            display: block;
        }
        
        /* .carousel-nav {
            display: block;
            justify-content: center;
            margin-top: 15px;
            gap: 8px;
        } */
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .carousel-dot.active {
            background-color: #AD8B3A;
        }
        
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: background-color 0.3s;
        }
        
        .carousel-btn:hover {
            background-color: #AD8B3A;
        }
        
        .prev-btn {
            left: 10px;
        }
        
        .next-btn {
            right: 10px;
        }
        

        @media (max-width: 768px) {
            .predict {
                flex-direction: column;
            }
            
            .carousel-container {
                order: -1; 
                margin-bottom: 20px;
                height: 250px;
            }
            
            .carousel-slide {
                height: 250px;
            }
        }
        .lazyload {
          width: 25px;
          height: auto;
        }

/*Strategic Location That Works for You section css         */
.section-wrapper {
  background: #f7f7f7;
  padding: 150px 0;
}

.layout-container {
  max-width: 1300px;
  margin: auto;
}

.flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}

.left-panel {
  flex: 1;
  min-width: 300px;
}

.left-panel iframe {
  width: 100%;
  height: 872px;
  border: 0;
}

.right-panel {
  flex: 1;
  min-width: 300px;
}

.title-highlight {
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
  color: #AD8B3A;
  margin-bottom: 35px;
  font-family: 'Palatino Linotype', serif;
}

.feature-title {
  color: #044656;
  font-weight: bold;
  padding-top: 13px;
  position: relative;
  padding-left: 25px;
}

.feature-title::before {
  content: "✔";
  color: #044656;
  position: absolute;
  left: 0;
  top: 17px;
  font-size: 18px;
}

.feature-description {
  margin-top: 5px;
  line-height: 1.6;
}


.locaion-box-section{
  border: 1px solid #044656;
  padding: 0 20px 10px 20px;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 10px;
}

.locaion-box-section:hover {
  transform: scale(1.1); /* Grows the item on hover */
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); 
}
/*Signature Elements of Our Premium Spaces section css */