html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

:root {
        --primary-color: #0d6efd;
        --secondary-color: #6c757d;
        --accent-color: #eef4ff;
    }

    .hero-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #eef4ff 100%);
        padding: 100px 0;
        border-radius: 0 0 50px 50px;
        margin-bottom: 50px;
    }

    .hero-title {
        font-weight: 600;
        background: -webkit-linear-gradient(45deg, #0d6efd, #0099ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 20px;
    }

    .feature-card {
        border: none;
        border-radius: 15px;
        transition: all 0.3s ease;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        height: 100%;
        padding: 30px;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(13, 110, 253, 0.15);
    }

    .icon-box {
        width: 60px;
        height: 60px;
        background: var(--accent-color);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: var(--primary-color);
        font-size: 24px;
    }

    .cta-section {
        background: var(--primary-color);
        color: white;
        border-radius: 20px;
        padding: 60px;
        margin-top: 80px;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -10%;
        width: 300px;
        height: 300px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
    }

    .btn-lg-custom {
        padding: 12px 35px;
        font-weight: 600;
        border-radius: 50px;
        transition: transform 0.2s;
    }

    .btn-lg-custom:hover {
        transform: scale(1.05);
    }

    /* Simple Fade In Animation */
    .fade-in-up {
        animation: fadeInUp 0.8s ease-out forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    .delay-1 { animation-delay: 0.2s; }
    .delay-2 { animation-delay: 0.4s; }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .navbar-custom {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #0d6efd !important;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    color: #555 !important;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #0d6efd !important;
}

/* Hover underline effect */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #0d6efd;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* CTA Button in Menu */
.btn-nav-cta {
    background-color: #0d6efd;
    color: white !important;
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(13, 110, 253, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(13, 110, 253, 0.3);
    color: white !important;
}

.btn-nav-cta::after { display: none; }

/* Global Body Background */
body {
    background-color: #fcfcfc;
}

@keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
        100% { transform: translateY(0px); }
    }

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.btn-shimmer {
    background: linear-gradient(110deg, #2563eb 8%, #60a5fa 18%, #2563eb 33%);
    background-size: 200% 100%;
    animation: shimmer 5s linear infinite;
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

@media (min-width: 1024px) {
    .text-main {
        font-size: 4.5rem;
        line-height: 1.2 !important;
    }
}