:root {
            --bg-color: #FFFDF7;
            --text-color: #3D3D3D;
            --primary-saffron: #FF9933;
            --secondary-gold: #D1A75B;
            --light-accent: #FFF7EB;
            --border-color: #EAEAEA;
        
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            font-family: 'Tinos', serif;
            font-size: clamp(2.2rem, 5vw, 3rem);
            color: var(--text-color);
            text-align: center;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            color: var(--primary-saffron);
            font-size: 2.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 50px;
        }

        .cta-button {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            background: linear-gradient(145deg, #FFB347, #FF9933);
            color: #fff;
            padding: 15px 35px;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
            display: inline-block;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 153, 51, 0.5);
        }

        .hidden-for-anim {
            opacity: 0;
            transform: translateY(40px);
        }

        header {
            background: rgba(255, 253, 247, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Tinos', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #FF9933;
            text-decoration: none;
        }

        .nav-container {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav a:hover,
        nav a.active {
            color: var(--primary-saffron);
        }

        header .cta-button {
            padding: 10px 25px;
            font-size: 0.9rem;
        }

        .hero-section {
            background: var(--light-accent);
            padding-top: 120px;
            padding-bottom: 80px;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 50px;
        }

        .hero-text h1 {
            font-family: 'Tinos', serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-text h1 span {
            color: var(--primary-saffron);
        }

        .hero-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .hero-image img {
            width: 100%;
            max-width: 450px;
            border-radius: 20px;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .commitment-section {
            padding: 40px 0;
            background: var(--bg-color);
        }

        .commitment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            text-align: center;
        }

        .commitment-badge {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }

        .commitment-badge .icon {
            font-size: 2.5rem;
            color: var(--secondary-gold);
            margin-bottom: 10px;
        }

        .commitment-badge h4 {
            font-size: 1.1rem;
            color: var(--text-color);
        }

        .commitment-badge p {
            font-size: 0.9rem;
            color: #777;
        }

        .about-section .container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .about-text .section-title,
        .about-text .section-subtitle {
            text-align: left;
        }

        .about-text p {
            margin-bottom: 20px;
            line-height: 1.9;
        }

        .services-section {
            background: var(--light-accent);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: #fff;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-color);
            padding: 40px 25px;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        }

        .service-card .icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #fff;
            background: linear-gradient(145deg, #FFB347, #FF9933);
            width: 80px;
            height: 80px;
            line-height: 80px;
            border-radius: 50%;
            display: inline-block;
        }

        .service-card h3 {
            font-family: 'Tinos', serif;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .service-card p {
            line-height: 1.7;
        }

        .view-all-btn-container {
            text-align: center;
            margin-top: 50px;
        }

        .testimonials-section {
            padding: 100px 20px;
            overflow: hidden;
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-slide {
            display: none;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .testimonial-slide.active {
            display: flex;
        }

        .testimonial-slide .quote-icon {
            font-size: 3rem;
            color: var(--primary-saffron);
            margin-bottom: 20px;
        }

        .testimonial-slide p {
            font-family: 'Tinos', serif;
            font-size: clamp(1.2rem, 3vw, 1.6rem);
            font-style: italic;
            color: #555;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--text-color);
            font-size: 1.1rem;
        }

        .testimonial-author span {
            font-weight: 500;
            color: var(--primary-saffron);
            font-size: 0.9rem;
            margin-left: 10px;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .testimonial-nav-button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--border-color);
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .testimonial-nav-button.active {
            background-color: var(--primary-saffron);
        }

        .grid-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 40px;
        }

        .blog-card {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .blog-card-image img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .blog-card-content {
            padding: 25px;
        }

        .blog-card-content h3 {
            font-family: 'Tinos', serif;
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        .blog-card-content .read-more {
            color: var(--primary-saffron);
            text-decoration: none;
            font-weight: 700;
        }

        .contact-section {
            background: var(--light-accent);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            max-width: 1200px;
            margin: 40px auto 0;
        }

        .contact-info,
        .contact-form {
            background: #fff;
            padding: 40px;
            border-radius: 15px;
            border: 1px solid var(--border-color);
        }

        .contact-info h3 {
            font-family: 'Tinos', serif;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .contact-info p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .contact-info .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .contact-info .info-item i {
            font-size: 1.5rem;
            color: var(--primary-saffron);
        }

        .map-container {
            border-radius: 10px;
            overflow: hidden;
            margin-top: 20px;
            border: 2px solid var(--border-color);
        }

        .map-container iframe {
            width: 100%;
            height: 250px;
            border: none;
            display: block;
        }

        .contact-form label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
        }

        footer {
            background: #2b2b2b;
            color: #ccc;
            padding: 60px 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 40px;
        }

        footer h4 {
            color: #fff;
            font-family: 'Tinos', serif;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        footer p,
        footer li {
            margin-bottom: 10px;
            list-style: none;
        }

        footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: var(--primary-saffron);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            font-size: 1.5rem;
        }

        .footer-bottom {
            border-top: 1px solid #444;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
        }

        .whatsapp-button {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 1000;
            background: #25D366;
            color: #FFF;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2.2rem;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }

        /* --- STYLES FOR NEW REVIEWS SECTION --- */
        .testimonials-section {
            background: linear-gradient(to top, #F0F8FF, var(--bg-color));
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .review-card {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .review-header img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary-gold);
        }

        .review-author h4 {
            font-family: 'Tinos', serif;
            font-size: 1.2rem;
            margin: 0;
        }

        .review-author p {
            margin: 0;
            color: #777;
            font-size: 0.9rem;
        }

        .review-text {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .review-rating {
            color: #FFC107;
            /* Bright Gold for stars */
        }

        /* --- STYLES FOR NEW VIDEO GALLERY SECTION --- */
        .video-gallery-section {
            background: var(--bg-color);
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
        }

        .video-item {
            position: relative;
            padding-bottom: 56.25%;
            /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border-color);
        }

        .video-item iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* --- Floating Call Now Button --- */
        .call-now-button {
            position: fixed;
            bottom: 25px;
            left: 25px;
            /* Position on the left */
            z-index: 1000;
            background: var(--primary-saffron);
            color: #ffffff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.8rem;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .call-now-button:hover {
            transform: scale(1.1);
            background-color: #256f48;
            /* Darker green on hover */
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }

        @media(max-width: 480px) {
            .video-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 992px) {

            .hero-container,
            .about-section .container,
            .contact-grid,
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-text .section-title,
            .about-text .section-subtitle {
                text-align: center;
            }

            .hero-image {
                grid-row: 1;
                margin-bottom: 30px;
            }

            nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }

  nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }

  

  @media (max-width: 992px) {
    nav ul {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 20px;
      background: #fff;
      padding: 15px;
      border: 1px solid #ccc;
    }
    nav ul.show {
      display: flex;
    }
    
  }

            .nav-container .cta-button {
                display: none;
            }
        }

        /* --- STYLES FOR NEW COMMUNITY SIGNUP SECTION --- */
        .community-section {
            background: var(--light-accent);
            text-align: center;
        }

        .community-text {
            max-width: 700px;
            margin: 0 auto 30px auto;
            line-height: 1.8;
            color: #555;
            font-size: 1.1rem;
        }

        .community-buttons {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .community-buttons .cta-button {
            font-size: 1.1rem;
            padding: 18px 35px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .community-buttons .whatsapp-btn {
            background: #25D366;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .community-buttons .whatsapp-btn:hover {
            background: #128C7E;
            box-shadow: 0 7px 20px rgba(18, 140, 126, 0.5);
        }

        .community-buttons .youtube-btn {
            background: #FF0000;
            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
        }

        .community-buttons .youtube-btn:hover {
            background: #c40000;
            box-shadow: 0 7px 20px rgba(196, 0, 0, 0.5);
        }

        /* --- STYLES FOR POP-UP MODAL --- */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .popup-overlay.visible {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background: var(--bg-color);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            width: 90%;
            max-width: 600px;
            text-align: center;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .popup-overlay.visible .popup-content {
            transform: scale(1);
        }

        .popup-close {
            position: absolute;
            top: 10px;
            right: 15px;
            background: none;
            border: none;
            font-size: 2.5rem;
            color: #aaa;
            cursor: pointer;
            line-height: 1;
        }

        .popup-body .section-title {
            font-size: 2rem;
        }

        .popup-body p {
            color: #555;
            line-height: 1.8;
            margin: 20px 0 30px 0;
        }

        .popup-body .community-buttons {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .popup-body .cta-button {
            font-size: 1.1rem;
            padding: 18px 35px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .popup-body .whatsapp-btn {
            background: #25D366;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .popup-body .whatsapp-btn:hover {
            background: #128C7E;
        }

        .popup-body .youtube-btn {
            background: #FF0000;
            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
        }

        .popup-body .youtube-btn:hover {
            background: #c40000;
        }

        /* --- STYLES FOR PRICING/FEES SECTION --- */
        .pricing-section {
            background-color: var(--bg-color);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            align-items: center;
            margin-top: 50px;
        }

        .pricing-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 15px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .pricing-card.popular {
            transform: scale(1.05);
            border: 2px solid var(--primary-gold);
        }

        .popular-badge {
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-gold);
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .discount-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--secondary-green);
            color: #fff;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 5px 10px;
            border-radius: 5px;
        }

        .plan-header {
            margin-top: 20px;
            /* Space for popular badge */
            margin-bottom: 20px;
        }

        .plan-title {
            font-family: 'Tinos', serif;
            font-size: 1.8rem;
            color: var(--text-color);
        }

        .plan-subtitle {
            color: #777;
            font-size: 1rem;
        }

        .price-container {
            margin-bottom: 30px;
        }

        .original-price {
            font-size: 1.5rem;
            color: #aaa;
            font-weight: 400;
        }

        .original-price del {
            text-decoration: line-through;
            text-decoration-color: #ff6b6b;
        }

        .final-price {
            font-family: 'Tinos', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--secondary-green);
            line-height: 1.1;
        }

        .plan-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
            text-align: left;
        }

        .plan-features li {
            margin-bottom: 12px;
            color: #555;
            display: flex;
            align-items: center;
        }

        .plan-features i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .plan-features .fa-check-circle {
            color: var(--secondary-green);
        }

        .plan-features .fa-times-circle {
            color: #ccc;
        }

        .pricing-card .cta-button {
            width: 100%;
        }

        @media (max-width: 992px) {
            .pricing-card.popular {
                transform: scale(1);
                /* Reset scaling on smaller screens */
            }
        }

        @media (max-width: 992px) {
            .pricing-card.popular {
                transform: scale(1);
                /* Reset scaling on smaller screens */
            }
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Poppins', sans-serif; background-color: var(--bg-color); color: var(--text-color); overflow-x: hidden; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section { padding: 80px 0; }
        .page-header { background: var(--light-accent); padding: 120px 0 60px 0; text-align: center; }
        .section-title { font-family: 'Tinos', serif; font-size: clamp(2.2rem, 5vw, 3rem); color: var(--text-color); text-align: center; margin-bottom: 15px; font-weight: 700; }
        .section-subtitle { text-align: center; color: var(--primary-saffron); font-size: 2.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 50px; }
        .cta-button { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem; background: linear-gradient(145deg, #FFB347, #FF9933); color: #fff; padding: 15px 35px; border: none; border-radius: 50px; text-decoration: none; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3); display: inline-block; }
        .cta-button:hover { transform: translateY(-3px); box-shadow: 0 7px 20px rgba(255, 153, 51, 0.5); }
        .hidden-for-anim { opacity: 0; transform: translateY(40px); }
        header { background: rgba(255, 253, 247, 0.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
        header .container { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-family: 'Tinos', serif; font-size: 1.8rem; font-weight: 700; color: #FF9933; text-decoration: none; }
        .nav-container { display: flex; align-items: center; gap: 20px; }
        nav ul { list-style: none; display: flex; gap: 30px; }
        nav a { text-decoration: none; color: var(--text-color); font-weight: 500; transition: color 0.3s ease; }
        nav a:hover, nav a.active { color: var(--primary-saffron); }
        header .cta-button { padding: 10px 25px; font-size: 0.9rem; }
        .service-item { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; align-items: center; background: #fff; padding: 40px; border-radius: 20px; border: 1px solid var(--border-color); margin-bottom: 40px; box-shadow: 0 5px 25px rgba(0,0,0,0.03); }
        .service-item:nth-child(even) { grid-template-columns: 2fr 1fr; }
        .service-item:nth-child(even) .service-image { grid-column: 2; grid-row: 1; }
        .service-item:nth-child(even) .service-details { grid-column: 1; grid-row: 1; }
        .service-image img { width: 100%; height: 100%; max-height: 350px; object-fit: cover; border-radius: 15px; }
        .service-details h2 { font-family: 'Tinos', serif; font-size: 2rem; color: var(--text-color); margin-bottom: 15px; }
        .service-details p { line-height: 1.8; margin-bottom: 25px; }
        .keywords-title { font-weight: 700; color: var(--text-color); margin-bottom: 10px; }
        .keywords-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin-bottom: 30px; }
        .keywords-list li { background-color: var(--light-accent); color: var(--primary-saffron); padding: 5px 12px; border-radius: 20px; font-size: 0.9rem; font-weight: 500; }
        footer { background: #2b2b2b; color: #ccc; padding: 60px 0; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; }
        footer h4 { color: #fff; font-family: 'Tinos', serif; font-size: 1.5rem; margin-bottom: 20px; }
        footer p, footer li { margin-bottom: 10px; list-style: none; }
        footer a { color: #ccc; text-decoration: none; transition: color 0.3s ease; }
        footer a:hover { color: var(--primary-saffron); }
        .social-icons { display: flex; gap: 15px; margin-top: 20px; }
        .social-icons a { font-size: 1.5rem; }
        .footer-bottom { border-top: 1px solid #444; margin-top: 40px; padding-top: 20px; text-align: center; font-size: 0.9rem; }
        .whatsapp-button { position: fixed; bottom: 25px; right: 25px; z-index: 1000; background: #25D366; color: #FFF; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2.2rem; text-decoration: none; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); transition: all 0.3s ease; }
        .whatsapp-button:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); }
        .call-button {
            font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem; background: linear-gradient(145deg, #FFB347, #FF9933); color: #fff; padding: 15px 35px; border: none; border-radius: 50px; text-decoration: none; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3); display: inline-block;
        }

        .call-button:hover {
            background: var(--secondary-green);
            color: #fff;
        }

        .call-button i {
            margin-right: 8px; /* Adds space between the icon and the text */
        }
        /* --- Floating Call Now Button --- */
        .call-now-button {
            position: fixed;
            bottom: 25px;
            left: 25px; /* Position on the left */
            z-index: 1000;
            background: var(--primary-saffron);
            color: #ffffff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.8rem;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        .call-now-button:hover {
            transform: scale(1.1);
            background-color: #256f48; /* Darker green on hover */
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }
        /* --- STYLES FOR ALL-INCLUSIVE SERVICES SECTION --- */
        .all-services-section {
            padding: 80px 0;
            background-color: var(--bg-color); /* Or use var(--light-accent) for a different feel */
        }

        .all-services-grid {
            display: grid;
            /* Creates 3 columns on desktop, 2 on tablet, and 1 on mobile */
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .service-category h4 {
            font-family: 'Tinos', serif;
            font-size: 1.5rem;
            color: var(--secondary-gold);
            margin-bottom: 20px;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 10px;
            display: inline-block; /* Ensures border only spans the text width */
        }

        .all-services-list {
            list-style: none;
            padding: 0;
        }

        .all-services-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 1rem;
            color: #555;
        }

        .all-services-list i {
            color: var(--secondary-green);
            margin-right: 12px;
            font-size: 0.9rem; /* Makes the icon slightly smaller than the text */
        }
        @media (max-width: 992px) {
            .service-item, .service-item:nth-child(even) { grid-template-columns: 1fr; text-align: center; }
            .service-item:nth-child(even) .service-image, .service-item .service-image { grid-row: 1; grid-column: 1; margin-bottom: 30px;}
            .service-item:nth-child(even) .service-details, .service-item .service-details { grid-row: 2; grid-column: 1;}
            .keywords-list { justify-content: center; }
            nav ul, .nav-container .cta-button { display: none; }
        }
        @media (max-width: 768px) {
             .footer-grid { grid-template-columns: 1fr; }
        }
        /* --- STYLES FOR NEW COMMUNITY SIGNUP SECTION --- */
        .community-section {
            background: var(--light-accent);
            text-align: center;
        }
        .community-text {
            max-width: 700px;
            margin: 0 auto 30px auto;
            line-height: 1.8;
            color: #555;
            font-size: 1.1rem;
        }
        .community-buttons {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .community-buttons .cta-button {
            font-size: 1.1rem;
            padding: 18px 35px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .community-buttons .whatsapp-btn {
            background: #25D366;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }
        .community-buttons .whatsapp-btn:hover {
            background: #128C7E;
            box-shadow: 0 7px 20px rgba(18, 140, 126, 0.5);
        }
        .community-buttons .youtube-btn {
            background: #FF0000;
            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
        }
        .community-buttons .youtube-btn:hover {
            background: #c40000;
            box-shadow: 0 7px 20px rgba(196, 0, 0, 0.5);
        }
        /* FAQ Teaser Section */
.faq-teaser {
  background: #fff8f0; /* light saffron cream */
  padding: 50px 20px;
  margin-top: 50px;
  border-top: 3px solid #e67e22; /* saffron orange */
}

.faq-teaser-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #FF9933; /* deep saffron/brown */
  margin-bottom: 30px;
    font-family: 'Tinos', serif;
}

.faq-teaser-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.faq-teaser-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.faq-teaser-item:hover {
  transform: translateY(-4px);
}

.faq-teaser-item h3 {
  font-size: 1.2rem;
  color: #e67e22; /* saffron orange */
  margin-bottom: 10px;
}

.faq-teaser-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.faq-teaser-btn {
  text-align: center;
  margin-top: 30px;
}

.btn-see-all {
  background: linear-gradient(90deg, #ff9900, #ff6600); /* saffron-orange gradient */
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px; /* fully rounded pill */
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.btn-see-all:hover {
  background: linear-gradient(90deg, #ff6600, #e65c00); /* darker saffron hover */
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .faq-teaser-items {
    grid-template-columns: 1fr 1fr; /* 2-column on tablets */
  }
}

@media (max-width: 600px) {
  .faq-teaser {
    padding: 30px 15px; /* tighter padding for mobile */
  }

  .faq-teaser-items {
    grid-template-columns: 1fr; /* 1-column on mobiles */
    gap: 15px;
  }

  .faq-teaser-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .faq-teaser-item {
    padding: 15px;
  }

  .faq-teaser-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .faq-teaser-item p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .btn-see-all {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

        /* FAQ Section Styling */
.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  font-family: 'Tinos', serif;
}

.faq-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #FF9933; /* Maroon */
}

.faq-container {
  border-top: 1px solid #d4af37; /* Gold */
}

.faq-item {
  border-bottom: 1px solid #d4af37;
  background: #fffaf2; /* Soft cream */
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* subtle shadow */
  overflow: hidden;
  transition: transform 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 18px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  color: #4a2c2a;
}

.faq-question:hover {
  background: #fbe8d3; /* Light golden cream */
}

.faq-question.active {
  color: #800000; /* Maroon when active */
}

.faq-icon {
  font-weight: bold;
  font-size: 1.3rem;
  color: #d4af37; /* Gold */
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Slide animation for answers */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 18px;
  background: #fffaf2;
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
}

.faq-answer p {
  margin: 0;
}

.faq-answer.open {
  max-height: 500px;
  padding: 15px 18px;
  border-left: 3px solid #d4af37; /* Golden highlight */
}

.menu-toggle {
  display: none !important;   /* hide by default on desktop */
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* Desktop: ensure horizontal nav is visible */
@media (min-width: 993px) {
  nav ul {
    display: flex !important;
    gap: 30px;
    position: static !important;
  }
}

/* Mobile rules: show hamburger, hide full nav until toggled */
@media (max-width: 992px) {
  .menu-toggle {
    display: block !important;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 62px;
    right: 16px;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    gap: 10px;
    z-index: 1200;
  }

  nav ul.show {
    display: flex;
  }
}
/* 🔔 CTA Running Ticker */
.cta-ticker {
  width: 100%;
  background: linear-gradient(90deg, #e65100, #ff9800); /* saffron-orange gradient */
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 10;
}

.cta-ticker p {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: ticker 18s linear infinite;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.cta-ticker a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

