@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.5);
    --secondary: #0f172a;
    --accent: #22c55e;
    --bg-dark: #020617;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.navbar-brand {
    font-family: 'Outfit', sans-serif;
}

/* Sections */
.section-padding {
    padding: 120px 0;
}

.section-title {
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

/* Advanced Background Blobs */
.bg-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

/* Glassmorphism Navbar - Ultra Classy */
.navbar {
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    margin-top: 15px;
    width: 90%;
    left: 5%;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Sophisticated Shadow */
    border: 1px solid var(--glass-border);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #a855f7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary) !important;
    padding: 0.5rem 1.2rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.2rem;
    right: 1.2rem;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* Hero Section - High Conversion Look */
.hero {
    padding: 200px 0 120px;
    background:
        radial-gradient(circle at 0% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Floating Animation for Hero Image */
.hero-img-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

.hero-img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--primary), #a855f7);
    border-radius: 40px;
    z-index: -1;
    opacity: 0.2;
    filter: blur(40px);
}

/* Premium Feature Cards */
.feature-card {
    background: white;
    border: 1px solid #f1f5f9;
    padding: 3rem 2.5rem;
    border-radius: 30px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.12);
    border-color: var(--primary-glow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg);
}

/* Buttons - Premium Feel */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 100px;
    /* Capsule buttons */
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #4338ca 100%);
    border: none;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(99, 102, 241, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* Glass Section */
.glass-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 60px;
}

/* Footer Upgrade */
footer {
    background: var(--bg-dark);
    border-radius: 60px 60px 0 0;
    margin-top: 100px;
}

.footer-link {
    color: #94a3b8;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: var(--white);
    padding-left: 10px;
}

@media (max-width: 991px) {
    .navbar.scrolled {
        width: 96%;
        left: 2%;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}