 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Poppins', sans-serif;
     line-height: 1.6;
     color: var(--text-color);
     background-color: var(--light-bg);
     overflow-x: hidden;
 }

 /* Navbar Container */
  .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Navbar */
        .navbar {
            background: #0E2442;
            padding: 10px 5%;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }

        .nav-container {
            width: 1200px;
            max-width: 100%;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 45px;
        }

        /* Links */
        .nav-links {
            display: flex;
            gap: 20px;
            list-style: none;
        }

        .nav-links a {
            color: #E2E2E2;
            text-decoration: none;
            padding: 8px 12px;
            transition: color 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #fff;
        }

        /* Dropdown */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 10px;
            background: #fff;
            list-style: none;
            min-width: 200px;
            display: none;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            padding: 10px 0;
        }

        .dropdown-menu a {
            color: #333;
            display: block;
            padding: 10px 15px;
            transition: background 0.3s;
        }

        .dropdown-menu a:hover {
            background: #f0f5ff;
        }

        .dropdown:hover .dropdown-menu {
            display: block;
        }

        /* Style for dropdown toggle link */
        .dropdown-toggle {
            position: relative;
            padding-right: 20px;
            /* space for arrow */
        }

        /* Add arrow using ::after */
        .dropdown-toggle::after {
            content: "";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
            border: solid #ffffff;
            /* arrow color */
            border-width: 0 2px 2px 0;
            display: inline-block;
            padding: 4px;
            transition: transform 0.3s ease;
        }

        /* Rotate arrow up when active/open */
        .dropdown.open .dropdown-toggle::after {
            transform: translateY(-50%) rotate(-135deg);
        }

        /* Contact Btn */
        .contact-btn {
            background: linear-gradient(180deg, #007AFF, #065EBE);
            color: #fff;
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 600;
            transition: background 0.3s;
        }
        
        .contact-btn:hover {
            background: linear-gradient(180deg, #065EBE, #004e9e);
        }

        /* Mobile */
        .menu-toggle {
            display: none;
            font-size: 26px;
            color: #fff;
            cursor: pointer;
        }

        @media(max-width: 992px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                flex-direction: column;
                background: #0E2442;
                display: none;
                padding: 15px 0;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            }

            .nav-links.active {
                display: flex;
            }

            .dropdown-menu {
                position: static;
                background: #1a3658;
                display: none;
                margin-top: 5px;
                margin-left: 15px;
                width: calc(100% - 30px);
                box-shadow: none;
            }
            
            .dropdown-menu.active {
                display: block;
            }

            .dropdown-menu a {
                color: #E2E2E2;
                padding: 10px 20px;
            }
            
            .dropdown-menu a:hover {
                background: #243e63;
            }
            
            .dropdown.open .dropdown-menu {
                display: block;
            }
        }
        

 /* HERO SECTION */
 .hero {
     background-size: cover;
     background-position: center;
     padding: 5rem 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: #fff;
 }

 .hero-container {
     max-width: 900px;
     margin: 0 auto;
 }

 .hero h1 {
     font-size: clamp(2rem, 5vw, 3.5rem);
     /* scales with screen */
     font-weight: 700;
     margin-bottom: 1rem;
     line-height: 1.3;
 }

 .hero p {
     font-size: clamp(1rem, 2.5vw, 1.25rem);
     margin-bottom: 2rem;
     line-height: 1.6;
 }

 .hero-buttons {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 1rem;
 }

 .hero-btn {
     background: linear-gradient(180deg, #007AFF 0%, #065EBE 100%);
     color: #fff;
     padding: 0.75rem 1.5rem;
     border-radius: 8px;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .hero-btn:hover {
     background: #0056b3;
     color: #fff;
 }

 /* Mobile-first responsive */
 @media (max-width: 768px) {
     .hero {
         padding: 3rem 1rem;
     }

     .hero-buttons {
         flex-direction: column;
     }
 }


 /* COLLABORATION SECTION */
 .collaboration-section {
     background-color: #eaf4fd;
     padding: 4rem 1rem;
     text-align: center;
     overflow: hidden;
 }

 .collab-container {
     max-width: 1100px;
     margin: 0 auto;
 }

 .collab-container h2 {
     font-size: 2rem;
     color: #111;
     font-weight: 700;
     margin-bottom: 1rem;
     opacity: 0;
     transform: translateY(20px);
     animation: fadeInUp 0.8s ease forwards 0.2s;
 }

 .collab-container p {
     font-size: 1.1rem;
     color: #555;
     margin-bottom: 2rem;
     opacity: 0;
     transform: translateY(20px);
     animation: fadeInUp 0.8s ease forwards 0.4s;
 }

 .collab-logos {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 2rem;
     flex-wrap: wrap;
 }

 .collab-logo {
     max-height: 80px;
     background: white;
     padding: 0.5rem 1rem;
     border-radius: 8px;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
     opacity: 0;
     transform: scale(0.9);
     animation: fadeInScale 0.6s ease forwards;
 }

 .collab-logo:nth-child(1) {
     animation-delay: 0.6s;
 }

 .collab-icon {
     max-height: 60px;
     opacity: 0;
     transform: scale(0.9) rotate(-30deg);
     animation: fadeInRotate 0.8s ease forwards 0.8s;
 }

 .collab-logo:nth-child(3) {
     animation-delay: 1s;
 }

 /* Hover Effects */
 .collab-logo:hover {
     transform: scale(1.05);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
     transition: all 0.3s ease;
 }

 .collab-icon:hover {
     transform: scale(1.1) rotate(0deg);
     transition: all 0.5s ease;
 }

 /* Animations */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeInScale {
     from {
         opacity: 0;
         transform: scale(0.9);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 @keyframes fadeInRotate {
     from {
         opacity: 0;
         transform: scale(0.9) rotate(-30deg);
     }

     to {
         opacity: 1;
         transform: scale(1) rotate(0deg);
     }
 }

 /* Responsive Styles */
 @media (max-width: 600px) {
     .collab-logos {
         flex-direction: column;
         gap: 1.5rem;
     }

     .collab-logo,
     .collab-icon {
         max-width: 90%;
     }

     .collab-container h2 {
         font-size: 1.6rem;
     }

     .collab-container p {
         font-size: 1rem;
     }
 }


 /*  DEVOTE SECTION  Dharamshala Cards SectioN */
 /* Section styling */
 /* Updated CSS with animations and 3D effects */
 .stays-section {
     padding: 4rem 1rem;
     background: #fff;
     text-align: center;
 }

 .container {
     display: contents;
     max-width: 1200px;
     margin: 0 auto;
 }

 .section-title {
     font-size: 2.2rem;
     font-weight: 700;
     color: #222;
     margin-bottom: 0.5rem;
     opacity: 0;
     transform: translateY(20px);
     animation: fadeInUp 0.8s ease forwards 0.2s;
 }

 .section-subtitle {
     font-size: 1.1rem;
     color: #555;
     margin-bottom: 3rem;
     opacity: 0;
     transform: translateY(20px);
     animation: fadeInUp 0.8s ease forwards 0.4s;
 }

 /* Card grid */
 .card-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 2rem;
     justify-content: center;
 }

 /* Card with 3D effect */
 .stay-card {
     width: 357px;
     background: #fff;
     border-radius: 12px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     max-width: 444px;
     text-align: left;
     display: flex;
     flex-direction: column;
     transform-style: preserve-3d;
     transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     opacity: 0;
     transform: translateY(30px) rotateX(5deg);
     animation: cardEntrance 0.8s ease forwards;
 }

 .stay-card:nth-child(1) {
     animation-delay: 0.4s;
 }

 .stay-card:nth-child(2) {
     animation-delay: 0.6s;
 }

 .stay-card:nth-child(3) {
     animation-delay: 0.8s;
 }

 .stay-card:hover {
     transform: translateY(-10px) scale(1.02) rotateX(0);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }

 /* Image */
 .card-img {
     position: relative;
     overflow: hidden;
 }

 .card-img img {
     width: 100%;
     height: 220px;
     object-fit: cover;
     display: block;
     transition: transform 0.5s ease;
 }

 .stay-card:hover .card-img img {
     transform: scale(1.05);
 }

 .price-tag {
     position: absolute;
     top: 15px;
     right: 15px;
     background: var(--gradient-color-BTN, linear-gradient(180deg, #007AFF 0%, #065EBE 100%));
     color: white;
     padding: 8px 16px;
     border-radius: 20px;
     font-size: 0.9rem;
     font-weight: 600;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
     z-index: 1;
 }

 /* Content */
 .card-content {
     padding: 16px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .card-content h3 {
     font-size: 1.2rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
     color: #222;
 }

 .card-content p {
     font-size: 0.95rem;
     color: #555;
     margin-bottom: 1rem;
     line-height: 1.5;
 }

 .card-content i {
     margin-right: 6px;
     color: #eff0f1;
 }

 /* Amenities list */
 .amenities-list {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 12px;
     list-style: none;
     padding: 0;
     /* margin: 1rem 0; */
     margin-bottom: 10px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 12px;
     list-style: none;
     padding: 0;
     margin: 1rem 0;
 }

 .amenities-list li {
     font-size: 0.85rem;
     color: #555;
     display: flex;
     align-items: center;
 }

 .amenities-list i {
     font-size: 0.9rem;
     margin-right: 8px;
     color: #666;
 }

 /* Buttons */
 /* Button Container */
 .card-actions {
     display: flex;
     gap: 10px;
     margin-top: auto;
     padding-top: 1.2rem;
     border-top: 1px solid rgba(0, 0, 0, 0.08);
 }

 /* Primary Button - Solid Blue */
 .btn-primary {
     background: var(--gradient-color-BTN, linear-gradient(180deg, #007AFF 0%, #065EBE 100%));
     color: white;
     border: none;
     padding: 0.85rem 1.5rem;
     border-radius: 8px;
     font-size: 0.95rem;
     font-weight: 600;
     cursor: pointer;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     flex: 1;
     transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: 0 2px 6px rgba(0, 102, 255, 0.25);
     text-transform: uppercase;
     letter-spacing: 0.5px;
     min-width: 120px;
 }

 .btn-primary:hover {
     background: var(--gradient-color-BTN, linear-gradient(180deg, #007AFF 0%, #065EBE 100%));
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0, 102, 255, 0.35);
 }

 .btn-primary:active {
     transform: translateY(0);
     box-shadow: 0 2px 4px rgba(0, 102, 255, 0.25);
 }

 /* Outline Button - Blue Border */
 .btn-outline {
     background: transparent;
     color: #0066ff;
     border: 2px solid #0066ff;
     padding: 0.85rem 1.5rem;
     border-radius: 8px;
     font-size: 0.95rem;
     font-weight: 600;
     cursor: pointer;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     flex: 1;
     transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
     text-transform: uppercase;
     letter-spacing: 0.5px;
     min-width: 120px;
 }

 .btn-outline:hover {
     background: rgba(0, 102, 255, 0.08);
     border-color: #0055ee;
     color: #0055ee;
     transform: translateY(-2px);
     box-shadow: 0 2px 8px rgba(0, 102, 255, 0.15);
 }

 .btn-outline:active {
     transform: translateY(0);
     box-shadow: none;
 }

 /* Responsive Adjustments */
 @media (max-width: 480px) {
     .card-actions {
         flex-direction: column;
         gap: 8px;
     }

     .btn-primary,
     .btn-outline {
         width: 100%;
         padding: 0.75rem 1rem;
     }
 }

 /* Animations */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes cardEntrance {
     from {
         opacity: 0;
         transform: translateY(30px) rotateX(5deg);
     }

     to {
         opacity: 1;
         transform: translateY(0) rotateX(0);
     }
 }

 /* Responsive */
 @media (max-width: 768px) {
     .card-grid {
         flex-direction: column;
         align-items: center;
     }

     .stay-card {
         width: 100%;
         max-width: 400px;
     }

     .card-actions {
         flex-wrap: wrap;
     }

     .btn-primary,
     .btn-outline {
         flex: 1 1 100%;
     }
 }

 @media (max-width: 480px) {
     .section-title {
         font-size: 1.8rem;
     }

     .amenities-list {
         grid-template-columns: 1fr;
     }
 }

 /* Why Stay Here Section */
 /* Section Base */
 .why-stay-section {
     background: linear-gradient(135deg, #e8f4ff 0%, #f0f8ff 100%);
     padding: 60px 20px;
     text-align: center;
 }

 .section-title {
     font-size: 2rem;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 10px;
 }

 .section-subtitle {
     font-size: 1rem;
     color: #666;
     margin: 0 auto 40px;
     max-width: 600px;
 }

 /* Grid Layout */
 .features-grid {
     width: 100%;
     max-width: 1200px;
     /* container won’t stretch beyond 1200px */
     margin: 0 auto;
     /* centers horizontally */
     padding: 0 15px;
     /* small padding for mobile */

     display: flex;
     gap: 25px;
     flex-wrap: wrap;

 }

 /* Card */
 .feature-card {
     background: #fff;
     border-radius: 20px 20px 0 20px;
     padding: 30px 20px;
     max-width: 350px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     position: relative;
 }

 .feature-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
 }

 /* Decorative Circle */
 .feature-card::after {
     content: '';
     position: absolute;
     bottom: -8px;
     right: 0;
     width: 70px;
     height: 70px;
     background: #2196f3;
     border-radius: 50% 0 0 0;
     transform: scale(0.9);
 }

 /* Icon */
 .feature-icon {
     width: 70px;
     height: 70px;
     margin: 0 auto 20px;
     background: #e3f2fd;
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .feature-icon img {
     width: 50px;
     height: 50px;
 }

 /* Titles & Text */
 .feature-title {
     font-size: 1.2rem;
     font-weight: 600;
     margin-bottom: 10px;
     color: #1a1a1a;
 }

 .feature-description {
     color: #555;
     font-size: 0.95rem;
     line-height: 1.5;
 }

 /* Responsive Tweaks */
 @media (max-width: 768px) {
     .section-title {
         font-size: 1.6rem;
     }

     .feature-card {
         padding: 20px 15px;
     }
 }

 /* athiti section */
 .atithi-section {
     padding: 3rem 1rem;
     text-align: center;
     font-family: "Poppins", sans-serif;
 }

 .section-title {
     font-size: 1.8rem;
     margin-bottom: .5rem;
 }

 .section-subtitle {
     font-size: 1rem;
     color: #666;
     margin-bottom: 2rem;
 }

 /* Responsive Grid */
 .video-grid {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
     display: flex;
     flex-wrap: wrap;
     /* ✅ allow wrapping */
     gap: 25px;
 }

 .video-card {
     flex: 1 1 100%;
     /* mobile = full width */
 }

 @media (min-width: 768px) {
     .video-card {
         flex: 1 1 calc(50% - 25px);
         /* tablet = 2 per row */
     }
 }

 @media (min-width: 1024px) {
     .video-card {
         flex: 1 1 calc(33.333% - 25px);
         /* desktop = 3 per row */
     }
 }


 .video-card {
     background: #fff;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     transition: transform .3s;
 }

 .video-card:hover {
     transform: translateY(-5px);
 }

 .video-placeholder {
     position: relative;
 }

 .video-placeholder img {
     width: 100%;
     display: block;
 }

 .play-overlay {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     background: rgba(0, 0, 0, 0.6);
     border: none;
     border-radius: 50%;
     padding: .8rem;
     cursor: pointer;
     color: #fff;
 }

 .video-badge,
 .video-duration {
     position: absolute;
     bottom: .5rem;
     background: rgba(0, 0, 0, 0.7);
     color: #fff;
     font-size: .75rem;
     padding: 2px 6px;
     border-radius: 4px;
 }

 .video-badge {
     left: .5rem;
 }

 .video-duration {
     right: .5rem;
 }

 .video-info {
     padding: 1rem;
     text-align: left;
 }

 .video-title {
     font-size: 1rem;
     margin-bottom: .5rem;
 }

 .highlight {
     color: #18741A;
     font-weight: 600;
 }

 .video-meta {
     font-size: .85rem;
     color: #777;
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
 }

 /* Trust Indicators */
 .trust-indicators {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 2.5rem;
     margin-top: 4rem;
     flex-wrap: wrap;
 }

 .trust-item {
     display: flex;
     align-items: center;
     gap: 0.8rem;
     color: #444;
     font-weight: 600;
     font-size: 1rem;
 }

 .trust-item i {
     font-size: 1.2rem;
     color: #2196F3;
 }

 /* Responsive Design */
 @media (max-width: 992px) {
     .dharamshala-title {
         font-size: 2rem;
     }

     .video-grid {
         grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     }
 }

 @media (max-width: 768px) {
     .dharamshala-section {
         padding: 3rem 1rem;
     }

     .dharamshala-title {
         font-size: 1.8rem;
     }

     .trust-indicators {
         gap: 1.5rem;
         margin-top: 3rem;
     }

     .trust-item {
         font-size: 0.9rem;
     }
 }

 @media (max-width: 480px) {
     .dharamshala-title {
         font-size: 1.6rem;
     }

     .dharamshala-subtitle {
         font-size: 1rem;
     }

     .video-grid {
         grid-template-columns: 1fr;
     }

     .trust-item {
         width: 100%;
         justify-content: center;
     }
 }

 /* TESTIMONIAL SECTION */
 .testimonial-section {
     background: linear-gradient(135deg, #e8f4ff 0%, #f0f8ff 100%);
     text-align: center;
     padding: 50px 20px;
 }

 .section-title {
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 8px;
     color: #111;
 }

 .section-subtitle {
     font-size: 1rem;
     color: #666;
     margin-bottom: 32px;
 }

 .carousel-container {
     display: flex;
     align-items: center;
     gap: 16px;
     position: relative;
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
 }

 .arrow {
     width: 40px;
     height: 40px;
     border: none;
     border-radius: 50%;
     background: white;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     cursor: pointer;
     font-size: 20px;
     color: #1876f2;
     transition: 0.3s;
     flex-shrink: 0;
 }

 .arrow:hover {
     background: #dceeff;
     transform: scale(1.05);
 }

 .testimonials {
     display: flex;
     gap: 20px;
     overflow-x: auto;
     scroll-snap-type: x mandatory;
     scroll-behavior: smooth;
     padding: 10px;
     flex: 1;
 }

 .testimonials::-webkit-scrollbar {
     display: none;
 }

 .testimonial-card {
     flex: 0 0 300px;
     background: white;
     border-radius: 12px;
     padding: 24px;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
     text-align: center;
     transition: transform 0.3s;
     scroll-snap-align: start;
 }

 .testimonial-card:hover {
     transform: translateY(-5px);
 }

 .quote-icon {
     font-size: 24px;
     color: #1876f2;
     margin-bottom: 16px;
 }

 .testimonial-text {
     font-size: 0.95rem;
     color: #444;
     line-height: 1.6;
     margin-bottom: 16px;
 }

 .stars {
     color: #ffc107;
     margin: 10px 0;
 }

 .user-name {
     font-weight: 600;
     color: #111;
 }

 /* RESPONSIVE */
 @media (max-width: 900px) {
     .carousel-container {
         gap: 0;
     }

     .arrow {
         display: none;
     }

     .testimonial-card {
         flex: 0 0 85%;
     }
 }

 @media (max-width: 480px) {
     .section-title {
         font-size: 1.5rem;
     }

     .testimonial-card {
         flex: 0 0 90%;
         padding: 20px;
     }
 }


 /* GALLERY SECTION STYLES */
 .photo-gallery {
     max-width: 1193px;
     margin: 60px auto;
     padding: 0 20px;
 }

 .gallery-header {
     text-align: center;
     margin-bottom: 40px;
 }

 .gallery-header h2 {
     font-size: 2.5rem;
     color: #2c3e50;
     margin-bottom: 10px;
     font-weight: 700;
     position: relative;
 }



 .gallery-header p {
     font-size: 1.1rem;
     color: #7f8c8d;
     margin-top: 15px;
 }

 /* Filter Buttons */
 .gallery-filter {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 10px;
     margin-bottom: 30px;
 }

 .filter-btn {
     padding: 8px 20px;
     background: #f5f5f5;
     border: none;
     border-radius: 30px;
     font-size: 0.95rem;
     cursor: pointer;
     transition: all 0.3s ease;
     color: #555;
     font-weight: 500;
 }

 .filter-btn:hover {
     background: #e67e22;
     color: white;
 }

 .filter-btn.active {
     background: #e67e22;
     color: white;
 }

 /* Gallery Grid */
 .gallery-grid {
     display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 20px;
 }

 .gallery-item {
     grid-template-columns: repeat(3, 1fr);
     /* 3 equal columns */
     position: relative;
     border-radius: 8px;
     overflow: hidden;
     aspect-ratio: 4/3;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease;
 }

 .gallery-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.5s ease;
 }

 .gallery-item:hover img {
     transform: scale(1.05);
 }

 .image-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .gallery-item:hover .image-overlay {
     opacity: 1;
 }

 .overlay-content {
     text-align: center;
     color: white;
     padding: 20px;
     transform: translateY(20px);
     transition: transform 0.3s ease;
 }

 .gallery-item:hover .overlay-content {
     transform: translateY(0);
 }

 .overlay-content h3 {
     font-size: 1.2rem;
     margin-bottom: 5px;
 }

 .overlay-content p {
     font-size: 0.9rem;
     margin-bottom: 15px;
 }

 .overlay-content i {
     font-size: 1.5rem;
     background: rgba(255, 255, 255, 0.2);
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     backdrop-filter: blur(5px);
 }

 /* View More Button */
 .view-more-container {
     text-align: center;
     margin-top: 40px;
 }

 .view-more-btn {
     padding: 12px 30px;
     background: #e67e22;
     color: white;
     border: none;
     border-radius: 30px;
     font-size: 1rem;
     cursor: pointer;
     transition: all 0.3s ease;
     font-weight: 500;
     box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
 }

 .view-more-btn:hover {
     background: #d35400;
     transform: translateY(-2px);
     box-shadow: 0 6px 15px rgba(230, 126, 34, 0.4);
 }

 /* Lightbox Styles */
 .gallery-lightbox {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.9);
     z-index: 1000;
     align-items: center;
     justify-content: center;
 }

 .gallery-lightbox.active {
     display: flex;
 }

 .lightbox-content {
     position: relative;
     max-width: 90%;
     max-height: 90%;
 }

 .lightbox-image {
     max-width: 100%;
     max-height: 80vh;
     border-radius: 8px;
     display: block;
 }

 .lightbox-caption {
     color: white;
     text-align: center;
     margin-top: 15px;
 }

 .lightbox-caption h3 {
     font-size: 1.3rem;
     margin-bottom: 5px;
 }

 .lightbox-caption p {
     font-size: 1rem;
     color: #ccc;
 }

 .close-lightbox {
     position: absolute;
     top: 30px;
     right: 30px;
     color: white;
     font-size: 2.5rem;
     cursor: pointer;
     transition: color 0.3s ease;
 }

 .close-lightbox:hover {
     color: #e67e22;
 }

 .nav-lightbox {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     color: white;
     font-size: 2.5rem;
     cursor: pointer;
     background: rgba(0, 0, 0, 0.5);
     width: 60px;
     height: 60px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     transition: background 0.3s ease;
 }

 .nav-lightbox:hover {
     background: rgba(0, 0, 0, 0.8);
 }

 .prev-lightbox {
     left: 30px;
 }

 .next-lightbox {
     right: 30px;
 }

 /* Responsive Design */
 @media (max-width: 992px) {
     .gallery-grid {
         grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
     }
 }

 @media (max-width: 768px) {
     .gallery-header h2 {
         font-size: 2rem;
     }

     .gallery-header p {
         font-size: 1rem;
     }

     .filter-btn {
         padding: 6px 15px;
         font-size: 0.85rem;
     }
 }

 @media (max-width: 576px) {
     .gallery-grid {
         grid-template-columns: 1fr;
     }

     .gallery-header h2 {
         font-size: 1.8rem;
     }

     .close-lightbox,
     .nav-lightbox {
         font-size: 2rem;
     }

     .nav-lightbox {
         width: 50px;
         height: 50px;
     }
 }

 /* TRUSTED SECTION */
 .trusted-section {
     background-color: #eaf4ff;
     padding: 60px 20px;
     text-align: center;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .section-title {
     font-size: 2rem;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 10px;
 }

 .section-subtitle {
     font-size: 1rem;
     color: #666;
     margin-bottom: 40px;
 }

 .stats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 20px;
 }

 .stat-card {
     background: #fff;
     border-radius: 12px;
     padding: 30px 20px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease;
 }

 .stat-card:hover {
     transform: translateY(-5px);
 }

 .stat-card img {
     height: 64px;
     width: 72px;
     margin-bottom: 10px;
 }

 .stat-card h3 {
     font-size: 1.5rem;
     color: #007bff;
     font-weight: 700;
     margin: 0;
 }

 .stat-card p {
     font-size: 1rem;
     color: #333;
     margin-top: 5px;
 }

 /* Responsive tweaks */
 @media (max-width: 768px) {
     .section-title {
         font-size: 1.6rem;
     }

     .stat-card h3 {
         font-size: 1.3rem;
     }
 }

 /* NEARBY PLACES */
 .spiritual-section {
     margin: 60px auto;
     border-radius: 16px;
     background: linear-gradient(90deg, #6A60E8 0%, #A065BE 50.48%, #E24B8D 100%);
     padding: 26px 20px;
     max-width: 1208px;
     text-align: center;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
 }


 .dharamshalasection-title {
     font-size: 2rem;
     font-weight: 700;
     color: #faf7f7;
     margin-bottom: 10px;
 }

 .section-title2 {
     margin-left: 520px;
     font-size: 2rem;
     font-weight: 700;
     color: #181818;
     margin-bottom: 10px;
 }

 .dharamshalasection-subtitle {
     font-size: 1rem;
     color: #faf7f7;
     margin-bottom: 40px;
     line-height: 1.6;
 }

 .cards-wrapper {
     margin: auto;
     width: 94%;
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
     justify-content: center;
 }

 .card {
     background: #fff;
     color: #333;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     flex: 1 1 300px;
     display: flex;
     flex-direction: column;

     transition: transform 0.3s ease;
 }

 .card:hover {
     transform: translateY(-5px);
 }

 .card-image {
     position: relative;
     width: 100%;
     height: 190px;
     overflow: hidden;
 }

 .card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .price-tag {
     position: absolute;
     top: 10px;
     right: 10px;
     background: #fff;
     color: #333;
     padding: 5px 10px;
     font-size: 0.9rem;
     border-radius: 20px;
     font-weight: 600;
     box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
 }

 .distance {
     font-size: 0.9rem;
     padding: 15px 20px 10px;
     color: #555;
     text-align: left;
 }

 .btn {
     margin: 0 20px 20px;
     display: inline-block;
     background-color: #007bff;
     color: #fff;
     padding: 10px 16px;
     border-radius: 8px;
     font-weight: 600;
     text-decoration: none;
     transition: background 0.3s ease;
     text-align: center;
 }

 .btn:hover {
     background-color: #0056b3;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .cards-wrapper {
         flex-direction: column;
         align-items: center;
     }

     .card {
         width: 100%;
         max-width: 100%;
     }

     .section-title {
         font-size: 1.5rem;
     }

     .section-subtitle {
         font-size: 0.95rem;
     }
 }

 /* FOTTER SECTION */

 .footer {
     background-color: #0d1b2a;
     ;
     color: white;
     font-family: 'Poppins', sans-serif;
     padding: 3rem 1rem 1rem;
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
     gap: 2rem;
     border-bottom: 1px solid rgba(255, 255, 255, 0.15);
     padding-bottom: 2rem;
 }

 .footer h3 {
     font-size: 1.1rem;
     margin-bottom: 1rem;
     color: #ffffff;
 }

 .footer p {
     color: #ccc;
     font-size: 0.9rem;
     line-height: 1.6;
 }

 .footer ul {
     list-style: none;
     padding: 0;
 }

 .footer ul li {
     margin-bottom: 0.5rem;
 }

 .footer ul li a {
     color: #ccc;
     text-decoration: none;
     font-size: 0.9rem;
     transition: color 0.3s;
 }

 .footer ul li a:hover {
     color: #66d9ff;
 }

 .footer-bottom {
     max-width: 1200px;
     margin: 1.5rem auto 0;
     display: flex;
     flex-direction: column;
     align-items: center;
     font-size: 0.85rem;
     color: #ccc;
     gap: 1rem;
     text-align: center;
 }

 .footer-bottom a {
     color: #66d9ff;
     text-decoration: none;
 }

 .footer-social {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-top: 0.5rem;
 }

 .footer-social span {
     font-weight: 500;
     color: #fff;
     margin-right: 0.5rem;
 }

 .footer-social a {
     color: #ccc;
     font-size: 1.1rem;
     transition: color 0.3s;
 }

 .footer-social a:hover {
     color: #66d9ff;
 }

 @media (max-width: 768px) {
     .footer-container {
         grid-template-columns: 1fr;
     }

     .footer-bottom {
         flex-direction: column;
         align-items: center;
         text-align: center;
     }

     .footer-social {
         justify-content: center;
         flex-wrap: wrap;
     }
 }

 /* Members Grid */
 .members-grid {
     display: grid;
     gap: 1.5rem;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 }

 .member-card {
     background: #fff;
     border-radius: var(--radius);
     box-shadow: var(--shadow);
     padding: 1rem;
     text-align: center;
     transition: transform 0.3s;
 }

 .member-card:hover {
     transform: translateY(-5px);
 }

 .member-card img {
     width: 50%;
     border-radius: 8px;
     margin-bottom: 0.8rem;
     object-fit: cover;
 }

 .member-name {
     font-weight: 600;
     font-size: 1rem;
     color: var(--dark);
 }

 /* Fraud Section */
 .image-outer-container img {
     width: 100%;
     border-radius: .5rem;
 }

 .fraud-container {
     max-width: 1000px;
     margin: 2rem auto;
     padding: 0 1rem;
     text-align: center;
 }

 .f-heading {
     color: #e92626;
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 1rem;
 }

 .fraud-container p {
     font-size: 1.1rem;
     color: #444;
 }

 /* Info Section */
 .fraud_info {
     max-width: 1200px;
     margin: 2rem auto;
     padding: 0 1rem;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
 }

 .fraud_info h3 {
     font-size: 1.4rem;
     margin-bottom: 1rem;
     color: #333;
 }

 .fraud_info ul {
     list-style: none;
 }

 .fraud_info li {
     display: flex;
     align-items: start;
     gap: .6rem;
     margin-bottom: 1rem;
     font-size: 1rem;
 }

 .fraud_info i {
     color: #e92626;
     font-size: .7rem;
     margin-top: .4rem;
 }

 /* Gallery */
 .fraud-gallery-container {
     max-width: 1200px;
     margin: auto;
     padding: 2rem 1rem;
     text-align: center;
 }

 .fraud-gallery-container h3 {
     font-size: 1.8rem;
     margin-bottom: 1.5rem;
 }

 .fraud-gallery {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 1.5rem;
 }

 .fraud-img {
     overflow: hidden;
     border-radius: 1rem;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     transition: transform .3s ease;
 }

 .fraud-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .fraud-img:hover {
     transform: scale(1.05);
 }

 /* Responsive */
 @media (max-width: 768px) {
     .hero h1 {
         font-size: 3rem;
         margin-top: 49px;
     }

     .fraud_info {
         grid-template-columns: 1fr;
     }

     .f-heading {
         font-size: 1.8rem;
     }

     .fraud-container p {
         font-size: 1rem;
     }
 }