 /* Basic Reset */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Roboto', sans-serif;
     background-color: #fff;
 }

 .header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     background: #341500;
     /* background: #532200; */
     /* background: #0b241a; */
     padding: 10px 20px;
     z-index: 1000;
     flex-wrap: wrap;
     position: sticky;
     top: 0;
     /* Bottom shadow */
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
 }

 .logo-group {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .logo {
     height: 70px;
 }

 .logo-food {
     height: 50px;
 }

 .nav {
     display: flex;
     align-items: center;
 }

 .nav-links {
     list-style: none;
     display: flex;
     gap: 20px;
 }

 .nav-links li a {
     color: #d4a648;
     text-decoration: none;
     font-weight: bold;
 }

 #book-btn {
     background: #532200;
     color: #d4a648;
     padding: 10px 15px;
     border-radius: 8px;
     font-weight: bold;

 }


 #book-btn:hover {
     background: #532200;
     color: #fff;

 }

 .nav-links li a:hover {
     color: #fff;

 }


 .hamburger {
     display: none;
     font-size: 24px;
     color: #d4a648;
     cursor: pointer;
 }

 /* Responsive for <=768px */
 @media (max-width: 768px) {
     .nav-links {
         display: none;
         flex-direction: column;
         background: #341500;
         position: absolute;
         top: 90px;
         right: 1px;
         width: 100%;
         padding: 15px;
         border-radius: 10px;
         text-align: center;
         margin-bottom: 20px;
     }

     .hamburger {
         display: block;
     }

     .nav.open .nav-links {
         display: flex;
     }

     .logo-group {
         flex-direction: row;
     }
 }


/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay Text */
.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    padding: 0 20px;
    width: 100%;
}

.hero-title {
    font-size: 35px;
   font-family: 'Allura', cursive; /* Decorative script font */
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 1px 1px 6px  rgba(232, 10, 169, 2.9);
    margin-bottom: 15px;
}

.hero-main-title{
    font-size: 30px;
    font-weight: 600;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

/* Fixed Tour Date Card */
.tour-date-card {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-family: 'Segoe UI', sans-serif;
    backdrop-filter: blur(4px);
}

.calendar-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f05225;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-icon i {
    font-size: 22px;
    color: #fff;
}

.tour-info h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #b30000;
}

.tour-info p {
    margin: 2px 0 0;
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
     .hero-title {
         font-size: 28px;
     }

     .hero-main-title {

         font-size: 20px;
     }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-overlay {
        bottom: 40px;
    }

    .tour-date-card {
        top: 16px;
        left: 16px;
        padding: 10px 16px;
        border-radius: 40px;
    }

    .calendar-icon {
        width: 40px;
        height: 40px;
    }

    .calendar-icon i {
        font-size: 18px;
    }

    .tour-info h4 {
        font-size: 13px;
    }

    .tour-info p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .tour-date-card {
        flex-direction: column;
        align-items: flex-start;
    }
}










 .intro {
     background-color: #fff;
     padding: 40px;
     text-align: center;
 }

 .intro h2 {
     font-size: 30px;
     color: #2c3e50;
 }

 .intro p {
     font-size: 18px;
     color: #555;
     max-width: 100%;
     margin: auto;
     line-height: 1.5;
 }


 .why-choose {
     background-color: #532200;
     /* background-color: #003b2f; */
     padding: 40px;
     text-align: center;
 }

 .why-choose h2 {
     font-size: 30px;
     color: #fff;
 }

 .why-choose p {
     font-size: 18px;
     color: #fff;
     max-width: 100%;
     margin: auto;
     line-height: 1.5;
     margin-top: 20px;
     margin-bottom: 20px;

 }








 .ingredients-section {
     padding: 60px 20px;
     background-color: #532200;
     /* background-color: #094231; */
     text-align: center;
 }

 .ingredients-section h2 {
     font-size: 34px;
     color: #fff;
     margin-bottom: 40px;
 }

 .ingredients-section p {
     max-width: 900px;
     margin: 0 auto 40px auto;
     font-size: 17px;
     line-height: 1.8;
     color: #e0f0e6;
     font-weight: 300;
     text-align: center;
 }

 .grid-container {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     max-width: 1500px;
     margin: 0 auto;
     padding: 0 10px;
 }

 .ingredient-card {
     background-color: #fff;
     border-radius: 16px;
     padding: 20px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .ingredient-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
 }

 .ingredient-card img {
     width: 100%;
     height: 250px;
     object-fit: cover;
     margin-bottom: 16px;
     border-radius: 12px;
 }

 .ingredient-card h3 {
     font-size: 20px;
     color: #b5381e;
     margin-bottom: 6px;
 }

 .ingredient-card h5 {
     font-size: 16px;
     color: #555;
     margin: 6px 0 12px;
 }

 .ingredient-card p {
     font-size: 16px;
     color: #444;
     line-height: 1.5;
 }

 @media (max-width: 1024px) {
     .grid-container {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 600px) {
     .grid-container {
         grid-template-columns: 1fr;
     }

     .ingredients-section h2 {
         font-size: 26px;
     }

     .ingredient-card img {
         height: 150px;
     }

     .ingredient-card h3 {
         font-size: 18px;
     }

     .ingredient-card p {
         font-size: 15px;
     }
 }


 .highlights-section {
     background-color: #EFCFA0;
     /* background-color: #fff8f2; */
     padding: 60px 20px;
     font-family: 'Segoe UI', sans-serif;
     text-align: center;
 }

 .highlights-section h2 {
     font-size: 32px;
     color: #a03824;
     margin-bottom: 40px;
 }

 .highlights-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 24px;
     max-width: 1200px;
     margin: 0 auto;
 }

 .highlight-card {
     background-color: #fff;
     border-radius: 12px;
     padding: 24px;
     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
     transition: transform 0.3s ease;
 }

 .highlight-card:hover {
     transform: translateY(-5px);
 }

 .highlight-card i {
     font-size: 36px;
     color: #b03e21;
     margin-bottom: 14px;
 }

 .highlight-card h3 {
     font-size: 18px;
     margin-bottom: 10px;
     color: #333;
 }

 .highlight-card p {
     font-size: 15px;
     color: #555;
     line-height: 1.6;
     text-align: justify;
     word-spacing: 1px;
     margin: 0;
 }

 /* Responsive */
 @media (max-width: 480px) {
     .highlights-section h2 {
         font-size: 24px;
     }

     .highlight-card i {
         font-size: 30px;
     }

     .highlight-card h3 {
         font-size: 16px;
     }
 }



 /* Faq section  */
 .faq-section {
     /* background-color: #f9f9f9; */
     padding: 60px 20px;
     max-width: 1000px;
     margin: 0 auto;
     font-family: 'Roboto', sans-serif;
 }

 .faq-section h2 {
     text-align: center;
     font-size: 34px;
     margin-bottom: 40px;
     color: #094231;
 }

 .faq-item {
     border-bottom: 1px solid #ddd;
     margin-bottom: 20px;
 }

 .faq-question {
     background: none;
     border: none;
     width: 100%;
     text-align: left;
     padding: 16px;
     font-size: 18px;
     font-weight: 600;
     color: #b5381e;
     cursor: pointer;
     position: relative;
 }

 .faq-question::after {
     content: "+";
     position: absolute;
     right: 20px;
     font-size: 20px;
     color: #555;
     transition: transform 0.3s ease;
 }

 .faq-question.active::after {
     content: "-";
 }

 .faq-answer {
     padding: 0 16px 16px;
     font-size: 16px;
     color: #444;
     line-height: 1.6;
     display: none;
 }


 /* Modal Overlay */
 .modal-overlay {
     display: none;
     position: fixed;
     z-index: 1000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.6);
     justify-content: center;
     align-items: center;
     transition: opacity 0.3s ease;
 }

 /* Modal Content Box */
 .modal-content {
     background-color: #fff;
     padding: 30px;
     border-radius: 12px;
     max-width: 500px;
     width: 90%;
     position: relative;
     animation: slideIn 0.4s ease;
 }

 @keyframes slideIn {
     from {
         transform: translateY(-50px);
         opacity: 0;
     }

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }





 /* Modal Overlay */
 .head-modal-overlay {
     display: none;
     position: fixed;
     z-index: 1000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.6);
     justify-content: center;
     align-items: center;
     transition: opacity 0.3s ease;
 }

 /* Modal Content Box */
 .headecontactModal {
     background-color: #fff;
     padding: 30px;
     border-radius: 12px;
     max-width: 500px;
     width: 90%;
     position: relative;
     animation: slideIn 0.4s ease;
 }

 @keyframes slideIn {
     from {
         transform: translateY(-50px);
         opacity: 0;
     }

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }

 /* Close Button */
 .head-close-modal {
     position: absolute;
     top: 15px;
     right: 20px;
     font-size: 26px;
     color: #888;
     cursor: pointer;
 }





 .open-modal-btn {
     background-color: #094231;
     color: #fff;
     border: none;
     padding: 14px 24px;
     border-radius: 8px;
     font-size: 18px;
     cursor: pointer;
     margin: 20px 0;
     transition: background 0.3s ease;
 }

 .open-modal-btn:hover {
     background-color: #06301f;
 }






 /* Close Button */
 .close-modal {
     position: absolute;
     top: 15px;
     right: 20px;
     font-size: 26px;
     color: #888;
     cursor: pointer;
 }

 /* CTA Form Styling */
 .cta-form {
     display: flex;
     flex-direction: column;
     gap: 15px;
     margin-top: 10px;
 }

 .cta-form input,
 .cta-form textarea {
     padding: 10px 12px;
     border-radius: 8px;
     border: 1px solid #ccc;
     font-size: 16px;
 }

 .cta-form button {
     background-color: #b5381e;
     color: white;
     padding: 12px;
     border: none;
     border-radius: 8px;
     cursor: pointer;
     font-weight: bold;
     font-size: 16px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .cta-form button:hover {
     background-color: #942c15;
 }

 /* CTA Section */
 /* .cta-banner {
     text-align: center;
     background-color: #EFCFA0;
    
     padding: 20px 40px;
 }

  .cta-banner p{
 
    
 }

 .open-modal-btn {
     background-color: #532200;
  
     color: #fff;
     border: none;
     padding: 14px 24px;
     border-radius: 8px;
     font-size: 18px;
     cursor: pointer;
     margin: 20px 0;
     transition: background 0.3s ease;
 }

 .open-modal-btn:hover {
     background-color: #06301f;
 }
 */




 /* Explore Yoga Tour Section */
 .explore-yoga-tour {
     background-color: #fff;
     padding: 60px 20px;
     font-family: 'Segoe UI', sans-serif;
     color: #3d2b1f;
 }

 .explore-yoga-tour .container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .content-wrapper {
     display: flex;
     align-items: flex-start;
     gap: 40px;
     flex-wrap: wrap;
 }

 /* Left Column */
 .image-column {
     flex: 1 1 40%;
 }

 .image-column img {
     width: 100%;
     border-radius: 12px;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
     object-fit: cover;
 }

 /* Right Column */
 .text-column {
     flex: 1 1 55%;
 }

 .text-column h2 {
     font-size: 30px;
     color: #4a2100;
     margin-bottom: 20px;
     font-weight: 700;
 }

 .intro-text,
 .conclusion-text {
     font-size: 17px;
     line-height: 1.7;
     text-align: justify;
     margin-bottom: 20px;
 }

 .yoga-benefits-list {
     list-style: none;
     padding: 0;
     margin-bottom: 20px;
 }

 .yoga-benefits-list li {
     font-size: 16px;
     margin-bottom: 12px;
     display: flex;
     align-items: center;
 }

 .yoga-benefits-list i {
     color: #a03824;
     margin-right: 10px;
     font-size: 18px;
 }

 /* Responsive Design */
 @media (max-width: 991px) {
     .content-wrapper {
         flex-direction: column;
     }

     .text-column h2 {
         font-size: 26px;
     }

     .intro-text,
     .conclusion-text {
         font-size: 16px;
     }

     .yoga-benefits-list li {
         font-size: 15px;
     }
 }







 /* Modern Yoga Tour Highlights Section */
 /* Extension Label */
 .extension-label {
     font-size: 20px;
     font-weight: bold;
     /* text-transform: uppercase; */
     color: #a75826;
     margin-bottom: 8px;
 }

 /* Section Styling */
 .yoga-tour-modern {
     background: #f9e8d2;
     padding: 80px 20px;
     font-family: 'Segoe UI', sans-serif;
     color: #3b2e1f;
     text-align: center;
 }

 .yoga-tour-modern .container {
     max-width: 1200px;
     margin: 0 auto;
 }

 /* Heading & Subtext */
 .section-title {
     font-size: 32px;
     color: #59320c;
     font-weight: 700;
     margin-bottom: 12px;
     line-height: 1.3;
 }

 .section-title small {
     display: block;
     font-size: 18px;
     font-weight: 400;
     margin-top: 5px;
 }

 .section-subtext {
     font-size: 18px;
     margin-bottom: 40px;
     color: #5a4835;
 }

 /* Cards Flex Container */
 .yoga-cards-flex {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 24px;
     margin-bottom: 40px;
 }

 /* Single Card */
 .yoga-card {
     background-color: #fff;
     padding: 30px 20px;
     border-radius: 14px;
     box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease;
     flex: 1 1 220px;
     max-width: 240px;
     text-align: center;
 }

 .yoga-card:hover {
     transform: translateY(-6px);
 }

 .yoga-card i {
     font-size: 36px;
     color: #ba6b2d;
     margin-bottom: 15px;
 }

 .yoga-card h3 {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 10px;
 }

 .yoga-card p {
     font-size: 15px;
     color: #4f3a2d;
     line-height: 1.6;
 }

 /* CTA Button */
 .cta-button {
     display: inline-block;
     padding: 14px 30px;
     background-color: #a75826;
     color: white;
     text-decoration: none;
     border-radius: 8px;
     font-weight: bold;
     transition: background 0.3s;
 }

 .cta-button:hover {
     background-color: #843d14;
 }

 /* Responsive Adjustments */
 @media (max-width: 768px) {
     .yoga-cards-flex {
         flex-direction: column;
         align-items: center;
     }
 }










 /* CTA Button */
 .cta-button {
     display: inline-block;
     background-color: #a75b2b;
     color: #fff;
     padding: 14px 28px;
     border-radius: 8px;
     text-decoration: none;
     font-size: 16px;
     transition: background-color 0.3s ease;
 }

 .cta-button:hover {
     background-color: #843f1f;
 }

 /* Responsive Text Adjustments */
 @media (max-width: 480px) {
     .section-title {
         font-size: 24px;
     }

     .section-subtext {
         font-size: 16px;
     }

     .yoga-card h3 {
         font-size: 16px;
     }

     .yoga-card p {
         font-size: 14px;
     }

     .cta-button {
         width: 100%;
         font-size: 15px;
     }
 }





 /* CTA Section */
 .cta-banner {
     background-color: #fff;
     padding: 50px 20px;
     text-align: center;
     font-family: 'Segoe UI', sans-serif;
     color: #2b1700;
 }

 .cta-container {
     max-width: 800px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .cta-banner h2 {
     font-size: 32px;
     color: #4a2100;
     margin-bottom: 20px;
     font-weight: 700;
 }

 .cta-subtext {
     font-size: 18px;
     color: #3d2b1f;
     line-height: 1.7;
     margin-bottom: 30px;
 }

 .open-modal-btn {
     background-color: #532200;
     color: #fff;
     border: none;
     padding: 14px 28px;
     border-radius: 10px;
     font-size: 18px;
     font-weight: 600;
     cursor: pointer;
     transition: background 0.3s ease;
     box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
 }

 .open-modal-btn i {
     margin-right: 8px;
 }

 .open-modal-btn:hover {
     background-color: #341500;
 }

 .cta-contact {
     margin-top: 25px;
     font-size: 16px;
     color: #3d2b1f;
 }

 .cta-contact p {
     margin: 8px 0;
 }

 .cta-contact i {
     color: #532200;
     margin-right: 6px;
 }

 .cta-contact a {
     color: #3d2b1f;
     text-decoration: none;
     font-weight: 500;
 }

 .cta-contact a:hover {
     text-decoration: underline;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .cta-banner h2 {
         font-size: 26px;
     }

     .cta-subtext {
         font-size: 16px;
     }

     .open-modal-btn {
         font-size: 16px;
         padding: 12px 20px;
     }

     .cta-contact {
         font-size: 15px;
     }
 }

 @media (max-width: 480px) {
     .cta-banner {
         padding: 40px 10px;
     }

     .open-modal-btn {
         width: 100%;
     }
 }






 .footer-container {
     background-color: #341500;
     /* background-color: #532200; */
     /* background-color: #003b2f; */
     color: #fff;
     padding: 50px 20px 30px;
     font-family: 'Roboto', sans-serif;
 }

 .footer-wrapper {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     gap: 40px;
 }

 .footer-section {
     flex: 1 1 220px;
     min-width: 220px;
 }

 .footer-section h3 {
     font-size: 18px;
     margin-bottom: 15px;
     color: #ffd700;
 }

 .footer-section p,
 .footer-section a {
     font-size: 15px;
     color: #ccc;
     text-decoration: none;
     line-height: 1.8;
     display: block;
 }

 .footer-section p i {
     margin-right: 8px;
     vertical-align: middle;
     font-size: 16px;
     color: #fff;
 }

 .footer-section p a {
     display: inline-block;
     vertical-align: middle;
     color: #ccc;
     text-decoration: none;
     transition: color 0.3s;
 }

 .footer-section p a:hover,
 .footer-section a:hover {
     color: #fff;
 }

 .footer-social {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     gap: 10px;
 }

 .footer-social h3 {
     margin-bottom: 5px;
 }

 .footer-social .social-icons {
     display: flex;
     flex-direction: row;
     gap: 20px;
     align-items: center;
 }

 .footer-social .social-icons a {
     font-size: 24px;
     color: #ccc;
     transition: color 0.3s;
 }

 .footer-social .social-icons a:hover {
     color: #ffd700;
 }

 /* Footer bottom bar */
 .footer-bottom {
     text-align: center;
     padding-top: 20px;
     margin-top: 30px;
     border-top: 1px solid #444;
     font-size: 14px;
     color: #bbb;
 }

 /* Responsive: Tablet and Below */
 @media (max-width: 992px) {
     .footer-wrapper {
         gap: 30px;
         justify-content: center;
     }

     .footer-section {
         flex: 1 1 45%;
         text-align: center;
     }

     .footer-social {
         align-items: center;
     }

     .footer-social .social-icons {
         justify-content: center;
     }
 }

 /* Responsive: Mobile */
 @media (max-width: 600px) {
     .footer-wrapper {
         flex-direction: column;
         align-items: center;
         text-align: center;
     }

     .footer-section {
         flex: 1 1 100%;
         margin-bottom: 30px;
     }

     .footer-social {
         align-items: center;
     }

     .footer-social .social-icons {
         justify-content: center;
     }

     .footer-social .social-icons a {
         margin: 0 10px;
     }
 }


 .floating-icons {
     position: fixed;
     right: 15px;
     bottom: 20px;
     display: flex;
     flex-direction: column;
     gap: 12px;
     z-index: 9999;
     padding: 0;
     margin: 0;
 }

 .floating-icons a {
     background-color: #532200;
     /* background-color: #0b241a; */
     color: white;
     font-size: 20px;
     width: 45px;
     height: 45px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
     text-decoration: none;
     transition: transform 0.2s ease;
 }

 .floating-icons a:hover {
     transform: scale(1.1);
     color: #fff;
     background-color: #25D366;
     /* WhatsApp green */
 }

 .floating-icons a:nth-child(2):hover {
     background-color: #ea4335;
     /* Gmail red */
 }

 .floating-icons a:nth-child(3):hover {
     background-color: #e4405f;
     /* Instagram pink */
 }



 /* Nebal Tour  */

 .nebal-ingredients-section {
     padding: 60px 20px;
     background-color: #532200;
     text-align: center;
     font-family: 'Segoe UI', sans-serif;
 }

 .nebal-ingredients-section h2 {
     font-size: 34px;
     color: #fff;
     margin-bottom: 40px;
 }

 .nebal-grid-container {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 10px;
 }

 .nebal-ingredient-card {
     background-color: #fff;
     border-radius: 16px;
     padding: 20px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     text-align: left;
 }

 .nebal-ingredient-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
 }

 .nebal-ingredient-card img {
     width: 100%;
     height: 200px;
     object-fit: cover;
     margin-bottom: 16px;
     border-radius: 12px;
 }

 .nebal-ingredient-card h3 {
     font-size: 20px;
     color: #b5381e;
     margin-bottom: 6px;
 }

 .nebal-ingredient-card h5 {
     font-size: 16px;
     color: #555;
     margin-bottom: 10px;
 }

 .nebal-ingredient-card p {
     font-size: 15px;
     color: #444;
     line-height: 1.6;
 }

 /* Responsive adjustments */
 @media (max-width: 1024px) {
     .nebal-grid-container {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 600px) {
     .nebal-grid-container {
         grid-template-columns: 1fr;
     }

     .nebal-ingredients-section h2 {
         font-size: 26px;
     }

     .nebal-ingredient-card img {
         height: 150px;
     }

     .nebal-ingredient-card h3 {
         font-size: 18px;
     }

     .nebal-ingredient-card p {
         font-size: 14px;
     }
 }




 .testimonial-section {
     padding: 80px 20px;
     text-align: center;
     max-width: 1200px;
     margin: auto;
 }

 .testimonial-section h2 {
     font-size: 36px;
     margin-bottom: 50px;
 }

 .testimonial-section h2 span {
     color: #e46b17;
     font-weight: 600;
 }

 .slider-container {
     position: relative;
     overflow: hidden;
 }

 .testimonial-cards {
     display: flex;
     transition: transform 0.5s ease-in-out;
 }

 .testimonial-card {
     background-color: #fff;
     border-radius: 10px;
     box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
     flex: 0 0 calc(33.333% - 20px);
     margin: 10px;
     padding: 30px;
     box-sizing: border-box;
     transition: transform 0.3s ease;
 }

 .testimonial-card:hover {
     transform: translateY(-5px);
 }

 .testimonial-card img {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     object-fit: cover;
     margin-bottom: 20px;
 }

 .testimonial-card h3 {
     font-size: 18px;
     margin-bottom: 15px;
     color: #0a3b34;
 }

 .testimonial-card p {
     font-size: 15px;
     color: #444;
     margin-bottom: 20px;
     line-height: 1.6;
 }

 .stars {
     color: #f9b911;
     font-size: 18px;
 }

 .arrow-controls {
     margin-top: 30px;
 }

 .arrow-btn {
     display: inline-block;
     background: transparent;
     border: 1px solid #e2e2e2;
     border-radius: 50%;
     width: 40px;
     height: 40px;
     line-height: 38px;
     font-size: 18px;
     color: #e46b17;
     cursor: pointer;
     margin: 0 10px;
 }

 @media (max-width: 1024px) {
     .testimonial-card {
         flex: 0 0 calc(50% - 20px);
     }
 }

 @media (max-width: 768px) {
     .testimonial-card {
         flex: 0 0 100%;
     }

     .testimonial-section h2 {
         font-size: 28px;
     }

     .testimonial-card p {
         font-size: 14px;
     }
 }
 @media (max-width: 480px) {
     .testimonial-card {
         padding: 20px;
     }

     .testimonial-card h3 {
         font-size: 16px;
     }

     .testimonial-card img {
         width: 64px;
         height: 64px;
     }
 }