/* ============================================
   PolicySahayak.com — Membership Advisory Platform
   Design System + Complete Stylesheet
   ============================================ */

/* ===== GOOGLE FONTS (loaded in HTML) ===== */

/* ===== DESIGN TOKENS ===== */
:root {
    /* Primary */
    --trust-blue: #1E88E5;
    --trust-blue-dark: #1565C0;
    --safety-green: #2E7D32;
    --safety-green-dark: #1B5E20;

    /* Backgrounds */
    --bg-light-blue: #E3F2FD;
    --bg-soft-green: #E8F5E9;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --bg-dark-card: #1e293b;

    /* Plan Colors */
    --basic-from: #BBDEFB;
    --basic-to: #64B5F6;
    --gold-from: #FFD54F;
    --gold-to: #FFA000;
    --exec-from: #000000;
    /* Pure Black */
    --exec-to: #1a1a1a;
    /* Rich Onyx */

    /* CTA */
    --whatsapp: #25D366;
    --urgency-orange: #FF6F00;
    --danger: #ef4444;

    /* Text */
    --text-dark: #1a1a2e;
    --text-body: #374151;
    --text-muted: #6b7280;
    --text-light: #9ca3af;

    /* Misc */
    --border: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Prevents fixed navbar from overlapping target sections */
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== SECTION SPACING ===== */
.section {
    padding: 5rem 0;
    contain: layout style;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.3rem;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
}

/* ===== MINI TIMER ===== */
.mini-timer {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.timer-flash {
    animation: flash-red 1s infinite alternate;
}

@keyframes flash-red {
    0% {
        opacity: 1;
        background: rgba(239, 68, 68, 0.15);
    }
    100% {
        opacity: 0.7;
        background: rgba(239, 68, 68, 0.05);
        color: #b91c1c;
    }
}

.plan-note {
    margin-top: 1rem !important;
    font-weight: 600;
    color: var(--trust-blue) !important;
    font-size: 0.95rem !important;
    max-width: 650px !important;
}

/* ===== TAGS ===== */
.tag {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.tag-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.tag-blue {
    background: rgba(30, 136, 229, 0.1);
    color: var(--trust-blue);
}

.tag-green {
    background: rgba(46, 125, 50, 0.1);
    color: var(--safety-green);
}

.tag-gold {
    background: rgba(255, 160, 0, 0.1);
    color: var(--gold-to);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-orange {
    background: linear-gradient(135deg, var(--urgency-orange), #E65100);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 111, 0, 0.4);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.btn-blue {
    background: var(--trust-blue);
    color: #fff;
}

.btn-blue:hover {
    background: var(--trust-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.3);
}

/* Plan Specific Buttons */
.btn-plan-basic {
    background: linear-gradient(135deg, var(--trust-blue), var(--trust-blue-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.2);
}

.btn-plan-gold {
    background: linear-gradient(135deg, var(--gold-from), var(--gold-to));
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 160, 0, 0.3);
}

.btn-plan-exec {
    background: #000;
    color: #fff;
    border: 1px solid #444;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.btn-plan-exec:hover {
    background: #111;
    border-color: #666;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--text-dark);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== NAVBAR ===== */
.navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    border-bottom: 2px solid var(--urgency-orange);
    transition: all 0.3s;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.navbar.scrolled .container {
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
}

/* Dual Logo Header */
.logo-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: height 0.3s;
}

/* Visibility Toggle based on Body Class */
body.lang-en .logo-hi { display: none !important; }
body.lang-hi .logo-en { display: none !important; }

.navbar.scrolled .logo-img {
    height: 38px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-body);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--trust-blue);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang-toggle {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-light);
}

.lang-btn {
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.lang-btn.active {
    background: var(--trust-blue);
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.4rem;
}

.hamburger span {
    width: 22px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== URGENCY TICKER ===== */
.ticker {
    background: var(--bg-dark);
    color: #fff;
    padding: 0.55rem 0;
    overflow: hidden;
    border-bottom: 2px solid var(--urgency-orange);
    margin-top: 0;
    /* Gap removed: sticky navbar natively pushes this down correctly */
}

.ticker-track {
    display: flex;
    animation: tickerScroll 40s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 2.5rem;
    font-size: 0.82rem;
    font-weight: 500;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--danger);
    animation: pulse 1.5s infinite;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.4);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    contain: layout;
}

@media (min-width: 992px) {
    .hero {
        min-height: 70vh;
        /* Moved from HTML inline styles */
    }
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Desktop: directional gradient — left side very dark, right side lighter so image shows */
    background: linear-gradient(100deg, rgba(15, 23, 42, 0.90) 0%, rgba(15, 23, 42, 0.60) 55%, rgba(15, 23, 42, 0.35) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 650px;
    color: #fff;
}

.hero-content h1,
.hero-subheading {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.hero-subheading .accent {
    color: #FFD54F;
}

.hero-content h1 .accent {
    color: #FFD54F;
}

.hero-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.hero-price {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FFD54F;
}

.hero-price span {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    color: #fff;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.6rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* ===== LIVE BAR ===== */
.live-bar {
    background: linear-gradient(90deg, var(--danger), #b91c1c);
    color: #fff;
    text-align: center;
    padding: 0.85rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.live-bar strong {
    font-size: 1.1rem;
}

/* ===== PROBLEMS SECTION ===== */
.problems {
    background: linear-gradient(180deg, #f8fafc 0%, #fef2f2 100%);
    color: var(--text-body);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(239, 68, 68, 0.1);
}

.problems::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.15);
    filter: blur(100px);
}

.problems .section-header h2 {
    color: var(--text-dark);
}

.problems .section-header p {
    color: var(--text-muted);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.problem-card {
    background: var(--bg-dark);
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.35s;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Bleed gradient now lives on card-body itself —
   No fixed pixel values needed, always aligns perfectly */
.problem-card::after {
    display: none;
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
}

/* Image: natural full height — no cropping, anchor to top */
.problem-card img {
    position: static;
    width: 100%;
    height: auto;
    /* Full image visible at natural proportions */
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    display: block;
    filter: brightness(0.95) saturate(0.95);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.problem-card:hover img {
    filter: brightness(0.85) saturate(1.05);
    transform: scale(1.04);
}

/* Card body overlaps the image bottom by 64px.
   The ::before pseudo creates the gradient bleed IN that overlap zone.
   This self-contained approach works at any image size automatically. */
.problem-card-body {
    position: relative;
    z-index: 3;
    margin-top: -64px;
    /* Pull card-body up to overlap image bottom */
    padding: 0 1.5rem 1.75rem;
    flex: 1;
    background: var(--bg-dark);
}

/* Bleed gradient: sits above the card-body, fades image into dark box */
.problem-card-body::before {
    content: '';
    display: block;
    height: 72px;
    /* Gradient zone height */
    margin: 0 -1.5rem;
    /* Stretch full width (cancels padding) */
    margin-top: -72px;
    /* Lift it up over the image */
    background: linear-gradient(to bottom, transparent 0%, var(--bg-dark) 100%);
    position: relative;
    z-index: 1;
    pointer-events: none;
}

/* Actual text content sits after the bleed pseudo */
.problem-card-body .fomo-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.problem-card-body h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.problem-card-body p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.problem-stat {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--danger);
    font-weight: 600;
    font-size: 0.8rem;
}

/* ===== TEXT PROBLEMS (simpler list) ===== */
.problems-text-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.problem-text-item {
    background: #fff;
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.problem-text-item:hover {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.problem-text-item i {
    color: var(--danger);
    margin-bottom: 0.5rem;
}

/* ===== SOLUTION SECTION ===== */
.solution {
    background: var(--bg-soft-green);
    position: relative;
    overflow: hidden;
    /* Fixes mobile horizontal overflow caused by ::before blur effect */
}

.solution::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.08);
    filter: blur(80px);
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.solution-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.solution-card.blue::before {
    background: linear-gradient(90deg, var(--trust-blue), #42A5F5);
}

.solution-card.green::before {
    background: linear-gradient(90deg, var(--safety-green), #43A047);
}

.solution-card.purple::before {
    background: linear-gradient(90deg, var(--exec-from), var(--exec-to));
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.solution-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: #fff;
}

.solution-icon.blue {
    background: linear-gradient(135deg, var(--trust-blue), #42A5F5);
}

.solution-icon.green {
    background: linear-gradient(135deg, var(--safety-green), #43A047);
}

.solution-icon.purple {
    background: linear-gradient(135deg, var(--exec-from), var(--exec-to));
}

.solution-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.solution-card ul {
    text-align: left;
}

.solution-card li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.solution-card li::before {
    content: '✓';
    color: var(--safety-green);
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== ADVANCED SOLUTIONS (Top 6) ===== */
.adv-solutions {
    background: var(--bg-white);
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.adv-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.adv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--trust-blue);
}

.adv-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.adv-card:hover img {
    transform: scale(1.05);
}

.adv-card-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.adv-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.adv-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.adv-card-icon {
    width: 42px;
    height: 42px;
    background: var(--bg-light-blue);
    color: var(--trust-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--bg-light-blue);
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.step-card {
    flex: 1 1 280px;
    max-width: 350px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--trust-blue), var(--trust-blue-dark));
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== MEMBERSHIP PLANS ===== */
.plans {
    background: var(--bg-white);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.plan-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #fff;
    border: 2px solid var(--border);
    transition: all 0.4s;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.plan-card.popular {
    border-color: var(--gold-to);
    transform: scale(1.03);
}

.plan-card.executive {
    border-color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.plan-card.popular:hover {
    transform: scale(1.03) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -1px;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--gold-from), var(--gold-to));
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 0 0 10px 10px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    padding: 2rem 1.75rem 1.5rem;
    text-align: center;
}

.plan-header.basic {
    background: linear-gradient(135deg, var(--basic-from), var(--basic-to));
    color: #1a3a5c;
}

.plan-header.gold {
    background: linear-gradient(135deg, var(--gold-from), var(--gold-to), var(--gold-from));
    background-size: 200% auto;
    animation: gradientWave 4s ease infinite;
    color: #5d3a00;
}

.plan-header.exec {
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.stars-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.stars-wrap span {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 6px #fff;
    animation: blink-smooth 5s ease-in-out infinite;
}

/* 20 Randomized Positions & Delays across full area */
.stars-wrap span:nth-child(1) {
    width: 1.5px;
    height: 1.5px;
    top: 12%;
    left: 8%;
    animation-delay: 0.2s;
}

.stars-wrap span:nth-child(2) {
    width: 2.5px;
    height: 2.5px;
    top: 28%;
    left: 18%;
    animation-delay: 1.5s;
}

.stars-wrap span:nth-child(3) {
    width: 1px;
    height: 1px;
    top: 8%;
    left: 38%;
    animation-delay: 3.1s;
}

.stars-wrap span:nth-child(4) {
    width: 2px;
    height: 2px;
    top: 32%;
    left: 58%;
    animation-delay: 0.7s;
}

.stars-wrap span:nth-child(5) {
    width: 1.5px;
    height: 1.5px;
    top: 18%;
    left: 82%;
    animation-delay: 4.2s;
}

.stars-wrap span:nth-child(6) {
    width: 2.5px;
    height: 2.5px;
    top: 48%;
    left: 12%;
    animation-delay: 2.2s;
}

.stars-wrap span:nth-child(7) {
    width: 1px;
    height: 1px;
    top: 58%;
    left: 32%;
    animation-delay: 0.5s;
}

.stars-wrap span:nth-child(8) {
    width: 2px;
    height: 2px;
    top: 68%;
    left: 52%;
    animation-delay: 3.8s;
}

.stars-wrap span:nth-child(9) {
    width: 1.5px;
    height: 1.5px;
    top: 82%;
    left: 22%;
    animation-delay: 1.1s;
}

.stars-wrap span:nth-child(10) {
    width: 2px;
    height: 2px;
    top: 78%;
    left: 72%;
    animation-delay: 2.9s;
}

.stars-wrap span:nth-child(11) {
    width: 1px;
    height: 1px;
    top: 88%;
    left: 88%;
    animation-delay: 0.3s;
}

.stars-wrap span:nth-child(12) {
    width: 2.5px;
    height: 2.5px;
    top: 52%;
    left: 92%;
    animation-delay: 4.5s;
}

.stars-wrap span:nth-child(13) {
    width: 1.5px;
    height: 1.5px;
    top: 42%;
    left: 42%;
    animation-delay: 1.9s;
}

.stars-wrap span:nth-child(14) {
    width: 2px;
    height: 2px;
    top: 62%;
    left: 62%;
    animation-delay: 3.5s;
}

.stars-wrap span:nth-child(15) {
    width: 1px;
    height: 1px;
    top: 22%;
    left: 22%;
    animation-delay: 0.9s;
}

.stars-wrap span:nth-child(16) {
    width: 1.5px;
    height: 1.5px;
    top: 88%;
    left: 48%;
    animation-delay: 2.5s;
}

.stars-wrap span:nth-child(17) {
    width: 2px;
    height: 2px;
    top: 72%;
    left: 82%;
    animation-delay: 4.8s;
}

.stars-wrap span:nth-child(18) {
    width: 1.2px;
    height: 1.2px;
    top: 38%;
    left: 78%;
    animation-delay: 1.4s;
}

.stars-wrap span:nth-child(19) {
    width: 2.2px;
    height: 2.2px;
    top: 92%;
    left: 16%;
    animation-delay: 3.2s;
}

.stars-wrap span:nth-child(20) {
    width: 1.8px;
    height: 1.8px;
    top: 14%;
    left: 58%;
    animation-delay: 0.6s;
}

@keyframes blink-smooth {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.plan-header.exec>*:not(.stars-wrap) {
    position: relative;
    z-index: 1;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.plan-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.plan-header.basic h3,
.plan-header.gold h3 {
    color: inherit;
}

.plan-header.exec h3 {
    color: #fff;
}

.plan-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.base-price {
    position: relative;
    font-size: 3rem;
    color: rgba(0,0,0,0.25);
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    display: inline-block;
    text-decoration: none; /* Remove default strike */
}

.base-price::after {
    content: '';
    position: absolute;
    left: -10%;
    top: 50%;
    width: 120%;
    height: 4px;
    background: rgba(239, 68, 68, 0.6);
    transform: rotate(-10deg);
    border-radius: 2px;
}

.plan-header.exec .base-price {
    color: rgba(255,255,255,0.25);
}

.plan-price {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    padding: 0.8rem 0.75rem;
    width: 90%;
    max-width: 190px;
    margin: -0.5rem auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.35rem; /* Tighter vertical spacing */
    border: none;
    /* Coupon Shape with side notches - Restored */
    -webkit-mask-image: radial-gradient(circle at 0 50%, transparent 14px, black 15px), radial-gradient(circle at 100% 50%, transparent 14px, black 15px);
    -webkit-mask-position: 0 0, 100% 0;
    -webkit-mask-size: 51% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-image: radial-gradient(circle at 0 50%, transparent 14px, black 15px), radial-gradient(circle at 100% 50%, transparent 14px, black 15px);
    mask-position: 0 0, 100% 0;
    mask-size: 51% 100%;
    mask-repeat: no-repeat;
    
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Coupon dashed line effect - moved to top for better aesthetics */
.plan-price::before {
    content: '';
    position: absolute;
    top: 28%;
    left: 15px;
    right: 15px;
    height: 1px;
    border-top: 1px dashed rgba(255,255,255,0.25);
    pointer-events: none;
}

.plan-header.basic .plan-price {
    background: linear-gradient(135deg, var(--trust-blue-dark), #0d47a1);
}

.plan-header.gold .plan-price {
    background: linear-gradient(135deg, #e65100, #bf360c); /* Deep orange/gold for contrast */
}

.plan-header.exec .plan-price {
    background: linear-gradient(135deg, #333, #000);
    border-color: var(--gold-to);
}

.plan-card:hover .plan-price {
    transform: scale(1.05) translateY(-5px);
}

.price-label {
    font-size: 0.6rem;
    letter-spacing: 1.2px;
    font-weight: 800;
    text-transform: uppercase;
    opacity: 0.85;
}

.price-main {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    margin: 1px 0;
}

.price-main small {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.plan-per-day-mini {
    font-size: 0.8rem;
    font-weight: 800;
    background: #ffffff; /* White pill for contrast */
    padding: 4px 15px;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    margin-top: 2px;
}

/* Plan-specific text color for the white pill */
.plan-header.basic .plan-per-day-mini { color: var(--trust-blue-dark); }
.plan-header.gold .plan-per-day-mini { color: #bf360c; }
.plan-header.exec .plan-per-day-mini { color: #000000; }

.plan-features {
    padding: 1.5rem 1.75rem 2rem;
}

.plan-features li {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.plan-features li.core-feature {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--trust-blue-dark);
    padding: 0.75rem 0;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li.excluded {
    color: #b91c1c;
    /* Dark warning red */
    font-weight: 600;
    opacity: 0.9;
}

.plan-features li .check {
    color: var(--safety-green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-features li .cross {
    color: var(--danger);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-cta {
    padding: 0 1.75rem 2rem;
    text-align: center;
}

.plan-cta .btn {
    width: 100%;
    justify-content: center;
}

/* ===== WHY CHOOSE ===== */
.why-us {
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--trust-blue);
}

.why-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--bg-light-blue);
    color: var(--trust-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.why-card h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== TRUST / STATS ===== */
.trust-stats {
    background: linear-gradient(135deg, var(--trust-blue) 0%, var(--trust-blue-dark) 100%);
    color: #fff;
    padding: 3.5rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.trust-item p {
    opacity: 0.85;
    font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--bg-white);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testi-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.testi-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testi-stars {
    color: #f59e0b;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.15rem;
}

.testi-card blockquote {
    font-style: italic;
    color: var(--text-body);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

.testi-avatar.blue {
    background: linear-gradient(135deg, var(--trust-blue), #42A5F5);
}

.testi-avatar.green {
    background: linear-gradient(135deg, var(--safety-green), #43A047);
}

.testi-avatar.gold {
    background: linear-gradient(135deg, var(--gold-from), var(--gold-to));
    color: #5d3a00;
}

.testi-author h5 {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.testi-author p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq {
    background: var(--bg-light-blue);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question .arrow {
    transition: transform 0.3s;
    flex-shrink: 0;
    color: var(--trust-blue);
}

.faq-item.open .faq-question .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== BLOG / KNOWLEDGE CENTER ===== */
.blog-page {
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--trust-blue);
}

.blog-card-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-content .tag {
    margin-bottom: 1rem;
}

.blog-card-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    flex-grow: 1;
    /* Ensures titles align in a grid */
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: auto;
    /* Pushes meta to the bottom */
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* Single Post Styles */
.post-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .post-layout {
        grid-template-columns: 2.5fr 1fr;
    }
}

.post-content {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.post-content h1,
.post-content h2,
.post-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.post-content p {
    margin-bottom: 1rem;
}

.post-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(30, 136, 229, 0.1);
    filter: blur(100px);
}

.final-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.final-cta h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.final-cta p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.final-cta .cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0f1a;
    color: #fff;
    padding: 4rem 5% 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-about p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.75rem;
}

.footer-link {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 0.3rem 0;
    transition: all 0.3s;
}

.footer-link:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.8rem;
}

.disclaimer {
    background: rgba(239, 68, 68, 0.08);
    color: #fca5a5;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s;
    animation: waBounce 2.5s ease infinite;
}

.wa-float:hover {
    transform: scale(1.12);
    animation: none;
}

@keyframes waBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .plan-card.popular {
        transform: scale(1);
    }

    .plan-card.popular:hover {
        transform: translateY(-8px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3.5rem 0;
    }

    .navbar {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .navbar .logo-img {
        max-height: 40px;
    }

    .problem-card {
        min-height: 280px;
        /* Drastically reduces scroll-fatigue on mobile screens */
    }

    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 1.25rem;
        box-shadow: var(--shadow-lg);
        gap: 0.75rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .nav-right .btn-orange {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .hero-content {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        text-align: center;
        padding: 0 1.5rem;
        transform: translateY(-50%);
        max-width: 100% !important;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 1.85rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-overlay {
        /* Mobile portrait: uniform strong overlay so text is always readable */
        background: linear-gradient(to bottom,
                rgba(10, 15, 35, 0.82) 0%,
                rgba(10, 15, 35, 0.75) 40%,
                rgba(10, 15, 35, 0.88) 100%) !important;
    }

    /* Problem cards on mobile: image stays natural height, no overrides needed */
    .adv-card img {
        height: 180px;
        object-fit: cover;
    }

    .hero-buttons {
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .problems-grid,
    .solution-cards,
    .steps-grid,
    .testi-grid,
    .trust-grid,
    .adv-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item h3 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .final-cta h2 {
        font-size: 1.6rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .nav-right>.btn-orange {
        display: none !important;
    }

    .nav-right {
        gap: 0.4rem;
    }

    .hero {
        min-height: 75vh;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        /* Text shadow for extra punch on any background */
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
    }

    .hero-content p {
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
    }

    .hero-price {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        gap: 0.6rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .lang-toggle {
        display: flex;
    }

    .lang-btn {
        padding: 0.25rem 0.4rem;
        font-size: 0.6rem;
    }

    .logo-img {
        max-height: 32px;
    }

    .plan-price {
        padding: 0.6rem 1rem;
        max-width: 180px;
    }

    .price-main {
        font-size: 1.3rem;
    }

    .plan-per-day-mini {
        font-size: 0.65rem;
    }

    /* ── Portrait phone problem cards ── */
    .problem-card-body h3 {
        font-size: 1.05rem;
    }

    .problem-card-body p {
        font-size: 0.85rem;
    }
}

/* ===== WAVE TEXT ANIMATION ===== */
.wave-text {
    font-weight: 700;
    display: inline-block;
    background: linear-gradient(to right,
            #7a4d05,
            #c5a021,
            #996515,
            #8a6d3b,
            #7a4d05);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: waveAnimation 4s linear infinite;
}

@keyframes waveAnimation {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: 0% center;
    }
}

/* Social Icons */
.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--trust-blue);
    transform: scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
    border-radius: 50%;
}

.social-icon:hover {
    color: #fff !important;
    transform: translateY(-5px);
    border-color: var(--trust-blue);
    box-shadow: 0 10px 20px rgba(30, 136, 229, 0.3);
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
    display: block;
    transition: transform 0.4s ease;
}

.social-icon:hover svg {
    transform: scale(1.1);
}