/* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
            
   
        }
        
        body {
            /*color: #333;
            line-height: 1.6;
            /*background-color: #faf5d4;*/
            /*font-family: 'Roboto', sans-serif; /* Body text font */
            font-family: 'Poppins', 'Roboto', sans-serif;
             color: #2d2d2d;
            line-height: 1.7;
            background: linear-gradient(135deg, #f8ede3 0%, #f7d9c4 100%);
    
        }
  
  
  /* Headings font */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif; /* Modern heading font */
    font-weight: 600;
  }
  
  
  /* Button font */
  .btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
  }
        /* Header */
        header {
          /*  background-color: #faf5d4;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            z-index: 100;*/
           background: rgba(255,255,255,0.85);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.18);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s;  
        }
        
        .header-container {
           /* display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1200px;
            margin: 0 auto;*/
            max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
        }
        
        .logo {
            /*font-size: 1.8rem;
            font-weight: 700;
            color: #453525;
            display: flex;
            align-items: center;*/

            
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    color:#453525;
    letter-spacing: 0.05em;
        }
       
        
        .logo img {
            /*height: 60px; /* Adjust based on your logo size */
          /*  margin-right: 10px;*/
             height: 48px;
    border-radius: 12px;
    margin-right: 12px;
    box-shadow: 0 2px 8px rgba(176,142,107,0.08);

        }

        .flogo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #e8c4a0;
        }
       nav ul { 
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
       /* nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #b08e6b;
        }*/

        nav ul li a,
.nav-link {
    color: #2d2d2d;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 24px;
    transition: background 0.2s, color 0.2s;
}

nav ul li a:hover,
.nav-link:hover {
    background: #f7d9c4;
    color: #b08e6b;
}

       /* Basic styling for the navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
  }
  
  /* Navigation menu styling */
  .nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-item {
    margin-left: 2rem;
  }
  
  .nav-link {
    text-decoration: none;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
  }

  
 
  
  /* Initially hide the hamburger button */
  .hamburger {
    display: none;
    cursor: pointer;
    margin-left: auto; /* This pushes it to the right */
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease;
  }
        
        /* Hero section */
        .hero1 {
            /*background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('/api/placeholder/1200/600') center/cover no-repeat;*/
            background-image: url('image/IMG_2559.webp'),url('image/jm4mk61c.webp');
            /*animation: changeBg 1s infinite; */
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding-top: 70px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .hero {
           /* height: 90vh;
            position: relative;
            color: white;
            text-align: center;
            padding-top: 70px;
            overflow: hidden;*/


             min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: none;
    padding-top: 100px;
        }



        @keyframes fadeInUp {
            to {
              opacity: 1;
              transform: translateY(0);
            }
          }
          
          @keyframes zoomFadeInUp {
            to {
              opacity: 1;
              transform: scale(1) translateY(0);
            }
        }
        @keyframes slideBlurFadeIn {
            to {
              opacity: 1;
              filter: blur(0);
              transform: translateX(0);
            }
        }
            .slide {
                position: absolute;
                top: 0px;
                left: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                transition: opacity 1s ease-in-out;
                background-position: center;
                background-size:fill;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 70px;
            }
            
            .slide.active {
                opacity: 1;
                
                 /*transform: scale(1.2) translateY(30px); /* Start zoomed in and below */
                /*animation: zoomFadeInUp 1.2s ease forwards;
                animation-delay: 0.5s;*/
                
            }
            
            .sanimation {
                transform: scale(1.2) translateY(30px); /* Start zoomed in and below */
                animation: zoomFadeInUp 1.2s ease forwards;
                animation-delay: 0.5s;
            }
            .seanimation {
                filter: blur(10px);
                transform: translateX(-50px);
                animation: slideBlurFadeIn 1s ease-out forwards;
                animation-delay: 0.5s;
            }

            .slide:nth-child(1) {
                background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('image/IMG_2563.webp') center/cover no-repeat;
          
            
            }
            
            .slide:nth-child(2) {
                background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('image/IMG_0191.webp') center/cover no-repeat;
            }
            
            .slide:nth-child(3) {
                background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('image/IMG_2565.webp') center/cover no-repeat;
            }
        
        .hero-content {
            max-width: 800px;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
            opacity: 1;
            color: white;
            
            margin-top: 20px; /* Adjust this value to control the spacing */
            z-index: 1; /* Ensure it overlaps correctly */
          
        }

        .hero-content.active {
            max-width: 800px;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
            opacity: 1;
            color: white;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards;
        }

       
      
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards;

        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.3s;
        }
        
        .carousel-controls {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.3s;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s;

        }
        
        .carousel-dot.active {
            background-color: white;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards;
          
        }
        

        .btn {
            display: inline-block;
            background-color: #b08e6b;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.3s ease;
            


        }
        /* Button hover effect */



        
        .btn:hover {
            background-color: #97775a;
            transform: scale(1.1);
        }
        
        /* Services section */
        .services {
           /* padding: 5rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
*/
            padding: 5rem 1rem 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;

        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: #333;
          
        }
        
        .section-title h2 {
            /*font-size: 2.5rem;
            margin-bottom: 1rem;*/
              font-size: 2.4rem;
    color: #b08e6b;
    margin-bottom: 0.5rem;
    font-weight: 700;
        }
        
        .section-title p {
           /* color: #777;
            max-width: 600px;
            margin: 0 auto;*/
             color: #6d4c2c;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            
          /*  background-color: #e8c39e;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
       
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  */
   background: rgba(255,255,255,0.85);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(176,142,107,0.10);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
        

      .service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(176,142,107,0.16);
}
        
        .service-img {
            height: 200px;
            width: 100%;
            background-color: #f0f0f0;
            border-bottom: 1px solid #f7d9c4;
        }     
       .service-content {
    padding: 1.5rem 1rem;
    text-align: center;
}
        
     .service-content h3 {
    color: #b08e6b;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
        
       .service-price {
    background: #f7d9c4;
    color: #b08e6b;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.4rem 1.2rem;
    border-radius: 16px;
    display: inline-block;
}
        
        .service-content p {
    color: #6d4c2c;
    font-size: 1rem;
    margin-bottom: 1rem;
}

        
        /* Gallery section */
        .gallery {
            padding: 5rem 1rem;
            /*background-color: #e8c39e;*/
        }
        
        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        
        .gallery-item {
            height: 250px;
            background-color: #f0f0f0;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 2px 8px rgba(176,142,107,0.08);
            opacity: 0;
            transform: translateY(40px) scale(0.96);
            animation: galleryFadeIn 0.8s cubic-bezier(.4,0,.2,1) forwards;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 
                transform 0.4s cubic-bezier(.4,0,.2,1),
                box-shadow 0.3s;
            border-radius: 10px;
        }
        
        .gallery-item:hover img {
            transform: scale(1.08) rotate(-1deg);
            box-shadow: 0 8px 32px rgba(176,142,107,0.18);
            z-index: 2;
        }
        
        @keyframes galleryFadeIn {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Testimonials */
        .testimonials {
            padding: 5rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonial-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .testimonial-card {
            background: rgba(255,255,255,0.85); /* Match service card */
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(176,142,107,0.10);
    font-size: 1.2rem;
    line-height: 1.8;
    width: 700px;         /* Fixed width */
    height: 350px;        /* Fixed height */
    max-width: 90vw;      /* Responsive on small screens */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: #555;
        }
        
        .client-info {
            display: flex;
            align-items: center;
        }
        
        .client-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #f0f0f0;
            margin-right: 1rem;
        }
        
        .client-name {
            font-weight: 600;
        }
         /* Branch Locations Section */
         .branches {
            padding: 5rem 1rem;
            /*background-color: #e8c39e;*/
        }
        
        .branches-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .branches-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .branch-card {
            background-color: #e8c39e;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .branch-map {
            height: 300px;
            width: 100%;
            background-color: #f0f0f0;
        }
        
        .branch-content {
            padding: 1.5rem;
        }
        
        .branch-content h3 {
            margin-bottom: 1rem;
            color: #b08e6b;
        }
        
        .branch-details {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: flex-start;
        }
        
        .branch-details span {
            margin-right: 0.5rem;
            min-width: 20px;
        }
        /* Contact section */
        .contact {
            padding: 5rem 1rem;
            background-color: #b08e6b;
            color: white;
        }
        
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }
        
        .contact-info h2 {
            margin-bottom: 1.5rem;
        }
        
        .contact-details {
            margin-bottom: 2rem;
        }
        
        .contact-details p {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }
        
        .contact-form .form-group {
            margin-bottom: 1.5rem;
        }
        
        .contact-form label {
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            width: 100%;
            padding: 0.8rem;
            border: none;
            border-radius: 5px;
            background-color: #e8c39e;
        }
        
        .contact-form textarea {
            height: 150px;
        }
        
        /* Footer */
        footer {
            background-color: #333;
            color: #fff;
            padding: 3rem 1rem;
            text-align: center;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
         
        .social-links {
            margin: 1.5rem 0;
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        .social-links a {
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            /*background-color: #b08e6b;*/
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: #97775a;
        }
        
        .social-icon {
            font-size: 1.2rem;
        }
        
        .footer-bottom {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .fa {
            padding: 20px;
            font-size: 30px;
            width: 50px;
            text-align: center;
            text-decoration: none;
            margin: 5px 2px;
          }
          
          .fa:hover {
              opacity: 0.7;
          }
          
          .fa-facebook {
            background: #3B5998;
            color: white;
          }
          
          .fa-twitter {
            background: #55ACEE;
            color: white;
          }
          
          .fa-google {
            background: #dd4b39;
            color: white;
          }
          
          .fa-linkedin {
            background: #007bb5;
            color: white;
          }
          
          .fa-youtube {
            background: #bb0000;
            color: white;
          }
          
          .fa-instagram {
            background: #125688;
            color: white;
          }
          
          .fa-pinterest {
            background: #cb2027;
            color: white;
          }
          
          .fa-snapchat-ghost {
            background: #fffc00;
            color: white;
            text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
          }
          
          .fa-skype {
            background: #00aff0;
            color: white;
          }
          
          .fa-android {
            background: #a4c639;
            color: white;
          }
          
          .fa-dribbble {
            background: #ea4c89;
            color: white;
          }
          
          .fa-vimeo {
            background: #45bbff;
            color: white;
          }
          
          .fa-tumblr {
            background: #2c4762;
            color: white;
          }
          
          .fa-vine {
            background: #00b489;
            color: white;
          }
          
          .fa-foursquare {
            background: #45bbff;
            color: white;
          }
          
          .fa-stumbleupon {
            background: #eb4924;
            color: white;
          }
          
          .fa-flickr {
            background: #f40083;
            color: white;
          }
          
          .fa-yahoo {
            background: #430297;
            color: white;
          }
          
          .fa-soundcloud {
            background: #ff5500;
            color: white;
          }
          
          .fa-reddit {
            background: #ff5700;
            color: white;
          }
          
          .fa-rss {
            background: #ff6600;
            color: white;
          }
          .book-appointment {
            margin-top: 1rem;
            text-align: center;
        }
        
        .booking-button {
            display: inline-block;
            background-color: #d4c0a1; /* Beige color to match salon theme */
            color: #333;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .booking-button:hover {
            background-color: #bfaa87;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 1rem;
            }
          
             /* nav ul {
                flex-direction: column;
                width: 100%;
              }*/

            nav ul {
                margin-top: 1rem;
                flex-direction: column;
                display:none;
            }
            /*nav li {
                margin: 0;
                width: 100%;
                text-align: center;
                border-bottom: 1px solid #eee;
              }*/
            
            nav ul li {
                flex-direction: column;
                margin-left: 1rem;
                margin-right: 1rem;
            }
            
           /* Show hamburger button on mobile */
  .hamburger {
    display: block;
  }
  
  /* Change hamburger to X when active */
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(0deg);
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Make the menu vertical on mobile */
  .nav-menu {
    position: fixed;
    left: -100%;
    flex-direction: column;
    background-color:#f0f0f0;
    width: 100%;
    text-align: left;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }
  
  /* When menu is active/visible */
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: .1rem 0;
  }
            .hero h1 {
                font-size: 2rem;
            }
            
            .branches-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .hair-services-grid,
            .cgallery-grid,
            .info-container {
                grid-template-columns: 1fr;
            }
        }



        /* Animated banner background */
.page-banner {
    position: relative;
    height: 40vh;
    /*background: linear-gradient(to right, #453525, rgba(0,0,0,0.3)), url('image/hair_banner.jpg') center/cover no-repeat;*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0;
    overflow: hidden;
     animation: bannerZoom 12s ease-in-out infinite alternate;
}

.page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    /*background: url('image/hair_banner.jpg') center/cover no-repeat;*/
    z-index: 0;
    opacity: 1;
    animation: bannerZoom 12s ease-in-out infinite alternate;
}

@keyframes bannerZoom {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }
    100% {
        transform: scale(1.15); /* Increased zoom */
        opacity: 1;
    }
}

.page-banner > div {
    position: relative;
    z-index: 1;
}

        .page-banner {
            height: 40vh;
            /*background: linear-gradient(to right, #453525, rgba(0,0,0,0.3)), url('image/hair-banner.jpg') center/cover no-repeat;*/
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding-top: 70px;
        }
        .page-title {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
       .content-section {
    background: rgba(255,255,255,0.85);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(176,142,107,0.10);
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

        .csection-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .csection-title p {
            color: #777;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Hair services grid */
        .hair-services-grid {
          display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
        }

        .cservice-card {
            background-color:  rgba(255,255,255,0.85);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .cservice-card:hover {
            transform: translateY(-10px);
        }

        .cservice-img {
            height: 200px;
            width: 100%;
            background-color: #f0f0f0;
        }

        .cservice-content {
            padding: 1.5rem;
        }

        .cservice-content h3 {
            margin-bottom: 0.5rem;
            color: #b08e6b;
        }

        .cservice-content p {
            color: #777;
            margin-bottom: 1rem;
        }

        .cservice-price {
            font-weight: 700;
            font-size: 1.2rem;
            color: #333;
        }

        /* Gallery grid */
        .cgallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin-bottom: 4rem;
        }

        .cgallery-item {
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .cgallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .cgallery-item:hover img {
            transform: scale(1.05);
        }

        /* Hair styling info */
        .info-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .info-box {
            background-color: #e8c39e;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .info-box h3 {
            margin-bottom: 1rem;
            color: #b08e6b;
        }

        .info-box ul {
            list-style-position: inside;
            margin-bottom: 1rem;
        }

        .info-box ul li {
            margin-bottom: 0.5rem;
        }

        /* Call to action */
        .cta-section {
            text-align: center;
            padding: 3rem;
            background-color: #b08e6b;
            border-radius: 10px;
            color: white;
            margin-bottom: 2rem;
        }

        .cta-section h2 {
            margin-bottom: 1.5rem;
        }

        /* Testimonial slider styles */
.testimonial-slider {
    position: relative;
    max-width: 900px;      /* Increased width */
    min-height: 350px;     /* Increased height */
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0; left: 0; width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(.77,0,.18,1);
    z-index: 1;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    pointer-events: auto;
}

.testimonial-slide.prev {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 1;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #f7d9c4 0%, #b08e6b 100%);
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 4px 16px rgba(176,142,107,0.18);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    opacity: 0.92;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 
        background 0.3s,
        opacity 0.2s,
        transform 0.2s,
        box-shadow 0.2s;
}

.testimonial-arrow.left { left: 10px; }
.testimonial-arrow.right { right: 10px; }

.testimonial-arrow:hover {
    background: linear-gradient(135deg, #b08e6b 0%, #f7d9c4 100%);
    opacity: 1;
    transform: scale(1.12);
    box-shadow: 0 8px 24px rgba(176,142,107,0.28);
    border-color: #b08e6b;
}

/* Gallery slider styles */
.gallery-slider {
    position: relative;
    max-width: 1200px;      /* wider slider */
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 360px;     /* taller slider */
}

.gallery-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(.77,0,.18,1);
    will-change: transform;
}

.gallery-slide {
    min-width: 50%; /* Show 2 images at a time, use 100% for 1 at a time */
    box-sizing: border-box;
    padding: 0.5rem;
    opacity: 0;
    transform: scale(0.96) translateY(40px);
    transition: 
        opacity 0.7s cubic-bezier(.4,0,.2,1),
        transform 0.7s cubic-bezier(.4,0,.2,1);
}
.gallery-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.gallery-slide img {
    width: 100%;
    height: 340px;         /* bigger images */
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(176,142,107,0.10);
    transition: transform 0.4s, box-shadow 0.3s;
}

.gallery-slide img:hover {
    transform: scale(1.06) rotate(-1deg);
    box-shadow: 0 8px 32px rgba(176,142,107,0.18);
}

.gallery-arrow {
    background: linear-gradient(135deg, #f7d9c4 0%, #b08e6b 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.7rem;
    cursor: pointer;
    z-index: 10;
    opacity: 0.92;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, opacity 0.2s, transform 0.2s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.gallery-arrow.left { left: 10px; }
.gallery-arrow.right { right: 10px; }
.gallery-arrow:hover {
    background: linear-gradient(135deg, #b08e6b 0%, #f7d9c4 100%);
    opacity: 1;
    transform: scale(1.12) translateY(-50%);
}

.branches-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem auto;
}
.branch-details-card {
    background: rgba(255,255,255,0.85);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(176,142,107,0.10);
    padding: 2rem 1.5rem;
}
.branch-details {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
}
.branch-details span {
    font-size: 1.3rem;
    min-width: 2em;
}
/* Gallery slider visibility */
.gallery-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(.77,0,.18,1);
    will-change: transform;
}

.gallery-slide {
    min-width: 50%; /* Show 2 images at a time */
    box-sizing: border-box;
    padding: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: 
        opacity 0.7s cubic-bezier(.4,0,.2,1),
        transform 0.7s cubic-bezier(.4,0,.2,1);
}

.gallery-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}