: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;
}

/* FIXED CUSTOM ICON SYSTEM */
.custom-icon {
    display: inline-block;
    fill: currentColor;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Base icon sizes */
.custom-icon-sm {
    width: 16px;
    height: 16px;
}

.custom-icon-md {
    width: 24px;
    height: 24px;
}

.custom-icon-lg {
    width: 32px;
    height: 32px;
}

.custom-icon-xl {
    width: 48px;
    height: 48px;
}

/* FEATURE CARD ICONS - FIXED */
.feature-icon .custom-icon {
    width: 24px !important;
    height: 24px !important;
    fill: white !important;
}

/* WHATSAPP STEP ICONS - FIXED */
.whatsapp-step-icon .custom-icon {
    width: 20px !important;
    height: 20px !important;
    fill: white !important;
}

/* STEP NUMBER ICONS - FIXED */
.step-number .custom-icon {
    width: 24px !important;
    height: 24px !important;
    fill: white !important;
}

/* COMMUNITY ICONS - FIXED */
.community-icon .custom-icon {
    width: 24px !important;
    height: 24px !important;
    fill: white !important;
}

/* BUTTON ICONS - FIXED WHATSAPP BUTTON SIZE */
.btn .custom-icon {
    width: 16px !important;
    height: 16px !important;
    margin-right: 8px;
    vertical-align: middle;
    fill: currentColor;
}

/* NAVIGATION ICONS */
.navbar .custom-icon,
.mobile-menu-btn .custom-icon,
.close-menu-btn .custom-icon {
    width: 20px !important;
    height: 20px !important;
    fill: var(--dark) !important;
}

/* SOCIAL MEDIA ICONS */
.social-links .custom-icon {
    width: 20px !important;
    height: 20px !important;
    fill: white !important;
}

/* MODAL ICONS - FIXED SIZE */
.modal-option i {
    font-size: 20px !important;
    width: 36px;
    height: 36px;
}

.contact-item .custom-icon {
    width: 40px !important;
    height: 40px !important;
    fill: var(--primary) !important;
    flex-shrink: 0;
    padding: 8px;
    background: rgba(204, 51, 139, 0.1);
    border-radius: 50%;
}

/* FAQ AND FOOTER CHEVRON ICONS - ADDED */
.faq-question i {
    font-size: 16px !important;
    width: auto;
    height: auto;
}

.footer-links h4 i {
    font-size: 14px !important;
    width: auto;
    height: auto;
}

/* HOVER EFFECTS */
.custom-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* 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;
}

/* 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%);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    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: 20px 35px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
    /* Add this - was inheriting default */
    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);
}

.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: 8px;
    padding: 12px 24px;
    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;
    align-items: center;
    justify-content: center;
}

.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: 45px;
    height: 45px;
    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 */
.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;
    min-height: 240px;
    gap: 15px;
}

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

.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 {
    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;
}

.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;
}

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

.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;
}

/* 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: 8px;
    padding: 12px 24px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    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);
}

.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);
}

/* FIXED FOOTER CHEVRON ICONS */
.footer-links h4 i::before {
    content: "▼";
    font-family: inherit;
    font-style: normal;
    font-size: 12px;
    color: var(--light-magenta);
    transition: transform 0.3s;
}

.footer-links.expanded h4 i::before {
    content: "▲";
}

.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;
}

/* FIXED FAQ CHEVRON ICONS */
.faq-question i::before {
    content: "▼";
    font-family: inherit;
    font-style: normal;
    font-size: 14px;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i::before {
    content: "▲";
}

.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-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: 20px !important;
    width: 40px !important;
    height: 40px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.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: transparent;
    /* Change from #25D366 to transparent */
    color: var(--primary);
    /* Change from white to your primary color */
    border: 2px solid var(--primary);
    /* Add a border */
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    margin-top: 8px;
    transition: all 0.3s;
}

.whatsapp-link:hover {
    background-color: var(--primary);
    /* Add hover effect */
    color: white;
}

.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);
}

/* FIXED REGISTER PROFILE MODAL ICONS - Font Family Change */
.modal-option i::before {
    content: attr(data-icon);
    font-family: "inherit";
    font-style: normal;
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary);
}

.modal-option:hover i::before {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* WhatsApp option */
.modal-option[data-option="whatsapp"] i::before {
    content: "📱";
}

/* Phone call option */
.modal-option[data-option="call"] i::before {
    content: "📞";
}

/* QR code option */
.modal-option[data-option="qr"] i::before {
    content: "📱";
}

.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;
}

.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::before {
    content: "📞";
    font-family: inherit;
    font-style: normal;
    font-size: 20px;
    width: 36px;
    height: 36px;
    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 li::before {
    content: "✓";
    color: var(--success);
    margin-right: 10px;
    font-weight: bold;
}

.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%);
}

/* Introductory Offer Styles */
.original-period {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.offer-period {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
}

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

.pricing-card::before {
    content: "Introductory Offer!";
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

/* 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;
}

/* 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: 992px) {
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .community-card {
        min-height: 220px;
    }
}

@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;
        margin-top: 20px;
    }

    .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;
    }

    .footer-links h4 {
        cursor: pointer;
        position: relative;
    }

    .footer-content-section {
        display: none;
        max-height: none;
        overflow: visible;
    }

    .footer-content-section.show {
        display: block !important;
    }

    .footer-links h4 i {
        display: inline-block;
    }

    .mobile-call {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .desktop-call {
        display: none;
    }

    .call-number-display {
        display: none !important;
    }

    .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 (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;
    }
}

@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%;
    }

    /* Remove the previous font icon fix and use this SVG fix instead */
    @media (min-width: 769px) {

        .feature-icon .custom-icon,
        .community-icon .custom-icon,
        .step-number .custom-icon {
            width: 24px !important;
            height: 24px !important;
            fill: white !important;
            display: inline-block !important;
        }

        /* Add this line specifically for WhatsApp icons */
        .whatsapp-step-icon .custom-icon {
            width: 20px !important;
            height: 20px !important;
            fill: white !important;
            display: inline-block !important;
        }
    }
}