        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
                .modal {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1060;
            display: none;
            width: 100%;
            height: 100%;
            overflow-x: hidden;
            overflow-y: auto;
            outline: 0;
        }
        .container-slideshow {
    
            /* max-width: 1200px; */
            width: 100%;
            /* padding: 8px; */
            text-align: center;
        }
        
        .slideshow-container {
            position: relative;
            overflow: hidden;
            width: 100%;
            /* border-radius: 12px; */
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .slides-wrapper {
            display: flex;
            transition: transform 1.3s ease;
        }

        .mySlides {
            min-width: 100%;
            box-sizing: border-box;
            position: relative;
        }
        .mySlides {
  position: relative;
  display: inline-block;
}

.mySlides::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Adjust opacity as needed */
  pointer-events: none; /* Allows clicks to pass through */
}

        /* Aspect ratio box for responsive images */
        .aspect-ratio-box {
            position: relative;
            width: 100%;
            padding-top: 34.25%; /* 16:9 Aspect Ratio */
            overflow: hidden;
        }
        
        .aspect-ratio-box img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            /*filter: blur(4px);*/
        }

        /* Text overlay styling */
        .slide-content {
            position: absolute;
            bottom: 34%;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: white;
            width: 80%;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            z-index: 10;
        }
        /* Alternative approach using media queries */
@media (max-width: 1200px) {
    .slide-content {
        bottom: 27%;
    }
            .slide-title{
        font-size: 38px !important;
    }
}
@media (max-width: 1018px) {
    .slide-content {
        bottom: 15%;
    }
}
@media (max-width:925px) {
    .slide-content {
        bottom: 15%;
    }
     .slide-title{
        font-size: 30px !important;
    }
}
@media (max-width: 890px) {
    .slide-content {
        bottom: 10%;
    }
    .slide-title{
        font-size: 30px !important;
    }
}
@media (max-width: 768px) {
    .slide-content {
        bottom: 10%;
    }
        .slide-title{
        font-size: 23px !important;
    }
}
@media (max-width: 623px) {
    .slide-content {
        bottom: 10%;
    }
        .slide-title{
        font-size: 23px !important;
    }
    .slide-description{
        display: none;
    }
}
@media (max-width: 480px) {
    .slide-content {
        bottom: 20%;
        width: 90%; /* Also adjust width on small screens */
    }

}
        .slide-title,
.slide-description,
.slide-button {
  animation-play-state: paused; /* Start paused */
}

.slide-title {
  animation: fadeIn 1s forwards 0.2s;
}

.slide-description {
  animation: fadeIn 1s forwards 0.3s;
}

.slide-button {
  animation: fadeIn 1s forwards 0.5s;
}
        .slide-title {
            font-size: 45px;
            font-weight: 700;
            margin-bottom: 15px;
            opacity: 0;
        }
        
        .slide-description {
            font-size: 1.2rem;
            margin-bottom: 25px;
            opacity: 0;
           
        }
  
        .slide-button {
            background-color: #ffcc00;
            color: #2c5c1f;
            border: none;
            padding: 9px 18px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            white-space: nowrap;
             opacity: 0;
           
        }
        
        .slide-button:hover {
            background-color: #ffd633;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        /* Arrow buttons */
        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 51%;
            transform: translateY(-50%);
            width: 49px;
            height: 49px;
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            font-size: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 100;
            border: none;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
        }

        .prev {
            left: 12px;
        }

        .next {
            right: 12px;
        }

        .prev:hover, .next:hover {
            background-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        /* Dots indicator */
        .dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            width: 100%;
            z-index: 100;
        }

        .dot {
            cursor: pointer;
            height: 9px;
            width: 9px;
            margin: 0 3px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.4s ease, transform 0.3s ease;
        }

        .active-home, .dot:hover {
            background-color: white;
            transform: scale(1.3);
        }

        /* Animation for text */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive adjustments */
        @media(max-width: 768px) {
            .slide-title {
                font-size: 2rem;
            }
            
            .slide-description {
                font-size: 1rem;
            }
            
            .prev, .next {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }


        .modal-dialog {
            position: relative;
            width: auto;
            margin: 0.5rem;
            pointer-events: none;
        }
        
        .modal.fade .modal-dialog {
            transition: transform 0.1s ease-out;
            transform: translate(0, -50px);
        }
        
        .modal.show .modal-dialog {
            transform: none;
        }
        
        .modal-content {
            position: relative;
            display: flex;
            flex-direction: column;
            width: 100%;
            pointer-events: auto;
            background-color: #fff;
            background-clip: padding-box;
            border: 1px solid rgba(0,0,0,0.2);
            border-radius: 0.5rem;
            outline: 0;
        }
        
        .modal-body {
            position: relative;
            flex: 1 1 auto;
            padding: 1rem;
        }
        
        .modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1040;
            width: 100vw;
            height: 100vh;
            background-color: #000;
        }
        
        .modal-backdrop.fade {
            opacity: 0;
        }
        
        .modal-backdrop.show {
            opacity: 0.5;
        }
        
        .btn-bootstrap {
            display: inline-block;
            font-weight: 400;
            line-height: 1.5;
            color: #212529;
            text-align: center;
            text-decoration: none;
            vertical-align: middle;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
            background-color: transparent;
            border: 1px solid transparent;
            padding: 0.375rem 0.75rem;
            font-size: 1rem;
            border-radius: 0.25rem;
            transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        }
        .btn-warning {
            color: #000;
            background-color: #ffc107;
            border-color: #ffc107;
        }
        
        .btn-warning:hover {
            color: #000;
            background-color: #ffca2c;
            border-color: #ffc720;
        }

        
        .modal-dialog-centered {
            display: flex;
            align-items: center;
            min-height: calc(100% - 1rem);
        }
        
        @media (min-width: 576px) {
            .modal-dialog {
                max-width: 500px;
                margin: 1.75rem auto;
            }
        }
        
        .fade {
            transition: opacity 0.15s linear;
        }
        
        .modal.fade .modal-dialog {
            transition: transform 0.3s ease-out, opacity 0.3s ease-out;
            opacity: 0;
        }
        
        .modal.show .modal-dialog {
            opacity: 1;
        }

        .sub-content {
            display: grid;
            grid-template-columns: 40px 1fr 90px;
            height: 44px;
            
            align-items: center;
            padding-left: 10px;
            font-size: 15px;
            border-bottom: 1px solid grey;
            border-top: 1px solid grey;
            margin-top: -1px;
        }
        .modal-header{
            padding: 8px 9px;
            margin: 0px 16px;
            border-color: grey;
        }

        /* Sections */
        .section {
            padding: 60px 25px;
        }
        
        .section-title {
            text-align: center;
            color: #2c5c1f;
            margin-bottom: 40px;
            font-size: 32px;
            font-weight: 700;
        }
        
        .section-subtitle {
            text-align: center;
            color: #666;
            max-width: 700px;
            margin: 0 auto 50px;
            font-size: 1.1rem;
        }
        
        /* Ayurveda Categories Section */
        .categories-section {
            background-color: #fff;
            padding: 42px 0;
        }
        
        .categories-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .category-button {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 175px;
            padding: 8px 12px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            text-decoration: none;
            color: #333;
            transition: all 0.1s ease;
            opacity: 0;
            transform: translateY(30px);
            -webkit-tap-highlight-color: transparent;
        }
        
        .category-button.scroll-animate {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.2s ease, transform 0.2s ease;
        }
        
        .category-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .category-icon {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            background: #f0f7eb;
            color: #2c5c1f;
            font-size: 24px;
        }
        .container-directory{
            display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap:31px
        }
        .category-button h3 {
            color: #2c5c1f;
            font-size: 17px;
            font-weight: 600;
            text-align: center;
        }
        
        /* Features */
        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin: 40px 0;
        }
        
        .feature {
            background: white;
            border-radius: 10px;
            padding: 30px;
            width: 300px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 1s ease;
        }
        
        .feature:hover {
            transform: translateY(-10px);
        }
        
        .feature i {
            font-size: 3rem;
            color: #2c5c1f;
            margin-bottom: 20px;
        }
        
        .feature h3 {
            color: #2c5c1f;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        /* Business Directory */
        .directory {
            background: linear-gradient(135deg, #2c5c1f 0%, #3a7c29 100%);
            color: white;
        }
        
        .directory .section-title {
            color: white;
        }
        
        .business-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .business-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 25px;
            backdrop-filter: blur(10px);
            transition: transform 0.1s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .business-card.scroll-animate {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .business-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .business-card h3 {
            margin-bottom: 15px;
            font-size: 1.4rem;
            color: #ffcc00;
        }
        
        /* Tourism */
        .tourism-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .tourism-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .tourism-card.scroll-animate {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .tourism-img {
            height: 200px;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }
        
        .tourism-card:hover .tourism-img {
            transform: scale(1.05);
        }
        
        .tourism-content {
            padding: 20px;
        }
        
        .tourism-content h3 {
            color: #2c5c1f;
            margin-bottom: 10px;
            font-size: 1.4rem;
        }
        
 .footer {
            background: #1a3f14;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.1s ease;
        }
        
        .footer-links a:hover {
            color: #ffcc00;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.1s ease;
        }
        
        .social-links a:hover {
            background: #ffcc00;
            color: #2c5c1f;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }


        
        .business-card:nth-child(1) { transition-delay: 0.1s; }
        .business-card:nth-child(2) { transition-delay: 0.2s; }
        .business-card:nth-child(3) { transition-delay: 0.3s; }
        
        .tourism-card:nth-child(1) { transition-delay: 0.05s; }
        .tourism-card:nth-child(2) { transition-delay: 0.2s; }
        .tourism-card:nth-child(3) { transition-delay: 0.4s; }
            @media(max-width: 425px) {
            .categories-container{
                 gap:23px
            }
            .category-button{
                width: 153px;
                padding: 9px 9px;
            }.category-button h3 {
                font-size: 16px;

}
            }
                   @media(max-width: 570px) {
                .container-directory{
                        display: flex;
                        flex-direction: column;
                        justify-content: space-evenly;
                        align-items: center;
                        gap:31px
                }.section-title{
                    margin-bottom: 26px;
                }
                .business-grid{
                    margin-top: 16px;
                }
            }

               @media(max-width: 450px){
            .aspect-ratio-box {
                /*padding-top: 119.25%;*/
                aspect-ratio:508 / 443;
            }
.category-button h3 {
    color:#224419;

}
            .slides-wrapper {
                transition: transform 1s ease;
            }

    
     .mainTitle{
                  font-size: 24px; 
        width: 50%;
        color: #224419;
         
     }
            .slide-content {
                bottom: 32%;
                width: 90%;
            }
            .slide-title {
    font-size: 1.5rem;
    margin-bottom: 50px;
   
}

            
            .slide-description {
                 display: none;
                font-size: 0.9rem;
                margin-bottom:38px;
            }
            
            .slide-button {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .prev, .next {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            
            .dot {
                height: 8px;
        width: 8px;
            }
        }
