@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');



/* 

body{
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}
 */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
   
    
}
.navbar ul li{
    font-size: 17px;
    font-weight: 600;

}


/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.567));
    z-index: 1;
}
.hero-banner video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.hero-content {
    position: absolute;
    z-index: 2;
}
.fw-bold {
  font-family: 'Quicksand', sans-serif;
}
.hero-content h2.fw-bold {
  font-family: 'Quicksand', sans-serif;
}
/* Offcanvas Styles */
.offcanvas-custom {
    width: 300px;
    background:white;
    color: black;
    padding: 20px;
}
.offcanvas-custom a {
    color:black;
    display: block;
    padding: 10px;
    text-decoration: none;
}
.offcanvas-custom a:hover {
    background: #444;
    border-radius: 5px;
    color: white;
}

/* Logo Carousel */
.logo-carousel img {
    width: 150px;
}
.timeline-container {
    width: 100%;
    text-align: center;
    padding: 50px 0;
}
.timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
}
.timeline-item {
    flex: 1 1 16%;
    text-align: center;
    position: relative;
    min-width: 140px;
    padding: 10px;
}
.timeline-item:nth-child(odd) {
    transform: translateY(30px);
}
.timeline-item:nth-child(even) {
    transform: translateY(-30px);
}
.timeline-icon {
    width: 130px;
    height: 130px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
    margin-top: -190px;
    margin-left: 30px;
}
.timeline-icon:hover {
    transform: scale(1.1);
}
.timeline-card {
    display: none;
    position: absolute;
    top: -410px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 8px;
    width: 180px;
    text-align: center;
    z-index:10;
    width: 350px;
}
.timeline-icon:hover + .timeline-card {
    display: block;
    z-index:99999;
}
.timeline-year {
    font-weight: bold;
    color: #a8792e;
    margin-top: 10px;
        font-size: 28px;
}
.timeline-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-top: 8px;
}
@media (max-width: 768px) {
    .timeline {
        flex-direction: column;
    }
    .timeline-item {
        flex: 1 1 100%;
        transform: none !important;
        text-align: center;
        margin-bottom: 20px;
    }
    .timeline-icon {
        width: 80px;
        height: 80px;
    }
    .timeline-icon {
      width: 130px;
      height: 130px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease-in-out;
      margin: 0 auto;
      position: relative;
      cursor: pointer;
      margin-top: 0px;
      margin-left: 30px;
  }
  .timeline-icon:hover {
      transform: scale(1.1);
  }
  .timeline-card {
      display: none;
      position: absolute;
      top: 0px;
      left: 50%;
      transform: translateX(-50%);
      background: white;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 10px;
      border-radius: 8px;
      width: 180px;
      text-align: center;
      z-index: 10;
  }
  .timeline-container .timeline-img{
    display: none;
  }
}
.gallery {
    columns: 3;
    column-gap: 1.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .gallery {
        columns: 2;
    }
}

@media (max-width: 480px) {
    .gallery {
        columns: 1;
    }
    .timeline-container .timeline-img{
      display: none;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: calc(var(--delay) * 0.2s);
}

.gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 168, 157, 0.9), transparent);
    padding: 2rem 1.5rem;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.overlay h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

.photo-credit {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: white;
    font-size: 0.8rem;
    opacity: 0.8;
    text-decoration: none;
}

.photo-credit:hover {
    opacity: 1;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: #00A89D;
    z-index: 1000;
    transition: width 0.3s ease;
}
.about-section1 {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0;
 
}
.image-container1 {
    position: relative;
    max-width: 100%;
}
.image-container1 img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.badge-center1 .videoimg {
    width:20px;
    border-radius: 10px;
}
.badge1 {
    position: absolute;
    background-color: #c48b3b;
    color: white;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 5px;
}
.badge-top1 {
    top: 390px;
    left: 160px;
    padding: 22px;
    font-size: 14px;
}
.badge-bottom1 {
    bottom: 290px;
    left: -50px;
    padding: 22px;
    font-size: 14px;
}
.badge-center1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(196, 139, 59, 0.9);
    padding: 10px;
    border-radius: 10px 0px 0px 10px;
    text-align: center;
    cursor: pointer;
    margin-left: 82px;
  
}
.modal-body {
    text-align: center;
}

/* Responsive Queries */
@media (max-width: 991px) {
  .image-container1 img {
      width: 90%;
  }

  .badge-top1, .badge-bottom1, .badge-center1 {
      font-size: 13px;
      padding: 16px;
  }
  .badge-top1, .badge-bottom1 {
    left: 182px;
    padding: 14px;
    font-size: 12px;
    top: 390px;
}

  .about-content h2 {
      font-size: 1.8rem;
  }

  .about-content p {
      font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .about-section1 {
      flex-direction: column;
      align-items: center;
  }

  .image-container1 img {
      width: 100%;
  }

  .badge-top1, .badge-bottom1 {
      left: 182px;
      padding: 14px;
      font-size: 12px;
      top: 390px;
  }

  .badge-bottom1 {
      bottom: 200px;
  }

  .badge-center1 {
      margin-left: 50px;
      font-size: 12px;
      padding: 8px;
  }

  .about-content h2 {
      font-size: 1.6rem;
  }

  .about-content p {
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .badge-top1, .badge-bottom1 {
      font-size: 11px;
      padding: 12px;
  }
  .badge-top1, .badge-bottom1 {
    left: 182px;
    padding: 14px;
    font-size: 12px;
    top: 390px;
}

  .badge-center1 {
      font-size: 11px;
      margin-left: 60px;
      padding: 6px;
  }

  .about-content h2 {
      font-size: 1.4rem;
  }

  .about-content p {
      font-size: 0.85rem;
  }
}
.core-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../assets/journey/corevaluebackground.webp') no-repeat center center/cover;
    color: white;
    padding: 200px 0;
}

.carousel-item img {
     width: 100%;
    height: 250px; /* or any uniform height like 300px */
    object-fit: cover;
    border-radius: 8px;
} 

 
.card {
 
    background-color: transparent;
    text-align: center;
}

.container.carousel-container {
    margin-top: -160px;
}

/* Custom Styling for Navigation Icons */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Space between icons */
    margin-top: 20px;
}

.carousel-controls img {
    width: 40px; /* Adjust icon size */
    height: auto;
    cursor: pointer;
} /* Footer Styles */
   .footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
}

.footer a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #B07B37;
    transition: width 0.3s ease-in-out;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.footer a:hover {
    color: #B07B37;
}

.footer a:hover::after {
    width: 100%;
}

.footer-logo img {
    
    margin-bottom: 15px;
}

.social-icons a {
    
    margin-right: 10px;
    color: white;
    display: inline-block;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #B07B37;
    transform: scale(1.1);
}

.footer h5 {
    color: #B07B37;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info p {
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    font-size: 18px;
    color: #B07B37;
}

.gmail-details p {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gmail-details i {
    font-size: 18px;
    color: #B07B37;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #444;
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}
  /* Section with Background Image */
  .contact-section {
    background-image: url('../assets/journey/counter-backgr.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
    text-align: center;
}

/* Container Background */
.contact-container {
    background: rgba(255, 255, 255, 0.85); /* Slightly more transparent */
    border-radius: 120px;
    max-width: 1200px;
    width: 90%;
    height: auto;
    padding: 30px 20px; /* Adjusted padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: black;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto; /* Centering */
}

/* Button Styling */
.contact-btn {
    background-color: #B07B37;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    color: white;
    margin-top: 15px;
    transition: all 0.3s ease-in-out;
}

.contact-btn:hover {
    background-color: #945e29;
    color: white;
}

.contact-container h2 {
    color: #B07B37;
    margin-bottom: 10px;
}

.contact-container p {
    max-width: 600px;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        padding: 30px 15px;
    }
}
.testimonial-section {
    background: linear-gradient(rgba(0, 0, 0, 0.332), rgba(0, 0, 0, 0.463)), 
                url('../assets/journey/testmonial-backgr.png') no-repeat center center/cover;
    padding: 60px 0;
    color: white; /* Ensures text remains visible */
}


.testimonial-section h2 {
    font-size: 36px;
    font-weight: bold;
}

.testimonial-section h3 {
    font-size: 28px;
    font-weight: 600;
}

.testimonial-card {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensures all content is centered */
    justify-content: center;
}

.testimonial-card:hover {
    transform: scale(1.05);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    display: block; /* Ensures it behaves as a block element */
}


.testimonial-card h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 16px;
    color: #555;
}

.carousel-control-prev, 
.carousel-control-next {
    width: 5%;
}

/* Blog Section */
.blog-section {
    text-align: center;
    background: #f9f9f9; /* Light background */
    padding: 60px 0;
}

/* Section Titles */
.blog-section h5 {
    font-size: 20px;
    font-weight: 600;
    color: black; /* Primary color */
}

.blog-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #B07B37; /* Brown color */
    margin-bottom: 40px;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

/* Blog Author */
.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.blog-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author span {
    font-size: 14px;
    color: #555;
}

/* View All Post Button */
.btn-view {
    background: #B07B37;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    margin-top: 30px;
    transition: 0.3s;
}

.btn-view:hover {
    background: #905c28;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-card {
        margin-bottom: 20px;
    }
    
    .blog-section h2 {
        font-size: 24px;
    }
    
    .card-title {
        font-size: 16px;
    }
}

    /* Section with Background Image */
    .carousel-section {
        background-image: url('../assets/journey/counter-backgr.png');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 50px 0;
    }

    /* Carousel Wrapper - White Background */
    .carousel-wrapper {
        background-color: white;
        border-radius: 120px;
        padding: 30px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* Icon Box */
    .icon-box {
        width: 22%;
        text-align: center;
        margin: 0 1%;
    }

    .icon-box img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 20px;
       
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .d-flex.justify-content-center {
            flex-wrap: wrap;
        }

        .icon-box {
            width: 45%;
            margin: 10px;
        }
    }
        /* Hero Section with Linear Gradient */
/* Hero Section */
    /* Hero Section */
    .hero-section1 {
        position: relative;
        background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
                    url('../assets/journey/Aerial\ view.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        height: 500px;
        overflow: hidden;
      }
  
      .hero-video1 {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
  
      .hero-overlay1 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        padding: 20px;
        z-index: 2;
      }
  
      .hero-overlay1 h2 {
        font-size: 2.5rem;
        font-weight: bold;
        max-width: 700px;
        margin-top: 20px;
      }
  
      .video-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: 0.3s ease-in-out;
        margin-bottom: 20px;
        position: relative;
      }
  
      .video-icon img {
        width: 50px;
      }
  
      .video-icon:hover {
        background-color: rgba(255, 255, 255, 0.4);
        transform: scale(1.1);
      }
  
      .video-icon::before {
        content: "";
        position: absolute;
        width: 90px;
        height: 90px;
        background-color: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        animation: pulse 1.5s infinite;
        z-index: -1;
      }
  
      @keyframes pulse {
        0% {
          transform: scale(1);
          opacity: 1;
        }
        100% {
          transform: scale(1.5);
          opacity: 0;
        }
      }
  
      .explore-btn {
        background-color: #B07B37;
        border: none;
        padding: 12px 24px;
        font-size: 18px;
        font-weight: bold;
        border-radius: 30px;
        color: white;
        margin-top: 20px;
        transition: 0.3s;
      }
  
      .explore-btn:hover {
        background-color: #e0d2b8;
        color: black;
      }
  
      .modal-body {
        position: relative;
        background-color: black;
      }
  
      .btn-close {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 9999;
        background-color: white;
        padding: 0.5rem;
        border-radius: 0.25rem;
      }
 /* Default (desktop) */
.background-section {
  background: url('../assets/about/Mam final photo.jpg') no-repeat center center/cover;
  height: 900px;
  position: relative;
  color: #fff;
}

/* Dark overlay */
.background-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* optional overlay */
  z-index: 1;
}

/* Content over background */
.background-section > * {
  position: relative;
  z-index: 2;
}

/* Large desktops */
@media (min-width: 1200px) {
  .background-section {
    height: 900px;
  }
}

/* Medium desktops & tablets */
@media (max-width: 1199px) and (min-width: 992px) {
  .background-section {
    height: 700px;
    object-fit: fill;
  }
}

/* Tablets */
@media (max-width: 991px) and (min-width: 768px) {
  .background-section {
    height: 600px;
    background-size: cover;
    background-position: center;
    object-fit: fill;
  }
}

/* Large mobile devices (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .background-section {
    height: 1200px;
    background-size: cover;
    background-position: center top;
    object-fit: fill;
  }
}

/* Small mobile devices (up to 575px) */
@media (max-width: 575px) {
  .background-section {
    height: 300px;
    background-size: cover;
    background-position: center top;
    object-fit: fill;
  }
}



/* Ensuring content is above the overlay */
.container-custom {
    position: relative;
    z-index: 1;
}



/* Play Button Pulse Effect */
.play-button {
    display: inline-block;
    cursor: pointer;
    position: relative;
}

.play-button img {
    width: 50px;
}

/* Pulsing Animation */
.play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse1 1.5s infinite ease-in-out;
}

@keyframes pulse1 {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Modal Styling */
.modal-content {
    border-radius: 10px;
}

.modal-header {
    border-bottom: none;
}

.btn-close {
    background: transparent;
    border: none;
    font-size: 16px;
}
    .why-choose-section {
        text-align: center;
        padding: 60px 0;
        background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
                    url('../assets/journey/whochoosebackground.png') center/cover no-repeat;
        color: black;
    }

    .section-title {
        font-size: 28px;
        font-weight: bold;
        color: #B07B37;
        margin-bottom: 40px;
    }

    .feature-card {
        background: white;
        height: 150px;
        width: 100%;
        border-radius: 50px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: 0.5s;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px;
    }

    .feature-card:hover {
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    .default-content, .hover-content {
        transition: opacity 0.4s ease;
    }

    .hover-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-height: 80%;
        overflow-y: auto;
        text-align: center;
        opacity: 0;
        pointer-events: none;
    }

    .feature-card:hover .default-content {
        opacity: 0;
    }

    .feature-card:hover .hover-content {
        opacity: 1;
        pointer-events: auto;
    }

    .default-content h6 {
        margin: 0;
        font-size: 16px;
        font-weight: bold;
    }

    .hover-content p {
        margin: 0;
        font-size: 14px;
        font-weight: normal;
        color: #555;
        line-height: 1.4;
        white-space: pre-line;
    }

    @media (max-width: 768px) {
        .feature-card {
            margin-bottom: 20px;
        }
    }
    .journey-top-label {
        background: linear-gradient(135deg, #8B5E3C, #B07B37);
        padding: 10px 25px;
        border-radius: 20px 0px 20px 0px;
        color: white;
        top: 60px;
        left: 20px;
    }
    
    .bedding-label {
        background: linear-gradient(135deg, #B07B37, #D8A16E);
        padding: 15px 20px;
        border-radius: 0px 0px 0px 0px;
        color: white;
        top: 50%;
        
        right: -70px; /* move out of image slightly */
        transform: translateY(-50%);
    }
    .certificates-carousel img{
        width: 200px;height: 200px;
    }
    .team-container {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        
      }
  
      .team-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px;
    text-align: center;
  }
  
  .team-section p {
    font-size: 16px;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  
      .team-card {
        position: relative;
        width: 300px;
        overflow: hidden;
      }
  
      .team-card img {
        width: 100%;
        display: block;
      }
  
      .team-info {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80%;
        background: #fff;
        padding: 15px;
        text-align: left;
      }
  
      .team-info h3 {
        margin: 0;
        font-size: 15px;
        font-weight: bold;
      }
  
      .team-info p {
        margin: 5px 0 0;
        font-size: 12px;
        color: #555;
      }
  
      .bi-share-fill {
        padding: 10px;
        font-size: 12px;
        background-color: #B07B37;
        border-radius: 50px;
      }
  
      .share-icons {
        display: none;
        position: absolute;
        bottom: 45px;
        right: 0;
       
        padding: 8px 10px;
        border-radius: 6px;
       
        z-index: 999;
      }
  
      .share-icons a {
          color: #fff;
    text-decoration: none;
    background-color: #B07B37;
    padding: 8px;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    transition: background-color 0.3s;
      }
  
      .share-icons a:hover i {
        color: #B07B37;
      }
  
      @media (max-width: 768px) {
        .team-container {
          flex-direction: column;
          align-items: center;
        }
         .bedding-label {
        background: linear-gradient(135deg, #B07B37, #D8A16E);
        padding: 15px 20px;
        border-radius: 0px 0px 0px 0px;
        color: white;
        top: 50%;
        
        right: -35px; /* move out of image slightly */
        transform: translateY(-50%);
    }
      }

         /* Hero Banner Styling */
    .hero-banner1 {
        background: linear-gradient(
            rgba(0, 0, 0, 0.262), 
            rgba(0, 0, 0, 0.321)
          ),
          url('../assets/journey/aboutbackground\ 1.JPG') no-repeat center center;
        background-size: cover;
        height: 500px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 15px;
        color: white;
        text-align: center;
      }
      
      
          /* Optional overlay for text readability */
          .hero-banner1::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 1;
          }
      
          .hero-content2 {
            position: relative;
            z-index: 2;
            max-width: 800px;
          }
      
       
          .hero-content2 h1,
          .hero-content2 p {
            margin-bottom: 20px;
          }
      
       
      
          .hero-content2 h1 {
            font-size: 35px;
          }
      
          .hero-content2 p {
            font-size: 16px;
            line-height: 1.6;
          }
       
          
      
          @media (max-width: 768px) {
            .hero-content2 h1 {
              font-size: 32px;
            }
          
            .hero-content2 p {
              font-size: 15px;
            }
          }

          
    /* Section Styling */
    .skyline-carousel-section {
        padding: 60px 0;
        background-color: #f8f9fa;
      }
  
      .skyline-carousel-title {
        font-size: 28px;
        font-weight: bold;
        color: #B07B37;
        text-align: center;
        margin-bottom: 20px;
      }
  
      .skyline-carousel-description {
        text-align: center;
        max-width: 1000px;
        margin: 0 auto 30px;
        font-size: 16px;
        color: #333;
      }
  
      /* Carousel Styling */
      .skyline-carousel {
        position: relative;
        width: 100%;
        max-width: 100%;
      }
  
      .skyline-carousel-inner {
        width: 100%;
        height: 500px;
      }
  
      .skyline-carousel-item {
        height: 100%;
      }
  
      .skyline-carousel-item img {
        object-fit:fil;
        width: 100%;
        height: 100%;
        display: block;
      }
  
      /* Controls Styling */
      .skyline-carousel-prev,
      .skyline-carousel-next {
        width: 5%;
      }
  
      .skyline-carousel-prev-icon,
      .skyline-carousel-next-icon {
        filter: invert(100%);
      }


      .section-title {
        text-align: center;
        font-size: 28px;
        font-weight: bold;
        color: #B07B37;
        margin: 40px 0 20px;
      }
  
      .nav-section1 {
        max-width: 1200px;
        margin: auto;
       height: 800px;
      }
  
      .section-title {
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 20px;
      }
  
      .text-center {
        text-align: center;
      }
  
   
  
      .tab-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 30px;
        gap: 10px;
      }
  
      .filter-bullet {
        cursor: pointer;
        padding: 8px 16px;
        border-radius: 20px;
        background: #ddd;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background 0.3s;
      }
  
      .filter-bullet.active,
      .filter-bullet:hover {
        background: #8B4513;
        color: white;
      }
  
      .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two items per row */
    gap: 16px;
    justify-content: center;
  }
  
  
      .image-item {
        position: relative;
        width: 550px;
        height: 200px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        transition: transform 0.3s;
      }
  
      .image-item:hover {
        transform: scale(1.03);
      }
  
      .image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
  
      .hover-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        padding: 1rem;
        text-align: center;
      }
  
      .image-item:hover .hover-overlay {
        opacity: 1;
      }
  
      .hover-content h5 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
      }
  
      .hover-content p {
        font-size: 0.85rem;
        line-height: 1.3;
      }
  
      /* Responsive Styles */
      @media (max-width: 768px) {
        .section-title {
          font-size: 1.5rem;
        }
  
        .mb-4 {
          font-size: 0.95rem;
        }
  
        .image-item {
          width: 100%;
          max-width: 100%;
          height: 180px;
        }
  
        .hover-content h5 {
          font-size: 0.95rem;
        }
  
        .hover-content p {
          font-size: 0.8rem;
        }
      }
  
      @media (max-width: 480px) {
        .section-title {
          font-size: 1.3rem;
        }
  
        .mb-4 {
          font-size: 0.9rem;
        }
  
        .filter-bullet {
          font-size: 0.8rem;
          padding: 6px 12px;
        }
  
        .image-item {
          height: 160px;
        }
  
        .hover-content h5 {
          font-size: 0.85rem;
        }
  
        .hover-content p {
          font-size: 0.75rem;
        }
      }

      .ps-section-title {
        margin: 30px 0;
        font-size: 24px;
        font-weight: bold;
        color: #B07B37;
      }
  
      .nav-tabs .nav-link.active {
        border-bottom: 3px solid #d4a373;
      }
  
      .ps-video-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;             /* or a fixed width like 400px */
  height: 250px;           /* set a fixed height */
  overflow: hidden;        /* crop anything that overflows */
  border-radius: 15px;
}

.ps-video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* ensures uniform cropping */
  border-radius: 15px;
}

  
      .ps-video-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 30px;
        color: white;
        background: rgba(0, 0, 0, 0.6);
        padding: 15px;
        border-radius: 100%;
        cursor: pointer;
        box-shadow: 0 0 0 rgba(255,255,255, 0.4);
        animation: pulse-wave 2s infinite;
      }
  
      @keyframes pulse-wave {
        0% {
          box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
        }
        70% {
          box-shadow: 0 0 0 20px rgba(255,255,255, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(255,255,255, 0);
        }
      }
  
      .ps-core-section {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.527), rgba(2, 2, 1, 0.495)),
                    url(../assets/journey/ourproduct-background.png);
        background-size: cover;
        background-position: center;
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        margin-top: -190px;
      }
  
      .ps-card-body img {
        width: 100%;
        border-radius: 10px;
        height: 100%;
      }

      .card1 {
  background-color: #fff; /* white background for card */
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 10px;
}

.card1:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.ps-card-body {
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
}

.ps-card-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ps-card-body:hover img {
  transform: scale(1.05);
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin-top: 10px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

  
      .card-title {
        text-align: center;
        margin-top: 10px;
      }
   
    .text-br {
      color: #8B4513; 
      font-weight: 700;/* SaddleBrown or use any brown hex code you prefer */
    }
  
    #contact h5 {
      margin-bottom: 5px;
    }

    #contact p {
      margin-bottom: 0;
    }

    #contact .icon-box {
      background-color: #B07B37;
      color: #fff;
      padding: 10px;
      border-radius: 50%;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
    }

    .form-control, .form-select {
      border-radius: 0.5rem;
    }
    #map { height: 100vh; }
    .contact-form {
      border: 1px solid #dee2e6;
      border-radius: 1rem;
      padding: 30px;
    }

    #contact a {
      text-decoration: none;
      color: inherit;
    }
    
    #contact a:hover {
      text-decoration: underline;
      color: #B07B37; /* Optional: highlight color on hover */
    }
        
    .map img {
      width:400px;
      max-width: 600px;
  }

  .whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }

  .whatsapp-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25d366;
    color: white;
    font-size: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.4);
    animation: pulse5 2s infinite;
    transition: transform 0.3s ease;
  }

  .whatsapp-icon:hover {
    transform: scale(1.1);
  }

  @keyframes pulse5 {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }

  .video-container5 {
    max-width: 100%;
    margin: 40px auto;
  
    display: flex;
    justify-content: center;
  }

  .video-container5 video {
    width: 100%;
   
   
  }

  @media (max-width: 600px) {
    .video-container5 video {
      max-height: 300px;
    }
  }
  
/* Responsive font size for Mobile */
@media (max-width: 767px) {
  .section-title {
    font-size: 1.8rem;
  }

  p {
    font-size: 0.9rem;
  }

  .filter-bullet {
    font-size: 0.9rem;
  }

  .hover-content h5 {
    font-size: 1rem;
  }

  .hover-content p {
    font-size: 0.8rem;
  }
}

/* Smaller devices */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.8rem;
  }

  .filter-bullet {
    font-size: 0.8rem;
  }

  .hover-content h5 {
    font-size: 0.9rem;
  }

  .hover-content p {
    font-size: 0.75rem;
  }
}
/* Responsive Styles */
@media (max-width: 991px) {
  .icon-box img {
    width: 70px;
    height: 70px;
  }
  
  .icon-box p {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .d-flex.justify-content-center {
    flex-wrap: wrap;
  }

  .icon-box {
    margin: 10px;
    flex: 1 1 40%;
  }

  .icon-box img {
    width: 60px;
    height: 60px;
  }
  
  .icon-box p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .icon-box img {
    width: 50px;
    height: 50px;
  }

  .icon-box p {
    font-size: 0.85rem;
  }
}
@media (max-width: 767px) {
  .journey-image-section {
    margin-bottom: 30px;
  }

  .journey-top-label {
    font-size: 0.85rem;
    padding: 6px 10px;
  }

  .bedding-label {
    width: 80px;
    height: 80px;
    font-size: 0.75rem;
  }

  .journey-small-image {
    width: 100px;
  }

  .journey-title {
    font-size: 1.6rem;
  }

  .journey-steps .journey-step h5 {
    font-size: 1rem;
  }

  .journey-steps .journey-step p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .journey-top-label {
    font-size: 0.75rem;
    padding: 5px 8px;
  }

  .bedding-label {
    width: 65px;
    height: 65px;
    font-size: 0.7rem;
  }

  .journey-small-image {
    width: 80px;
  }

  .journey-title {
    font-size: 1.4rem;
  }

  .journey-steps .journey-step h5 {
    font-size: 0.95rem;
  }

  .journey-steps .journey-step p {
    font-size: 0.85rem;
  }
}

.sticky-flag {
  position: sticky;
  top: 0;
  z-index: 2;
}


@media (max-width: 768px) {
  .d-flex.align-items-start {
      flex-direction: column;
      align-items: flex-start !important;
  }

  .sticky-flag {
      position: relative;
      margin-bottom: 1rem;
  }
}


.flag-carousel img.flag-img {
  width: 70px;
  height: 55px;
  object-fit: contain;
  margin-right: 10px;
}

.flag-usa {
  width: 100px !important;
  height: 85px !important;
  margin-top: -12px;
  object-fit: contain;
  margin-right: 10px;
}

.indian-flag {
  width: 70px;
  height: 45px;
  object-fit: contain;
  margin-bottom: 15px; /* Creates space between Indian flag and carousel */
}

.sticky-flag {
  position: sticky;
  top: 0;
}
.infra-container {
  padding: 40px 20px;
}

.infra-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.infra-description {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1rem;
  text-align: center;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(580px, 1fr));
  gap: 20px;
}

.infra-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.infra-item img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.infra-item:hover img {
  transform: scale(1.05);
}

.infra-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
}

.infra-item:hover .infra-hover {
  opacity: 1;
}

.infra-hover-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.infra-hover-content p {
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .infra-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
}

@media (max-width: 768px) {
  .infra-container {
    padding: 20px 10px;
  }

  .infra-title {
    font-size: 1.6rem;
  }

  .infra-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .infra-grid {
    grid-template-columns: 1fr;
  }

  .infra-hover-content h5 {
    font-size: 1rem;
  }

  .infra-hover-content p {
    font-size: 0.85rem;
  }

  .infra-item img {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .infra-title {
    font-size: 1.4rem;
  }

  .infra-description {
    font-size: 0.9rem;
  }

  .infra-hover-content h5 {
    font-size: 0.95rem;
  }

  .infra-hover-content p {
    font-size: 0.8rem;
  }

  .infra-item img {
    max-height: 250px;
  }
}

.premium-kitchen img{
  width: 800px !important;
}

 .market-section {
      padding: 50px 0;
    }

    .content-wrapper {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      flex-wrap: wrap;
    }
 
 .market-video {
  flex: 1 1 60%;
  max-width: 60%;
}

.market-video video {
  width: 100%;
  height: auto;
  max-height: 100vh;
  border-radius: 5px;
  object-fit: cover;
  display: block;
}

/* For smaller screens (mobile & tablet) */
@media (max-width: 768px) {
  .market-video video {
    max-height: 60vh;
  }
}

  .market-image{
  flex: 1 1 60%;
  max-width: 60%;
}
    /* Default for desktops */
.market-image img {
  width: 100%;
  height: auto;
  max-height: 100vh;
  border-radius: 5px;
  object-fit: cover;
  display: block;
}

/* For smaller screens (mobile & tablet) */
@media (max-width: 768px) {
  .market-image img {
    max-height: 60vh; /* reduce height on smaller screens */
  }
}


    .market-text {
      flex: 1 1 38%;
      max-width: 38%;
      padding-left: 40px;
    
    }

    .market-text h5 {
      font-weight: bold;
      margin-bottom: 10px;
    }

    .market-text h2 {
      font-size: 36px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 10px;
    }

    .market-text h6 {
      font-weight: 600;
      font-size: 18px;
      color: #000;
      margin-bottom: 20px;
    }

    .market-text p {
      font-size: 16px;
      line-height: 1.8;
      text-align: justify;
      color: #222;
    }
  
      @media (max-width: 991px) {
      .market-video, .market-text {
        max-width: 100%;
        flex: 1 1 100%;
        padding-left: 0;
        border-left: none;
        margin-top: 30px;
      }
    }
     
    @media (max-width: 991px) {
      .market-image, .market-text {
        max-width: 100%;
        flex: 1 1 100%;
        padding-left: 0;
        border-left: none;
        margin-top: 30px;
      }
    }

     .title-block {
      border-bottom: 2px solid #000;
      padding-bottom: 10px;
      margin-bottom: 20px;
    }

    .title-block h1 {
      font-weight: 800;
      font-size: 48px;
      display: inline-block;
    }

    .title-sub {
      font-size: 24px;
      margin-left: 10px;
    }

    .quote {
      font-style: italic;
      font-size: 15px;
      margin-bottom: 10px;
    }

    .expo-logo {
      width: 200px;
      height: auto;
    }

    .main-image {
      width: 100%;
      height: auto;
      border-radius: 4px;
    }

    .side-image {
      width: 100%;
      height: auto;
      margin-bottom: 20px;
      border-radius: 4px;
    }

    .text-block p {
      text-align: justify;
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 16px;
    }

    @media (max-width: 991px) {
      .title-block h1 {
        font-size: 36px;
      }
      .title-sub {
        font-size: 18px;
      }
    }
     .bedding-img {
      object-fit: cover;
      width: 100%;
      height: auto;
    }
    .caption {
      font-style: italic;
      font-weight: 500;
      margin-top: 1rem;
      margin-bottom: 1rem;
    }
    .bedding-text {
      font-size: 1rem;
      line-height: 1.8;
      text-align: justify;
    }





    
    .heading-section {
      border-bottom: 2px solid #0000008d;
      margin-bottom: 15px;
    }

    .heading-section h1 {
      font-weight: 800;
      display: inline;
      font-size: 2.8rem;
    }

    .heading-section span {
      font-size: 1.7rem;
      margin-left: 12px;
    }

    .quote-logo-row {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .quote {
      font-style: italic;
      flex: 1 1 65%;
      font-size: 1rem;
      line-height: 1.6;
    }

    .logo {
      text-align: right;
      flex: 1 1 30%;
    }

    .logo img {
      max-height: 55px;
    }

    .logo .year-box {
      display: inline-block;
      font-weight: bold;
      font-size: 1.4rem;
      background-color: #ccc;
      padding: 4px 10px;
      margin-top: 5px;
    }

    .main-section {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }

    .left-column {
      flex: 1 1 55%;
    }

    .left-column img {
      width: 100%;
      border: 1px solid #ddd;
      height: 700px;
      margin-bottom: 20px;
    }

    .right-column {
      flex: 1 1 40%;
    }

    .right-column img {
      width: 100%;
      border: 1px solid #ddd;
      margin-bottom: 20px;
    }

    .right-column p {
      font-size: 1rem;
      text-align: justify;
      line-height: 1.75;
      margin-bottom: 1rem;
    }

    @media (max-width: 768px) {
      .main-section {
        flex-direction: column;
      }

      .quote-logo-row {
        flex-direction: column;
      }

      .logo {
        text-align: left;
        margin-top: 20px;
      }
    }

    @media (max-width: 768px) {
  .left-column img {
  height: 400px;
  }
}

    
    .skyline-expo-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }

    .expo-left-image {
      flex: 1 1 60%;
    }

    .expo-left-image img {
      width: 100%;
      height: auto;
      border: 1px solid #ccc;
    }

    .expo-right-panel {
      flex: 1 1 35%;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .expo-brand-box {
      background-color: #9ca5a0;
      color: white;
      padding: 10px 20px;
      font-size: 0.9rem;
      font-weight: 500;
    }

    .expo-title-box {
      background-color: #9ca5a0;
      color: white;
      padding: 15px 20px;
    }

    .expo-title-box h2 {
      margin: 0;
      font-size: 2rem;
      font-weight: 500;
    }

    .expo-subheading {
      font-size: 1.5rem;
      font-weight: bold;
      background-color: #9ca5a0;
      color: white;
      padding: 10px 20px;
    }

    .expo-highlight-quote {
      font-style: italic;
      font-size: 1.2rem;
      font-weight: bold;
      margin-top: 10px;
    }

    .expo-divider {
      height: 2px;
      background: #333;
      width: 100%;
      margin: 10px 0;
    }

    .expo-description-text p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 0;
    }

    @media (max-width: 768px) {
      .skyline-expo-container {
        flex-direction: column;
      }
    }

    
    .ui-layout-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }

    .ui-left-block {
      flex: 1 1 60%;
      display: flex;
      flex-direction: column;
    }

    .ui-left-block img {
      width: 100%;
      height: auto;
      border: 1px solid #ccc;
    }

    .ui-info-box {
      background-color: #9ca5a0;
      color: white;
      padding: 30px 20px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
    }

    .ui-heading-group {
      display: flex;
      align-items: center;
      flex: 1 1 40%;
    }

    .ui-heading-group h2 {
      font-size: 2rem;
      font-weight: bold;
      margin: 0;
    }

    .ui-divider {
      width: 6px;
      height: 60px;
      background-color: #fff;
      margin-left: 85px;
    }

    .ui-quote {
      flex: 1 1 55%;
      font-size: 1.1rem;
      line-height: 1.6;
      text-align: center;
      margin-top: 15px;
    }

    .ui-right-image {
      flex: 1 1 35%;
    }

    .ui-right-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border: 1px solid #ccc;
    }

    @media (max-width: 768px) {
      .ui-layout-wrapper {
        flex-direction: column;
      }

      .ui-info-box {
        flex-direction: column;
        gap: 20px;
        align-items: center;
      }

      .ui-heading-group {
        justify-content: center;
      }

      .ui-divider {
        display: none;
      }
    }

      .photo-quote-wrapper {
      display: flex;
      flex-wrap: wrap;
      padding: 0px;
      gap: 20px;
    }

    .photo-column-custom {
      flex: 1 1 40%;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .photo-column-custom img {
      width: 100%;
      border-radius: 5px;
      object-fit: cover;
      height: auto;
    }

    .quote-column-custom {
      flex: 1 1 58%;
      background: url('../assets/behaind/fourthpagebed.jpg') no-repeat center center/cover;
      border-radius: 5px;
      padding: 40px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100%;
    }

    .overlay-bg {
      position: absolute;
      inset: 0;
      background-color: rgba(255, 255, 255, 0.75);
      border-radius: 5px;
      z-index: 1;
    }

    .quote-content {
      position: relative;
      z-index: 2;
      font-size: 1.25rem;
      text-align: center;
      color: #000;
      line-height: 1.8;
    }

    .quote-content p {
      margin-bottom: 30px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .photo-quote-wrapper {
        flex-direction: column;
      }

      .quote-column-custom {
        padding: 20px;
      }

      .quote-content {
        font-size: 1.1rem;
      }
    }

    