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

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-color: #ffffff;
    color: #1e293b;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Navbar Modern */
.navbar {
    transition: all 0.4s ease;
    padding: 1.2rem 0;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #1e2a5e, #2a3f8e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #1e293b;
    transition: 0.2s;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #2d3e8c;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 90px;
}

.text-gradient {
    background: linear-gradient(120deg, #14274e, #2c3e8f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content .lead {
    font-size: 1.2rem;
    color: #475569;
}

.hero-stats {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

/* Floating graphics */
.floating-graphic {
    position: relative;
    height: 380px;
}

.circle-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
    z-index: 0;
}

.c1 {
    width: 240px;
    height: 240px;
    background: #3b4d9e;
    top: 20px;
    left: 20px;
}

.c2 {
    width: 300px;
    height: 300px;
    background: #7c8bd6;
    bottom: 0;
    right: 0;
}

.card-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 32px;
    padding: 12px 24px;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
    position: absolute;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.card-glass i {
    font-size: 1.8rem;
    color: #2d3e8c;
}

.card-glass:first-child {
    top: 30px;
    right: 20px;
}

.small-card {
    bottom: 50px;
    left: 40px;
    padding: 10px 20px;
}

/* Wave */
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: #f9fafc !important;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 32px;
    transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(45, 62, 140, 0.2);
}

.icon-bg {
    width: 74px;
    height: 74px;
    background: #eef2ff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: 0.2s;
}

.icon-bg i {
    font-size: 2.5rem;
    color: #2d3e8c;
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.btn-link {
    text-decoration: none;
    font-weight: 600;
    color: #2d3e8c;
    transition: 0.2s;
}

.btn-link:hover {
    letter-spacing: 1px;
    color: #14274e;
}

/* About Section */
.about-img-wrapper {
    position: relative;
}

.exp-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: white;
    padding: 20px 28px;
    border-radius: 60px;
    font-weight: 800;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 1.3;
    color: #1e2a5e;
    border: 1px solid #e0e7ff;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(110deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 48px;
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}

.stat-icon {
    font-size: 2.8rem;
    color: #94a3f0;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 8px;
}

/* Form Styles */
.form-control,
.form-control-lg {
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
    transition: 0.2s;
}

.form-control:focus {
    border-color: #2d3e8c;
    box-shadow: 0 0 0 4px rgba(45, 62, 140, 0.1);
}

/* Footer */
.footer .social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 12px;
    transition: 0.2s;
    color: white;
}

.footer .social-icons a:hover {
    background: #2d3e8c;
    transform: translateY(-3px);
}

/* Reveal Animations (Intersection Observer) */
.reveal {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, visibility 0s linear 0.2s;
}

.reveal.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}

.reveal.fade-left {
    transform: translateX(-30px);
}

.reveal.fade-left.visible {
    transform: translateX(0);
}

.reveal.fade-right {
    transform: translateX(30px);
}

.reveal.fade-right.visible {
    transform: translateX(0);
}

.reveal.zoom-in {
    transform: scale(0.92);
}

.reveal.zoom-in.visible {
    transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .display-4 {
        font-size: 2.4rem;
    }

    .hero-section {
        min-height: auto;
        padding: 120px 0 70px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }
}

/* Buttons */
.btn-primary {
    background: linear-gradient(95deg, #1e2a5e, #2d3e8c);
    border: none;
    box-shadow: 0 5px 12px rgba(30, 42, 94, 0.2);
    transition: all 0.2s;
}

.btn-primary:hover {
    transform: scale(1.02);
    background: linear-gradient(95deg, #17224d, #25347a);
    box-shadow: 0 8px 20px rgba(30, 42, 94, 0.3);
}

.btn-outline-primary {
    border-color: #2d3e8c;
    color: #2d3e8c;
}

.btn-outline-primary:hover {
    background: #2d3e8c;
    border-color: #2d3e8c;
}