* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    width: 10rem;
    height: 3.5rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.logo::before {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #10b981;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #10b981;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Page Sections */
.page {
    min-height: 100vh;
    display: none;
    padding-top: 80px;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.7);
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease-in;
}

.hero-bg-video.loaded {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        rgba(30, 58, 138, 0.3),
        rgba(59, 130, 246, 0.3),
        rgba(30, 64, 175, 0.3),
        rgba(37, 99, 235, 0.3));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    color: white;
    z-index: 1;
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0.3;
        transform: translateY(30px);
    }
    to {
        opacity: 0.5;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    padding-top: 1rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Download Section */
.download-section {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    margin: 2rem 0;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.download-text {
    color: white;
}

.download-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: white;
    opacity: 0.8;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 250px;
    height: 500px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #6b7280;
    border-radius: 3px;
}

.phone-frame::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #6b7280;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.app-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #c0f3e2, #34d399);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    overflow: hidden;
}

.app-icon-img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.app-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.app-tagline {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.phone-ui-elements {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 5px;
}

.ui-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
}

.ui-dot:nth-child(1) { background: #ef4444; }
.ui-dot:nth-child(2) { background: #10b981; }
.ui-dot:nth-child(3) { background: #3b82f6; }

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(16, 185, 129, 0.5);
    padding: 1rem 2rem;
    border-radius: 15px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: rgba(16, 185, 129, 1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.download-btn.disabled {
    color: #bbb;
    cursor: default;
    transition: none;
    display: disabled;
}

.download-btn.disabled:hover {
    /* background: rgba(16, 185, 129, 1); */
    transform: translateY(0px);
    /* box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4); */
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: url('../photos/professionals.jpg') center center/cover no-repeat;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(48, 67, 98, 0.1);
    color: #fff;
    box-shadow: 0 8px 32px rgba(30,58,138,0.08);
    padding-top: 150px;
}

.feature-card:nth-child(2) {
    background: url('../photos/education.png') center center/cover no-repeat;
}

.feature-card:nth-child(3) {
    background: url('../photos/charity.png') center center/cover no-repeat;
}

.feature-card:nth-child(4) {
    background: url('../photos/quality2.png') center center/cover no-repeat;
}

.feature-card:nth-child(5) {
    background: url('../photos/security.jpg') center center/cover no-repeat;
}

.feature-card:nth-child(6) {
    background: url('../photos/networking.png') center center/cover no-repeat;
}


/* .feature-card::after {
    top: 500px;
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.8);
    pointer-events: none;
    z-index: 1;
} */

.feature-card > * {
    position: relative;
    z-index: 2;
    
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    background: rgba(255,255,255,0.7);
    color: #0e1015;
}

.feature-card p {
    color: #333333;
    line-height: 1.6;
    padding: 0.5rem;
   background: rgba(255,255,255,0.7);
   font-weight: 500;
}

/* Subscription Plans */
.subscription {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.subscription h2 {
    text-align: center;
    color: white;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card.gold {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    border: 3px solid #fbbf24;
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
    transform: scale(1.05);
}

.plan-card.gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 300% 300%;
    animation: goldShimmer 20s ease-in-out infinite;
    pointer-events: none;
}

.plan-card.gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    animation: goldSparkle 30s ease-in-out infinite;
    pointer-events: none;
}

@keyframes goldShimmer {
    0% { background-position: -300% -300%; }
    25% { background-position: 300% -300%; }
    50% { background-position: 300% 300%; }
    75% { background-position: -300% 300%; }
    100% { background-position: -300% -300%; }
}

@keyframes goldSparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    20% { opacity: 0.6; transform: scale(1.03); }
    40% { opacity: 0.8; transform: scale(1.05); }
    60% { opacity: 0.6; transform: scale(1.02); }
    80% { opacity: 0.9; transform: scale(1.08); }
}

.plan-card.platinum {
    background: linear-gradient(135deg, #e5e7eb 0%, #9ca3af 50%, #6b7280 100%);
    border: 3px solid #d1d5db;
    box-shadow: 0 15px 35px rgba(156, 163, 175, 0.4);
    transform: scale(1.02);
}

.plan-card.platinum::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent, rgba(255, 255, 255, 0.15), transparent);
    background-size: 300% 300%;
    animation: platinumShimmer 20s ease-in-out infinite;
    pointer-events: none;
}

.plan-card.platinum::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.4) 0%, transparent 40%),
                radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    animation: platinumSparkle 30s ease-in-out infinite;
    pointer-events: none;
}

@keyframes platinumShimmer {
    0% { background-position: -300% -300%; }
    33% { background-position: 300% -300%; }
    66% { background-position: 300% 300%; }
    100% { background-position: -300% -300%; }
}

@keyframes platinumSparkle {
    0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
    15% { opacity: 0.7; transform: scale(1.02) rotate(3deg); }
    30% { opacity: 0.9; transform: scale(1.03) rotate(5deg); }
    45% { opacity: 0.6; transform: scale(1.01) rotate(-2deg); }
    60% { opacity: 1; transform: scale(1.05) rotate(8deg); }
    75% { opacity: 0.7; transform: scale(1.02) rotate(-3deg); }
    90% { opacity: 0.8; transform: scale(1.04) rotate(6deg); }
}

/* Floating Sparkle Particles */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleFloat 6s ease-in-out infinite;
}

.sparkle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 1px;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.sparkle::after {
    content: '';
    position: absolute;
    top: 1px;
    left: -2px;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

@keyframes sparkleFloat {
    0%, 100% { 
        opacity: 0; 
        transform: translateY(0px) scale(0.5); 
    }
    15% { 
        opacity: 0.6; 
        transform: translateY(-8px) scale(0.8); 
    }
    30% { 
        opacity: 1; 
        transform: translateY(-15px) scale(1); 
    }
    50% { 
        opacity: 0.9; 
        transform: translateY(-25px) scale(1.2); 
    }
    70% { 
        opacity: 0.6; 
        transform: translateY(-20px) scale(1); 
    }
    85% { 
        opacity: 0.3; 
        transform: translateY(-12px) scale(0.7); 
    }
}

/* Gold plan specific sparkles */
.plan-card.gold .sparkle {
    background: rgba(251, 191, 36, 0.9);
    box-shadow: 0 0 6px rgba(251, 191, 36, 0.6);
}

.plan-card.gold .sparkle::before,
.plan-card.gold .sparkle::after {
    background: rgba(251, 191, 36, 0.7);
}

/* Platinum plan specific sparkles */
.plan-card.platinum .sparkle {
    background: rgba(156, 163, 175, 0.9);
    box-shadow: 0 0 6px rgba(156, 163, 175, 0.6);
}

.plan-card.platinum .sparkle::before,
.plan-card.platinum .sparkle::after {
    background: rgba(156, 163, 175, 0.7);
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.plan-card.gold:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow: 0 25px 50px rgba(251, 191, 36, 0.6);
}

.plan-card.platinum:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(156, 163, 175, 0.6);
}

.plan-price {
    font-size: 2.4rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency-symbol {
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.price-amount {
    font-size: 2.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    line-height: 1;
}

.price-period {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

/* Gold and Platinum plan specific styles */
.plan-card.gold .currency-symbol,
.plan-card.gold .price-amount,
.plan-card.platinum .currency-symbol,
.plan-card.platinum .price-amount {
    color: rgba(31, 41, 55, 0.95);
}

.plan-card.gold .price-period,
.plan-card.platinum .price-period {
    color: rgba(31, 41, 55, 0.7);
}

.trial-badge {
    background: linear-gradient(135deg, rgba(255,255,255,150), #f0f2f1);
    border-width: 20px;
    color: #0a865c;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 3rem;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    animation: pulse 40s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.02); }
    50% { transform: scale(1.05); }
    75% { transform: scale(1.02); }
}


.plan-card.gold h3,
.plan-card.platinum h3 {
    color: #1f2937;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.plan-card.gold .plan-features,
.plan-card.platinum .plan-features {
    color: #1f2937;
}

.plan-card.gold .plan-features li,
.plan-card.platinum .plan-features li {
    border-bottom: 1px solid rgba(31, 41, 55, 0.2);
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
}

.plan-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.get-started-btn {
    background: #10b981;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.get-started-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.subscribe-btn {
    background: #10b981;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.subscribe-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.paypal-container {
    margin-top: 1rem;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paypal-container > div {
    width: 100% !important;
    max-width: 300px;
    margin: 0 auto;
}

/* Terms Checkbox Styling */
.terms-checkbox {
    margin: 1rem 0;
    padding: 0.5rem 0;
}

/* Make checkbox, text, and link flow as a sentence in one line */
.terms-checkbox label {
  display: inline;
  font-size: 0.9rem;
  color: #222;
  cursor: pointer;
  line-height: 1.4;
  font-weight: normal;
}
.terms-checkbox input[type="checkbox"] {
  vertical-align: middle;
  margin-right: 0.4em;
}
.terms-checkbox a {
  display: inline;
  margin: 0;
}

.terms-checkbox a {
    display: inline-block;
    margin-top: 0.3em;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.terms-checkbox a:hover {
    /* color: #1e40af; */
    text-decoration: underline;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1e40af;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-visual {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(16, 185, 129, 0.3);
    overflow: hidden;
}

.about-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.3);
    border-color: rgba(16, 185, 129, 0.5);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    overflow: hidden;
    position: relative;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.vacant-title {
    color: white;
    font-style: italic;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.vacant-description {
    color: white;
    font-style: italic;
    line-height: 1.5;
}

.vacant-badge {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    animation: pulse 2s infinite;
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #1e40af;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e40af;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1e40af;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Policies Page */
.policies {
    padding: 5rem 0;
    background: white;
}

.policy-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #3b82f6;
}

.policy-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.policy-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
    color: #1e40af;
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #666;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: left;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #10b981;
}

.footer-logo {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Ensure Quick Links and Connect lists are aligned the same way */
.footer-section ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  text-align: left;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
  text-align: left;
}
.social-links {
  display: block;
  padding-left: 0;
  margin-left: 0;
  text-align: left;
}
.social-link {
  display: flex;
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}
.social-link:hover {
  opacity: 1;
  color: #e5ebe9;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.footer-section ul li a:hover {
  opacity: 1;
  color: #10b981;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    opacity: 0.7;
    font-size: 0.9rem;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-bg-video {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .phone-mockup {
        margin-top: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-icon {
        width: 150px;
        height: 150px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Hide video on tablets and smaller */
@media (max-width: 1024px) {
    .hero-bg-video {
        display: none;
    }
}

/* Floating elements */
.floating-icon {
    position: absolute;
    color: #fff;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 40%; right: 10%; animation-delay: 2s; }
.floating-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }

/* Security Section */
.security-section {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.security-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
}

.security-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.security-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.security-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.security-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.security-feature span:first-child {
    font-size: 1.2rem;
} 

.cta-premium {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #10b981, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}
.cta-premium:hover, .cta-premium:focus {
  color: #1cd78c;
  border-color: #fff;
}
.cta-highlight {
  color: #1cd78c;
  padding: 0 0.3em;
  border-radius: 0.5em;
}



.nav-transparent {
    background: transparent !important;
    box-shadow: none !important;
}
.nav-transparent .nav-links a,
.nav-transparent .logo,
.nav-transparent .logo span {
    color: #10b981 !important; /* green-500 */
}
.nav-transparent .logo-icon {
    filter: brightness(0) saturate(100%) invert(62%) sepia(84%) saturate(453%) hue-rotate(108deg) brightness(92%) contrast(92%);
}

/* Modal Styles */
.modal {
  position: fixed; z-index: 9999; left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center;
}
.modal-content {
  background: #fff; padding: 2em; border-radius: 12px; max-width: 400px; width: 90%; text-align: center; position: relative;
}
.close-modal {
  position: absolute; top: 10px; right: 20px; font-size: 2em; cursor: pointer; color: #888;
}
#signupForm input { width: 90%; margin: 0.5em 0; padding: 0.7em; border-radius: 6px; border: 1px solid #ccc; }
#signupForm button { background: #10b981; color: #fff; border: none; padding: 0.7em 2em; border-radius: 6px; cursor: pointer; }

/* Burger menu styles */
#burger-menu {
  display: none;
}
.burger-bar {
  display: block;
  width: 28px;
  height: 4px;
  background: white;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile nav styles - drop down from top with translucent background */
.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100vw;
  max-width: 100vw;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(30,58,138,0.08);
  z-index: 2000;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  transform: translateY(-40px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), opacity 0.3s;
}
.mobile-nav.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 1.5em 0.5em;
}
.mobile-nav ul li {
  margin: 0.5em 0;
  text-align: left;
}
.mobile-nav ul li a {
  color: #1e3a8a;
  text-decoration: none;
  font-size: 1.2em;
  padding: 0.7em 1em;
  display: block;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav ul li a:hover {
  background: #10b981;
  color: #fff;
}

@media (max-width: 900px) {
  .nav-links {
    display: none !important;
  }
  #burger-menu {
    display: block !important;
  }
}