/* ===== CSS Variables & Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lock-scroll,
body.lock-scroll {
    overflow: hidden !important;
    height: 100% !important;
    touch-action: none !important;
}

:root {
    /* Colors */
    --primary: #4C2FBA;        /* Deep Brand Purple */
    --primary-dark: #3A238C;
    --secondary: #FF9100;      /* Vibrant Brand Orange */
    --accent: #FFAB00;         /* Golden Accent */
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --border: #E2E8F0;
    
    /* Gradients (Inspired by Logo Shade & Depth) */
    --gradient-primary: linear-gradient(135deg, #4C2FBA 0%, #FF9100 100%);
    --gradient-purple: linear-gradient(135deg, #4C2FBA 0%, #7B1FA2 100%);
    --gradient-orange: linear-gradient(135deg, #FF9100 0%, #FFAB00 100%);
    --gradient-glass: linear-gradient(135deg, rgba(76, 47, 186, 0.1) 0%, rgba(255, 145, 0, 0.1) 100%);
    --gradient-emerald: linear-gradient(135deg, #10b981 0%, #059669 100%);
    
    /* Typography */
    --font-display: 'Barlow', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-ui: 'Jost', sans-serif;
    
    /* Shadows (Updated with Brand Tone) */
    --shadow-sm: 0 2px 8px rgba(76, 47, 186, 0.08);
    --shadow-md: 0 8px 24px rgba(76, 47, 186, 0.12);
    --shadow-lg: 0 16px 48px rgba(76, 47, 186, 0.16);
    --shadow-3d: 0 20px 60px rgba(76, 47, 186, 0.25);
    
    /* Timing */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

:root {
    --bg-card: #ffffff;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --hero-bg: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #fce7f3 100%);
    --bg-glass: rgba(255, 255, 255, 0.9);
}

/* Theme toggle removed */

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== Navigation ===== */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.nav-bar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer .nav-logo {
    align-items: center; /* Keeping center but will adjust text specifically if needed */
}

.footer .logo-text {
    color: white !important;
    line-height: 1;
    margin-top: 2px; /* Fine-tune to match heading baseline */
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-button {
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    font-family: var(--font-body);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 8px; /* Increased gap for slider look */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1101;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 4px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Slider Circles */
.mobile-menu-btn span::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border: 2px solid white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
}

/* Top Span Circle Position */
.mobile-menu-btn span:first-child::before {
    left: 4px;
}

/* Bottom Span Circle Position */
.mobile-menu-btn span:last-child::before {
    right: 4px;
}

/* Active State (X conversion) */
.mobile-menu-btn.active span:first-child {
    transform: translateY(5.5px) rotate(45deg);
}

.mobile-menu-btn.active span:last-child {
    transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-menu-btn.active span::before {
    opacity: 0;
    transform: translateY(-50%) scale(0);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    bottom: 0;
    width: 300px;
    background: var(--bg-primary);
    padding: 80px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1100;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    left: auto;
}

.mobile-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-close-btn:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.mobile-menu.active {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 40px 120px; /* Increased padding on all sides for the hero section */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-bg);
    z-index: -1;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

/* FLOATING SOCIAL SIDEBAR */

.social-sidebar {
    position: fixed;
    left: 0;
    top: 45%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

/* SOCIAL BUTTON */

.social-icons {
    position: relative;
    width: 55px;
    height: 55px;
    background: #ffffff;
    border-radius: 0 50px 50px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.45s ease;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    animation: iconBounce 3s infinite ease-in-out;
}

/* ICON */

.social-icons i {
    min-width: 58px;
    text-align: center;
    font-size: 22px;
    z-index: 2;
    flex-shrink: 0;
}

/* TEXT */

.social-icons span {
    white-space: nowrap;
    opacity: 0;
    font-size: 15px;
    font-weight: 600;
    transform: translateX(20px);
    transition: all 0.4s ease;
    color: #222;
}

/* HOVER EXPAND EFFECT */

.social-icons:hover {
    width: 165px;
    transform: translateX(0);
    animation: hyperPulse 1s infinite;
}

.social-icons:hover span {
    opacity: 1;
    transform: translateX(0);
}

/* AUTO BOUNCE ANIMATION */

.social-icons:nth-child(2) {
    animation-delay: 0.2s;
}

.social-icons:nth-child(3) {
    animation-delay: 0.4s;
}

.social-icons:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes iconBounce {

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

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

/* HYPER PULSE */

@keyframes hyperPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(0,0,0,0.12),
            0 10px 25px rgba(0,0,0,0.15);
    }

    70% {
        box-shadow:
            0 0 0 15px rgba(0,0,0,0),
            0 10px 25px rgba(0,0,0,0.15);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(0,0,0,0),
            0 10px 25px rgba(0,0,0,0.15);
    }
}

/* FACEBOOK */

.facebook i {
    color: #1877f2;
}

/* INSTAGRAM */

.instagram i {
    color: #e1306c;
}

/* LINKEDIN */

.linkedin i {
    color: #0077b5;
}

/* WHATSAPP */

.whatsapp i {
    color: #25d366;
}

/* MOBILE RESPONSIVE */

@media (max-width: 768px) {

    .social-sidebar {
        left: 0;
        top: 38%;
        gap: 12px;
    }

    .social-icons {
        width: 52px;
        height: 52px;
    }
    .social-icons i {
        min-width: 52px;
        font-size: 20px;
    }

    .social-icons:hover {
        width: 160px;
    }

    .social-icons span {
        font-size: 14px;
    }
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(76, 47, 186, 0.2), rgba(123, 31, 162, 0.2));
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 145, 0, 0.2), rgba(255, 171, 0, 0.2));
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(76, 47, 186, 0.15), rgba(255, 145, 0, 0.15));
    bottom: 10%;
    left: 15%;
    animation-delay: 10s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 171, 0, 0.2), rgba(76, 47, 186, 0.2));
    top: 30%;
    right: 20%;
    animation-delay: 15s;
}

/* Dark mode shape overrides removed */

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(20px, 20px) rotate(270deg);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge-3d {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--bg-glass);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    animation: bounce 2s infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.primary-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    font-family: var(--font-body);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-3d);
}

.primary-btn.large {
    padding: 18px 36px;
    font-size: 17px;
}

.secondary-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-body);
}

.secondary-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.secondary-btn.large {
    padding: 18px 36px;
    font-size: 17px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Visual Cards */
.hero-visual {
    position: relative;
    height: 500px;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Visual Elements */
.visual-card {
    position: absolute;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 32px; /* Increased internal padding for cards */
    box-shadow: var(--shadow-3d);
    transition: transform var(--transition-base);
    z-index: 10;
}

.visual-card:hover {
    transform: translateY(-8px) scale(1.02);
    z-index: 20;
}

.card-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.card-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.card-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-emerald);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: block;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.card-1 {
    top: -20px;
    left: -40px;
    width: 280px;
    animation: floatCard 3s infinite ease-in-out;
}

.card-2 {
    top: 120px;
    right: -20px;
    width: 240px;
    animation: floatCard 3s infinite ease-in-out 1s;
}

.card-3 {
    bottom: -20px;
    left: 20px;
    width: 220px;
    animation: floatCard 3s infinite ease-in-out 2s;
}

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

/* Hero Video 3D Styles */
.video-container-3d {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
    z-index: 10; /* Higher priority */
    animation: floatVideo 4s infinite ease-in-out;
}

.hero-video-logo {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    object-fit: contain;
    background: transparent;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(124, 77, 255, 0.3));
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 1;
    animation: glowPulse 4s infinite ease-in-out;
}

@keyframes floatVideo {
    0%, 100% { transform: translateY(0) rotateX(5deg) rotateY(-5deg); }
    50% { transform: translateY(-20px) rotateX(-5deg) rotateY(5deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.video-container-3d:hover .hero-video-logo {
    transform: scale(1.05) rotateY(15deg) translateZ(50px);
}

.card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.card-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.card-progress {
    width: 100%;
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    animation: progressFill 2s ease-out;
}

@keyframes progressFill {
    from {
        width: 0;
    }
}

.card-chart {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 80px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-accent);
    border-radius: 8px 8px 0 0;
    animation: chartGrow 1s ease-out;
}

@keyframes chartGrow {
    from {
        height: 0;
    }
}

.card-value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(-45deg);
}

/* ===== Section Styling ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
}

/* ===== Courses Slider Section ===== */
.courses-slider-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.course-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    height: 100%;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-3d);
}

.course-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.course-badge.trending {
    color: #f5576c;
}

.course-badge.new {
    color: #00f2fe;
}

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.course-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    z-index: 1;
}

.course-content {
    padding: 24px;
}

.course-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.course-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.course-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 13px;
    color: var(--text-secondary);
}

.course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.course-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 480px) {
    .course-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
}

.price-current {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.price-old {
    font-size: 16px;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.enroll-btn {
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.enroll-btn:hover {
    transform: scale(1.05);
}

/* Swiper Customization */
.swiper {
    padding-bottom: 60px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gradient-primary);
}

/* ===== Features Section ===== */
.features-section {
    padding: 100px 0;
}

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

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card[data-delay="0"] {
    animation-delay: 0s;
}

.feature-card[data-delay="100"] {
    animation-delay: 0.1s;
}

.feature-card[data-delay="200"] {
    animation-delay: 0.2s;
}

.feature-card[data-delay="300"] {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-3d);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}

.gradient-1 {
    background: var(--gradient-purple);
}

.gradient-2 {
    background: var(--gradient-orange);
}

.gradient-3 {
    background: var(--gradient-primary);
}

.gradient-4 {
    background: var(--gradient-purple);
}

/* Feature Visual Helpers */
.card-progress {
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 16px;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.card-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
    margin-top: 16px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-orange);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease-in-out;
    animation: growBar 1s ease-out forwards;
}

@keyframes growBar {
    from { height: 0; }
}

.feature-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.testimonialsSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--border);
    height: auto;
}

.quote-icon {
    font-size: 40px;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
}

.author-role {
    font-size: 14px;
    color: var(--text-secondary);
}

.rating {
    font-size: 18px;
}

/* ===== Brochure Section ===== */
.brochure-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.brochure-card {
    background: var(--gradient-purple);
    border-radius: 24px;
    padding: 60px 40px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(76, 47, 186, 0.2);
}

.brochure-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.brochure-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.brochure-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 500;
}

.brochure-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 24px;
    max-width: fit-content;
}

.brochure-brand .logo-img {
    height: 40px;
}

.brochure-brand .logo-text {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.download-btn {
    display: block;
    background: white;
    color: var(--primary);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: fit-content;
    margin: 0 auto;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .brochure-title {
        font-size: 32px;
    }
    .brochure-card {
        padding: 40px 24px;
    }
    .brochure-brand {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    .download-btn {
        margin: 0 auto;
    }
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    z-index: -1;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .secondary-btn {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.cta-section .secondary-btn:hover {
    background: transparent;
    color: white;
}

/* ===== Footer Redesign (Reference Style) ===== */
.footer {
    background: #3a0279;
    color: #ffffff;
    padding: 0 0 40px;
    font-family: var(--font-display);
    position: relative;
    margin-top: 100px; /* Space for floating newsletter */
}

.footer-newsletter {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: #ffffff;
    padding: 10px;
    border-radius: 50px;
    display: flex;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.footer-newsletter input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 30px;
    font-size: 16px;
    outline: none;
    color: #333;
}

.footer-newsletter .subscribe-btn {
    background: #c3a689; /* Gold/Tan color from image */
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-newsletter .subscribe-btn:hover {
    background: #b29578;
}

.footer-top {
    padding-top: 100px;
    padding-bottom: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 70px;
    align-items: flex-start;
    padding-left: 80px;
}
.footer-col {
    padding-top: 25px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.footer-description {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 20px;
}

.read-more {
    color: #c3a689;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-partners {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.partners-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 15px;
}

.partner-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-dot {
    width: 14px;
    height: 14px;
    border: 2px solid #c3a689;
    border-radius: 50%;
    display: block;
    position: relative;
}

.partner-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #c3a689;
    border-radius: 50%;
}

.see-all {
    color: #c3a689;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.footer-bottom strong {
    color: rgba(255, 255, 255, 0.8);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer-col:first-child {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .footer-newsletter {
        width: 95%;
        border-radius: 10px;
        flex-direction: column;
        padding: 20px;
    }
    .footer-newsletter input {
        margin-bottom: 15px;
        padding: 10px;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col:first-child {
        grid-column: span 2;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-col:first-child {
        grid-column: span 1;
    }
    .partner-list {
        justify-content: center;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 40px;
    }
    
    .footer-col:first-child .footer-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .nav-links {
        display: none;
    }
    
    .cta-button {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1101;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-section {
        padding: 100px 20px 60px; /* Reduced top padding to fix gap */
        min-height: auto;
    }

    .hero-visual {
        display: none !important; /* Hide visuals on mobile as requested */
    }

    .visual-card .card-icon {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .visual-card .card-title {
        font-size: 11px;
        line-height: 1.2;
    }

    .visual-card .card-value {
        font-size: 18px;
    }

    .visual-card .card-subtitle {
        font-size: 8px;
    }

    .visual-card .card-progress,
    .visual-card .card-chart {
        margin-top: 10px;
        height: 6px;
    }

    .visual-card .chart-bar {
        gap: 4px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 10px;
        padding: 15px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        margin: 30px 0 0;
    }
    
    .stat-item {
        flex: 1;
        min-width: 70px;
        text-align: center;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 10px;
        line-height: 1.2;
    }
    
    .stat-divider {
        display: block;
        height: 25px;
        opacity: 0.5;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 32px;
    }
}

/* ===== Enrollment Modal ===== */
.enroll-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.enroll-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.enroll-modal {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    width: 95%;
    max-width: 800px;
    border-radius: 28px;
    padding: 35px;
    position: relative;
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.7);
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 92vh;
    font-family: var(--font-display) !important;
    overscroll-behavior: contain;
}

.enroll-modal::-webkit-scrollbar {
    width: 6px;
}

.enroll-modal::-webkit-scrollbar-track {
    background: transparent;
}

.enroll-modal::-webkit-scrollbar-thumb {
    background: rgba(76, 47, 186, 0.2);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.enroll-modal::-webkit-scrollbar-thumb:hover {
    background: rgba(76, 47, 186, 0.4);
}

/* Firefox */
.enroll-modal {
    scrollbar-width: thin;
    scrollbar-color: rgba(76, 47, 186, 0.2) transparent;
}

/* Modal light theme only */

.enroll-modal-overlay.active .enroll-modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--bg-secondary);
    color: var(--primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

.enroll-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.form-group label i {
    margin-right: 6px;
    color: var(--primary);
    opacity: 0.8;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    color: var(--text-primary);
    transition: all 0.2s ease;
    font-family: var(--font-display);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(76, 47, 186, 0.1);
    outline: none;
    background: white;
}

.radio-group {
    display: flex;
    gap: 20px;
    padding: 8px 0;
}

.radio-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    user-select: none;
    transition: opacity 0.2s ease;
}

.radio-label input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    margin: 0;
    padding: 0;
    cursor: pointer;
    background: white;
    position: relative;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-sizing: border-box;
    display: block;
}

.radio-label span {
    display: inline-block;
    line-height: 20px;
    height: 20px;
}

.radio-label input[type="radio"]:checked {
    border-color: var(--primary);
    background: white;
}

.radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes radioPop {
    from { transform: translate(-50%, -50%) scale(0); }
    to { transform: translate(-50%, -50%) scale(1); }
}

.radio-label:hover input[type="radio"] {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(76, 47, 186, 0.1);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 10px;
}

.form-note a {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .enroll-modal {
        padding: 20px;
        border-radius: 20px;
        width: 92%;
        margin: 10px;
    }

    .modal-header h2 {
        font-size: 22px;
    }

    .modal-header p {
        font-size: 13px;
    }
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-purple);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-display);
    position: relative;
    box-shadow: 0 10px 25px -5px rgba(76, 47, 186, 0.3);
}

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

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn svg {
    margin: 0;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.submit-btn:hover svg {
    transform: translateX(-4px);
}

.full-width {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.modal-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

.circle-1 {
    width: 150px;
    height: 150px;
    background: var(--primary);
    top: -50px;
    right: -50px;
}

.circle-2 {
    width: 120px;
    height: 120px;
    background: var(--accent);
    bottom: -30px;
    left: -30px;
}

/* ================================
      ULTRA PREMIUM WHATSAPP BTN
================================ */

.whatsapp-float{

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 78px;
    height: 78px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    background:
        linear-gradient(
            145deg,
            #25D366,
            #18b857
        );

    overflow: hidden;

    z-index: 999999;

    backdrop-filter: blur(20px);

    border: 2px solid rgba(255,255,255,0.2);

    box-shadow:
        0 15px 40px rgba(37,211,102,0.35),
        inset 0 3px 8px rgba(255,255,255,0.25),
        inset 0 -4px 10px rgba(0,0,0,0.15);

    transition: all 0.5s ease;

    animation:
        floatWhatsapp 3s ease-in-out infinite,
        glowPulse 2s infinite;
}

/* ICON */

.whatsapp-float i{

    color: white;

    font-size: 42px;

    position: relative;
    z-index: 5;

    transition: all 0.5s ease;
}

/* OUTER GLOW */

.whatsapp-float::before{

    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    background:
        radial-gradient(
            rgba(255,255,255,0.35),
            transparent
        );

    transform: scale(0);

    transition: 0.6s ease;
}

/* SHINE EFFECT */

.whatsapp-float::after{

    content: "";

    position: absolute;

    top: -140%;
    left: -50%;

    width: 45%;
    height: 350%;

    background: rgba(255,255,255,0.35);

    transform: rotate(25deg);

    transition: 0.8s ease;
}

/* HOVER */

.whatsapp-float:hover{

    transform:
        translateY(-12px)
        scale(1.15)
        rotate(-6deg);

    box-shadow:
        0 25px 60px rgba(37,211,102,0.5),
        0 0 35px rgba(37,211,102,0.45),
        0 0 60px rgba(37,211,102,0.25);
}

/* ICON EFFECT */

.whatsapp-float:hover i{

    transform:
        scale(1.25)
        rotate(18deg);

    text-shadow:
        0 0 20px rgba(255,255,255,0.9);
}

/* GLOW EXPAND */

.whatsapp-float:hover::before{

    transform: scale(1.8);
}

/* SHINE MOVE */

.whatsapp-float:hover::after{

    left: 160%;
}

/* FLOATING */

@keyframes floatWhatsapp{

    0%{
        translate: 0 0;
    }

    50%{
        translate: 0 -12px;
    }

    100%{
        translate: 0 0;
    }

}

/* PULSE GLOW */

@keyframes glowPulse{

    0%{

        box-shadow:
            0 0 0 0 rgba(37,211,102,0.5),
            0 15px 40px rgba(37,211,102,0.35);
    }

    70%{

        box-shadow:
            0 0 0 22px rgba(37,211,102,0),
            0 20px 50px rgba(37,211,102,0.45);
    }

    100%{

        box-shadow:
            0 0 0 0 rgba(37,211,102,0),
            0 15px 40px rgba(37,211,102,0.35);
    }

}

/* CLICK EFFECT */

.whatsapp-float:active{

    transform:
        scale(0.92);
}

/* MOBILE */

@media(max-width:768px){

    .whatsapp-float{

        width: 64px;
        height: 64px;

        right: 16px;
        bottom: 16px;
    }

    .whatsapp-float i{

        font-size: 34px;
    }

}