:root {
            --primary: #cc338b;
            --primary-dark: #aa2370;
            --secondary: #d45c9f;
            --tertiary: #e585b3;
            --light-magenta: #f2adc8;
            --dark: #1a2639;
            --light: #e6e6e6;
            --white: #ffffff;
            --success: #28a745;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        html {
            font-size: 16px;
        }
        
        body {
            color: var(--dark);
            background-color: var(--white);
            line-height: 1.6;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            position: fixed;
            width: 100%;
            z-index: 100;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
         .logo {
            font-size: clamp(24px, 5vw, 28px);
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: clamp(15px, 3vw, 30px);
        }
        
        .nav-links li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
            font-size: clamp(14px, 2vw, 16px);
        }
        
        .nav-links li a:hover {
            color: var(--primary);
        }
        
        .auth-buttons {
            display: flex;
            gap: 15px;
        }
        
        .btn {
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            font-size: clamp(14px, 2vw, 16px);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            color: var(--white);
        }
        
        .btn-secondary:hover {
            background-color: var(--tertiary);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
            padding: 10px;
        }
 /* With this improved version: */
.fas, .far, .fal, .fad, .fa {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    font-style: normal;
    display: inline-block;
}

.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
    font-style: normal;
    display: inline-block;
}

/* Ensure proper icon rendering */
i[class*="fa-"] {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/* Feature icons */
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: #ffffff;
}

/* Mobile menu icon */
.mobile-menu-btn i,
.close-menu-btn i {
    font-size: 20px;
}
        /* Hero Section */
        .hero {
            padding-top: 100px;
            padding-bottom: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(240,240,240,0.95) 100%), url('wedding-hands.jpg');
            background-size: cover;
            background-position: center;
            z-index: 1;
        }
        
        .hero-content {
            display: flex;
            align-items: ster;
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        
        .hero-text {
            flex: 1;
        }
        
        .hero-text h1 {
            font-size: clamp(32px, 6vw, 48px);
            margin-bottom: 20px;
            color: var(--dark);
            line-height: 1.2;
        }
        
        .hero-text h1 span {
            color: var(--primary);
        }
        
        .hero-text h1 .gold {
            color: var(--secondary);
        }
        
        .hero-text p {
            font-size: clamp(16px, 2.5vw, 18px);
            margin-bottom: 30px;
            line-height: 1.6;
            color: #555;
        }
        
                /* Trust Badge Section */
        .trust-badge {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 15px 25px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(204, 51, 139, 0.3);
        }
        .hero-image {
            flex: 1;
            text-align: center;
        }
        
        .hero-image img {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            object-fit: cover;
            height: 570px;
            width: 100%;
        }
        
        .whatsapp-image img {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            object-fit: cover;
            height: 570px;
            width: 100%;
        }
        
        .stats {
            display: flex;
            gap: clamp(15px, 3vw, 30px);
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
            background: rgba(255, 255, 255, 0.8);
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            flex: 1;
            min-width: 120px;
        }
        
        .stat-number {
            font-size: clamp(24px, 4vw, 28px);
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: clamp(12px, 2vw, 14px);
            color: #555;
        }
        
        /* Features Section */
        .features {
            padding: 60px 0;
            background-color: var(--white);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--light-magenta));
        }
        
        .section-title h2 {
            font-size: clamp(28px, 5vw, 36px);
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: clamp(16px, 2.5vw, 18px);
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            text-align: center;
        }
        
        .feature-card {
            background: #f9f9f9;
            border-radius: 15px;
            padding: clamp(20px, 3vw, 30px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border-bottom: 3px solid transparent;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
            border-bottom: 3px solid var(--secondary);
        }
        
        @media (max-width: 768px) {
            .feature-card {
                padding: 15px;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
        }
        
        .feature-icon {
            width: clamp(50px, 8vw, 60px);
            height: clamp(50px, 8vw, 60px);
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: clamp(20px, 3vw, 24px);
            position: relative;
            margin-left: auto;
            margin-right: auto;
        }
        
        .feature-icon::after {
            content: '';
            position: absolute;
            width: clamp(60px, 9vw, 70px);
            height: clamp(60px, 9vw, 70px);
            border-radius: 50%;
            border: 2px dashed var(--tertiary);
            opacity: 0.3;
            animation: rotate 20s linear infinite;
        }
        
        .feature-card h3 {
            font-size: clamp(18px, 3vw, 22px);
            margin-bottom: 15px;
            color: var(--dark);
            text-align: center;
        }
        
        .feature-card p {
            color: #666;
            line-height: 1.6;
            font-size: clamp(14px, 2vw, 16px);
            text-align: center;
        }
        
        /* How It Works */
        .how-it-works {
            padding: 60px 0;
            background-color: #f8f9fa;
            position: relative;
            overflow: hidden;
        }
        
        .steps {
            display: flex;
            justify-content: space-between;
            margin-top: 60px;
            position: relative;
            z-index: 2;
            gap: 30px;
        }
        
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-number {
            width: clamp(50px, 8vw, 60px);
            height: clamp(50px, 8vw, 60px);
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(20px, 3vw, 24px);
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
        }
        
        .step-number::after {
            content: '';
            position: absolute;
            width: clamp(60px, 9vw, 70px);
            height: clamp(60px, 9vw, 70px);
            border-radius: 50%;
            border: 2px dashed var(--tertiary);
            opacity: 0.3;
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        .step h3 {
            font-size: clamp(16px, 2.5vw, 20px);
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .step p {
            color: #666;
            line-height: 1.5;
            font-size: clamp(14px, 2vw, 16px);
            max-width: 250px;
        }
        
        /* Mediator Section */
        .mediator-section {
            padding: 60px 0;
            background-color: #f9f9f9;
            position: relative;
        }
        
        .mediator-preview-content {
            background-color: var(--white);
            border-radius: 15px;
            padding: clamp(20px, 4vw, 40px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin: 0 auto;
            max-width: 900px;
        }
        
        .mediator-preview-text {
            text-align: center;
        }
        
        .mediator-preview-text h3 {
            font-size: clamp(24px, 4vw, 28px);
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .mediator-preview-text p {
            font-size: clamp(16px, 2.5vw, 17px);
            margin-bottom: 20px;
            line-height: 1.6;
            color: #555;
        }
        
        .mediator-preview-features {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: clamp(15px, 3vw, 30px);
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .preview-feature {
            display: flex;
            flex-direction: row;
            align-items: center;
            background: #f0f7f4;
            padding: 20px;
            border-radius: 12px;
            min-width: 140px;
            text-align: left;
            flex: 1;
            gap: 15px;
        }
        
        .mediator-preview-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .mediator-whatsapp {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background-color: #FF66FF;
            color: var(--white);
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 5px 15px rgba(255, 102, 255, 0.3);
            border: none;
            font-size: clamp(14px, 2vw, 16px);
            cursor: pointer;
        }
        
        .mediator-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 102, 255, 0.4);
        }
        
        /* WhatsApp Section */
        .whatsapp {
            padding: 60px 0;
            background-color: var(--white);
        }
        
        .whatsapp-content {
            display: flex;
            align-items: stretch;
            gap: 40px; 
        }
        
        .whatsapp-image {
            flex: 1;
            text-align: center;
            display: flex; /* Add this */
             align-items: center; /* Add this */
            justify-content: center; /* Add this */
        }
        
        .whatsapp-text {
            flex: 1;
        }
        
        .whatsapp-text h2 {
            font-size: clamp(28px, 5vw, 36px);
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .whatsapp-text p {
            font-size: clamp(16px, 2.5vw, 18px);
            margin-bottom: 30px;
            line-height: 1.6;
            color: #555;
        }
        
        .whatsapp-steps {
            margin-top: 30px;
        }
        
        .whatsapp-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .whatsapp-step-icon {
            width: clamp(36px, 6vw, 40px);
            height: clamp(36px, 6vw, 40px);
            border-radius: 50%;
            background-color: var(--primary);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .whatsapp-step-text h4 {
            font-size: clamp(16px, 2.5vw, 18px);
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .whatsapp-step-text p {
            font-size: clamp(14px, 2vw, 16px);
            color: #666;
            margin: 0;
            line-height: 1.5;
        }
        
/* Community Section - IMPROVED */
.community-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.community-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Changed from space-between */
    min-height: 240px; /* Increased for better proportion */
    gap: 15px; /* Added gap for consistent spacing */
}

/* Hover effect */
.community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

/* Community-specific hover border colors */
.community-card.hindu:hover {
    border-color: #ff9900;
}

.community-card.muslim:hover {
    border-color: #008000;
}

.community-card.christian:hover {
    border-color: #800080;
}

.community-card.sikh:hover {
    border-color: #1e90ff;
}

.community-card.parsi:hover {
    border-color: #ff0000;
}

.community-card.nri:hover {
    border-color: #FFD700;
}

/* Community Icon Styling - IMPROVED */
.community-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    margin: 0; /* Removed margin - using gap instead */
}

/* Community-specific icon colors */
.community-card.hindu .community-icon {
    background-color: #ff9900;
}

.community-card.muslim .community-icon {
    background-color: #008000;
}

.community-card.christian .community-icon {
    background-color: #800080;
}

.community-card.sikh .community-icon {
    background-color: #1e90ff;
}

.community-card.parsi .community-icon {
    background-color: #ff0000;
}

.community-card.nri .community-icon {
    background-color: #FFD700;
}

/* Title styling - NEW */
.community-card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
    flex-shrink: 0;
}

/* Description styling - NEW */
.community-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6c757d;
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: center;
}

/* Responsive Design - NEW */
@media (max-width: 992px) {
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .community-card {
        min-height: 220px;
    }
}

@media (max-width: 576px) {
    .community-section {
        padding: 40px 0;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .community-card {
        min-height: 200px;
        padding: 25px 15px;
        gap: 12px;
    }
    
    .community-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .community-card h3 {
        font-size: 1.1rem;
    }
    
    .community-card p {
        font-size: 0.9rem;
    }
}

        /* CTA Section */
        .cta {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            animation: starsPulse 25s linear infinite;
            z-index: 1;
        }
        
        @keyframes starsPulse {
            0% {
                opacity: 0.3;
                transform: scale(1) translateX(0) translateY(0);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.1) translateX(-30px) translateY(-20px);
            }
            100% {
                opacity: 0.3;
                transform: scale(1) translateX(0) translateY(0);
            }
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta h2 {
            font-size: clamp(28px, 5vw, 36px);
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: clamp(16px, 2.5vw, 18px);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .cta-whatsapp {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 30px;
            background-color: var(--secondary);
            color: var(--white);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 5px 15px rgba(255, 51, 255, 0.3);
            text-align: center;
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }
        
        .cta-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 51, 255, 0.4);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-about h3 {
            font-size: clamp(20px, 3vw, 24px);
            color: var(--white);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .footer-about h3 span {
            color: var(--light-magenta);
            margin-left: 5px;
        }
        
        .footer-about p {
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: clamp(14px, 2vw, 16px);
        }
        
@media (max-width: 768px) {
    /* Remove or modify these rules that are hiding content: */
    .footer-content-section {
        display: block !important; /* Force show on mobile */
        max-height: none !important;
        overflow: visible !important;
    }
    
    .footer-content-section.show {
        display: block !important;
        max-height: none !important;
    }
    
    .footer-links h4 {
        cursor: pointer;
        position: relative;
    }
    
    /* Hide the detailed paragraphs on mobile, show only links */
    .footer-content-section p {
        display: block !important;
        margin: 10px 0 !important;
        line-height: 1.6 !important;
    }
    
    .footer-content-section ul {
        display: block;
    }
}
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-links h4 {
            font-size: clamp(16px, 2.5vw, 18px);
            color: var(--white);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background-color: var(--light-magenta);
        }
        
        .footer-links h4 i {
            color: var(--light-magenta);
            transition: transform 0.3s;
            font-size: 14px;
        }
        
        .footer-content-section {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .footer-content-section.show {
            max-height: None;
        }
        
        .footer-content-section p {
            padding: 10px 0;
            line-height: 1.6;
            color: var(--light);
            font-size: clamp(14px, 2vw, 16px);
        }
        
        .footer-links.expanded h4 i {
            transform: rotate(180deg);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            font-size: clamp(14px, 2vw, 16px);
        }
        
        .footer-links ul li a:hover {
            color: var(--light-magenta);
        }
        
        .footer-links ul li a i {
            margin-right: 10px;
            font-size: clamp(10px, 1.5vw, 12px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: clamp(12px, 2vw, 14px);
        }
        
        /* FAQ Section */
        .faq {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        
        .faq-item {
            background: var(--white);
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
        }
        
        .faq-question h3 {
            font-size: clamp(16px, 2.5vw, 18px);
            font-weight: 600;
            color: var(--dark);
            margin: 0;
        }
        
        .faq-question i {
            color: var(--primary);
            transition: transform 0.3s;
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .faq-answer p {
            padding-bottom: 20px;
            line-height: 1.6;
            color: #666;
            font-size: clamp(14px, 2vw, 16px);
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: min(80%, 400px);
            height: 100vh;
            background-color: var(--white);
            z-index: 999;
            padding: 80px 20px 40px;
            transition: right 0.3s;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
        }
        
        .mobile-menu.show {
            right: 0;
        }
        
        .close-menu-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
            padding: 10px;
        }
        
        .mobile-nav-links {
            list-style: none;
            margin-bottom: 40px;
        }
        
        .mobile-nav-links li {
            margin-bottom: 20px;
        }
        
        .mobile-nav-links li a {
            text-decoration: none;
            color: var(--dark);
            font-size: 18px;
            font-weight: 500;
            display: block;
            padding: 10px 0;
        }
        
        .mobile-auth-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 998;
            display: none;
        }
        
        .overlay.show {
            display: block;
        }
        
        /* Registration Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .modal.show {
            display: flex;
        }
        
        .modal-content {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            width: 90%;
            max-width: 400px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .modal-header {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .modal-header h3 {
            font-size: 24px;
            color: var(--dark);
            margin-bottom: 10px;
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
            padding: 5px;
        }
        
        .phone-number {
            text-align: center;
            font-size: 20px;
            font-weight: 600;
            color: var(--primary);
            padding: 15px;
            background: #f5f5f5;
            border-radius: 10px;
            margin-bottom: 25px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: #f9f9f9;
            border-radius: 10px;
            border: 1px solid #eee;
        }
        
        .contact-item i {
            font-size: 24px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            border-radius: 50%;
            color: var(--white);
        }
        
        .contact-details h4 {
            font-weight: 600;
            font-size: 16px;
            color: var(--dark);
            margin-bottom: 5px;
        }
        
        .contact-details p {
            font-size: 14px;
            color: #666;
            margin: 0;
        }
        
        .whatsapp-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 15px;
            background-color: #25D366;
            color: white;
            border-radius: 20px;
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
            margin-top: 8px;
            transition: all 0.3s;
        }
        
        .whatsapp-link:hover {
            background-color: #128C7E;
            transform: translateY(-1px);
        }
        
        .modal-options {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .modal-option {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: #f9f9f9;
            border-radius: 10px;
            text-decoration: none;
            color: var(--dark);
            transition: all 0.3s;
            cursor: pointer;
            border: 1px solid #eee;
        }
        
        .modal-option:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }
        
        .modal-option i {
            font-size: 24px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
            border-radius: 50%;
            color: var(--primary);
        }
        
        .modal-option:hover i {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
        }
        
        .modal-option-text {
            display: flex;
            flex-direction: column;
        }
        
        .modal-option-title {
            font-weight: 600;
            font-size: 16px;
        }
        
        .modal-option-desc {
            font-size: 14px;
            opacity: 0.8;
        }
        
        .qr-code-container {
            text-align: center;
            margin-top: 20px;
            display: none;
        }
        
        .qr-code-container.show {
            display: block;
        }
        
        .qr-code-image {
            width: 200px;
            height: 200px;
            margin: 10px auto;
            background: #f5f5f5;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
        }
        
        .mobile-call-wrapper {
            position: relative;
        }
        
        .mobile-call {
            display: none;
            text-decoration: none;
            width: 100%;
            color: inherit;
        }
        
        .desktop-call {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        @media (max-width: 768px) {
            .mobile-call {
                display: flex;
                align-items: center;
                gap: 15px;
            }
            
            .desktop-call {
                display: none;
            }
            
            .call-number-display {
                display: none !important;
            }
        }
        
        .call-number-display {
            display: none;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: #f0f7f4;
            border-radius: 10px;
            margin-bottom: 15px;
        }
        
        .call-number-display.show {
            display: flex;
        }
        
        .call-number-display i {
            font-size: 24px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            border-radius: 50%;
            color: var(--white);
        }
        
        .number-info {
            text-align: left;
        }
        
        .number-info p {
            margin: 0;
            color: var(--dark);
        }
        
        .display-number {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary);
            margin-top: 5px !important;
        }
        /* Pricing Modal Styles */
.pricing-modal-content {
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.pricing-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h4 {
    font-size: 24px;
    margin: 20px 0 15px;
    color: var(--dark);
}

.pricing-amount {
    margin: 20px 0;
}

.currency {
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
}

.price {
    font-size: 48px;
    color: var(--primary);
    font-weight: 700;
}

.period {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.pricing-desc {
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 25px 0;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.pricing-features i {
    color: var(--success);
    margin-right: 10px;
    width: 16px;
}

.pricing-btn {
    width: 100%;
    padding: 12px 25px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.featured .pricing-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* Payment Section Styles */
.payment-section {
    border-top: 2px solid #eee;
    margin-top: 30px;
    padding-top: 30px;
}

.payment-header {
    text-align: center;
    margin-bottom: 30px;
}

.payment-header h4 {
    color: var(--dark);
    margin-bottom: 10px;
}

.selected-plan {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    font-size: 14px;
}

.payment-methods {
    display: grid;
    gap: 25px;
}

.payment-method {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.payment-method h5 {
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qr-code-payment {
    text-align: center;
}

.qr-placeholder {
    background: white;
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 40px 20px;
    color: #666;
}

.qr-placeholder p {
    margin: 10px 0 5px;
    font-weight: 500;
}

.qr-placeholder small {
    color: #999;
}

.payment-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.payment-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.payment-divider span {
    background: white;
    padding: 0 15px;
    color: #666;
    font-weight: 500;
}

.upi-payment-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.upi-payment-link:hover {
    background: var(--tertiary);
    transform: translateY(-2px);
}

.upi-id-display {
    background: #f0f7f4;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.upi-id-display p {
    margin: 0 0 10px;
    color: var(--dark);
}

.copy-upi-btn {
    background: var(--success);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-upi-btn:hover {
    background: #1e7e34;
}

.payment-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 15px;
    border-radius: 8px;
    margin: 25px 0;
}

.payment-note p {
    margin: 0;
    color: #856404;
    font-size: 14px;
}

.back-to-plans-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px auto 0;
    transition: all 0.3s;
}

.back-to-plans-btn:hover {
    background: #5a6268;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-modal-content {
        width: 98%;
        padding: 20px;
        max-height: 95vh;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px 0;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .price {
        font-size: 36px;
    }
    
    .pricing-features {
        margin: 20px 0;
    }
    
    .pricing-features li {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .payment-method {
        padding: 20px 15px;
    }
    
    .qr-placeholder {
        padding: 30px 15px;
    }
}
        
        /* Media Queries for Mobile Responsiveness */
        @media (max-width: 1024px) {
            .container {
                padding: 0 15px;
            }
            
            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
                gap: 20px;
            }
            
            .footer-content {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .nav-links, .auth-buttons {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding-top: 80px;
            }
            
            .hero-content, .whatsapp-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .hero-image {
                order: -1;
            }

            .hero-image {
    margin-top: 20px; /* push image down to align with stats */
}
            
            .hero-image img {
                height: 450px;
                object-fit: cover;
            }
            
            .stats {
                justify-content: center;
            }
            
            .steps {
                flex-direction: column;
                gap: 30px;
            }
            
            .features-grid {
                gap: 15px;
                display: block;
            }
            
            .feature-card {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
                margin-bottom: 20px;
                padding: 20px;
            }
            
            .feature-card h3 {
                text-align: left;
                margin-top: 10px;
            }
            
            .feature-card p {
                text-align: left;
            }
            
            .feature-icon {
                margin-left: 0;
                margin-right: auto;
            }
            
            .mediator-preview-features {
                flex-direction: column;
                align-items: center;
            }
            
            .preview-feature {
                width: 100%;
                max-width: 300px;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                gap: 15px;
                text-align: left;
            }
            
            .feature-icon {
                margin-bottom: 0;
            }
            
            .mediator-preview-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .mediator-whatsapp {
                width: 100%;
                justify-content: center;
                max-width: 300px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-buttons .btn, .cta-whatsapp {
                width: 100%;
                max-width: 300px;
                text-align: center;
                justify-content: center;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .muslim-cards {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .muslim-features {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            html {
                font-size: 14px;
            }
            
            .hero {
                padding-top: 70px;
                padding-bottom: 40px;
            }
            
            .features, .how-it-works, .mediator-section, .whatsapp, .faq, .cta {
                padding: 40px 0;
            }
            
            .section-title {
                margin-bottom: 40px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-item {
                min-width: 100px;
                padding: 10px;
            }
            
            .faq-question {
                padding: 15px 20px;
            }
            
            .faq-answer {
                padding: 0 20px;
            }
            
            .mobile-menu {
                width: 100%;
            }
                    /* Community Section - NEW */
        .community-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        }