@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@500;600;700&display=swap');

:root {
    --primary-color: #4A148C;
    /* Deep Purple */
    --primary-light: #7c43bd;
    --primary-dark: #12005e;
    --secondary-color: #00E676;
    /* Bright Green */
    --accent-color: #00BFA5;
    /* Teal Accent */
    --bg-light: #f3f4f6;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Custom Navbar */
.custom-navbar {
    background: rgba(74, 20, 140, 0.95);
    /* Primary Color with transparency */
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.btn-hero {
    background: var(--secondary-color);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.6);
    background: #00c853;
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Abstract Shapes for Hero */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-overlay {
    display: none;
    /* Removed old overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

/* Stats Section */
.stats-section {
    background: var(--white);
    padding: 4rem 0;
    margin-top: -4rem;
    border-radius: var(--radius-lg);
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Features/Benefits */
.benefit-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-card:hover::after {
    transform: scaleX(1);
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(74, 20, 140, 0.05);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.benefit-card:hover .feature-icon-box {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(5deg);
}

/* Steps Section */
.step-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.step-item:hover {
    border-left-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.step-circle {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(74, 20, 140, 0.3);
}

.steps-line {
    background: #e5e7eb;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* CTA Strip */
.cta-strip {
    background: var(--primary-color);
    background-image: linear-gradient(45deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 5rem 0;
    color: var(--white);
    border-radius: 0;
    margin: 4rem 0;
}

.cta-strip h3 {
    color: var(--white);
    font-size: 2.5rem;
}

.cta-strip .btn-dark {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
}

.cta-strip .btn-dark:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.05);
}

/* Footer */
.footer-section {
    background: #0f172a;
    /* Very Dark Blue/Gray */
    color: #94a3b8;
    padding-top: 5rem;
}

.footer-section h5 {
    color: var(--white);
    font-weight: 600;
}

.footer-link {
    color: #94a3b8;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-copyright {
    background: #020617;
    /* Black/Blue */
    border-top: 1px solid #1e293b;
    padding: 2rem 0;
    color: #64748b;
}

/* Floating Buttons */
.whatsapp-float,
.call-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none !important;
    animation: float-pulse 2s infinite;
}

.whatsapp-float {
    background: #25d366;
    bottom: 30px;
    right: 30px;
    position: fixed;
    color: white !important;
}

.call-float {
    background: var(--primary-color);
    bottom: 100px;
    /* Stacked */
    right: 30px;
    position: fixed;
    color: white !important;
}

.whatsapp-float:hover,
.call-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

@keyframes float-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 20, 140, 0.7);
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(74, 20, 140, 0);
        transform: scale(1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 20, 140, 0);
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .stats-section {
        padding: 2rem 0;
        width: 95%;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}