 /* 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;
     }

     .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 Box */
 .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: 36px;
     font-weight: bold;
     text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
     margin-bottom: 15px;
 }

 .hero-subtitle {
     font-size: 18px;
     line-height: 1.6;
     font-weight: 300;
     text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
 }

 /* Responsive Adjustments */
 @media (max-width: 768px) {
     .hero-title {
         font-size: 26px;
     }

     .hero-subtitle {
         font-size: 16px;
     }

     .hero-overlay {
         bottom: 40px;
     }
 }

 @media (max-width: 480px) {
     .hero-title {
         font-size: 22px;
     }

     .hero-subtitle {
         font-size: 15px;
     }
 }


 .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;
     }
 }



 .why-choose-meditation {
     background-color: #fff;
     padding: 60px 20px;
     font-family: 'Segoe UI', sans-serif;
     color: #3d2b1f;
 }

 .meditation-grid {
     display: flex;
     gap: 40px;
     max-width: 1200px;
     margin: 0 auto;
     align-items: center;
     flex-wrap: wrap;
 }

 /* Left Image */
 .meditation-image {
     flex: 1 1 45%;
 }

 .meditation-image img {
     width: 100%;
     height: auto;
     /* border-radius: 12px; */
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
 }

 /* Right Content */
 .meditation-content {
     flex: 1 1 50%;
 }

 .meditation-content h2 {
     font-size: 32px;
     color: #a03824;
     margin-bottom: 20px;
 }

 .meditation-content .intro-text,
 .meditation-content .closing-text {
     font-size: 17px;
     line-height: 1.8;
     color: #444;
     margin-bottom: 30px;
     text-align: justify;
 }

 .benefit-list {
     list-style: none;
     padding: 0;
     margin: 0 0 40px;
 }

 .benefit-list li {
     font-size: 16px;
     color: #333;
     margin-bottom: 16px;
     display: flex;
     align-items: center;
 }

 .benefit-list i {
     color: #a75826;
     font-size: 20px;
     margin-right: 12px;
     min-width: 24px;
 }

 /* Responsive Adjustments */
 @media (max-width: 992px) {
     .meditation-grid {
         flex-direction: column;
     }

     .meditation-content h2 {
         font-size: 26px;
         text-align: center;
     }

     .meditation-content {
         text-align: center;
     }

     .benefit-list {
         text-align: left;
         margin: 20px auto;
     }
 }






 .highlights-section {
     background-color: #EFCFA0;
     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(3, 1fr);
     /* 3 per row on desktop */
     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;
 }

 /* Tablet: 2 cards per row */
 @media (max-width: 992px) {
     .highlights-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 /* Mobile: 1 card per row */
 @media (max-width: 600px) {
     .highlights-grid {
         grid-template-columns: 1fr;
     }

     .highlights-section h2 {
         font-size: 24px;
     }

     .highlight-card i {
         font-size: 30px;
     }

     .highlight-card h3 {
         font-size: 16px;
     }
 }





 .buddhist-sites {
     background-color: #fdf5ef;
     padding: 60px 20px;
     font-family: 'Segoe UI', sans-serif;
     color: #3d2b1f;
 }

 .buddhist-grid {
     display: flex;
     gap: 40px;
     max-width: 1200px;
     margin: 0 auto;
     align-items: center;
     flex-wrap: wrap;
 }

 /* Left Image */
 .buddhist-image {
     flex: 1 1 45%;
 }

 .buddhist-image img {
     width: 100%;
     height: auto;
     border-radius: 12px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
 }

 /* Right Content */
 .buddhist-content {
     flex: 1 1 50%;
 }

 .buddhist-content h3 {
     font-size: 28px;
     color: #a03824;
     margin-bottom: 20px;
 }

 .buddhist-intro,
 .buddhist-conclusion {
     font-size: 17px;
     color: #444;
     margin-bottom: 25px;
     text-align: justify;
     line-height: 1.7;
 }

 .buddhist-list {
     list-style: none;
     padding: 0;
     margin-bottom: 30px;
 }

 .buddhist-list li {
     font-size: 16px;
     color: #333;
     margin-bottom: 16px;
     display: flex;
     align-items: flex-start;
     line-height: 1.6;
 }

 .buddhist-list i {
     color: #b85c2c;
     font-size: 18px;
     margin-right: 12px;
     min-width: 24px;
     margin-top: 3px;
 }

 /* Responsive Design */
 @media (max-width: 992px) {
     .buddhist-grid {
         flex-direction: column;
     }

     .buddhist-content h3 {
         font-size: 24px;
         text-align: center;
     }

     .buddhist-content {
         text-align: left;
     }

     .buddhist-list li {
         font-size: 15px;
     }
 }







 /* 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;
 }


 /* 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: 16px;
     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: #EFCFA0;
     /* 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(3, 1fr); /* Now 3 per row */
    gap: 30px;
    max-width: 1200px;
    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;
    }
}