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

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

/* Glass Navbar */
.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    padding: 0.8rem 0;
}

.navbar-brand {
    font-size: 1.7rem;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    transition: 0.3s;
    color: #1e2f3e !important;
}

.nav-link:hover {
    color: #0d6efd !important;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(110deg, #f8f9ff 0%, #ffffff 100%);
    padding-top: 100px;
}

.hero-bg-shape {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(13, 110, 253, 0.05), transparent);
    z-index: 0;
    pointer-events: none;
}

.hero-card {
    position: relative;
    border-radius: 32px;
    transition: transform 0.4s ease;
}

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

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

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 40px -12px rgba(13, 110, 253, 0.2);
    border-color: #0d6efd20;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #0a2540, #0d2f4b);
    background-attachment: fixed;
    position: relative;
}

.counter {
    font-weight: 800;
}

/* Intersection Observer Fade Effects */
.fade-up,
.fade-left,
.fade-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

.visible {
    opacity: 1 !important;
    transform: translateX(0) translateY(0) !important;
}

/* Delay classes */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Buttons and forms */
.btn-primary {
    background: #0d6efd;
    border: none;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    transition: all 0.25s;
}

.btn-primary:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
}

.form-control,
.form-control-lg {
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.2rem;
    }

    .hero-section {
        text-align: center;
        padding-top: 70px;
    }

    .navbar .btn-primary {
        margin-top: 12px;
    }

    .stats-section .display-4 {
        font-size: 2rem;
    }
}