@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Override tailwind primary color to a premium corporate blue */
    --color-primary: #2563EB;
    --color-primary-rgb: 37, 99, 235;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

/* Glassmorphism Navbar */
.navbar-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.navbar-area.sticky {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.navbar-area a {
    color: #fff;
    transition: color 0.3s ease;
}

.navbar-area.sticky a:not(.main-btn) {
    color: #334155;
}

.navbar-area.sticky a:not(.main-btn):hover {
    color: var(--color-primary);
}

.navbar-brand-text {
    color: #fff;
    transition: color 0.3s ease-out;
}

.navbar-area.sticky .navbar-brand-text {
    color: #0F172A;
}

.brand-subtitle {
    color: #FBBF24;
    transition: color 0.3s ease-out;
}

.navbar-area.sticky .brand-subtitle {
    color: var(--color-primary);
}

.navbar-area.sticky #mobile-menu-btn {
    color: #0F172A;
}

#mobile-menu {
    background-color: rgba(var(--color-primary-rgb), 0.98);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
}

#mobile-menu a.mobile-link {
    color: #fff !important;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern Card Interactions */
.service-card,
.shadow-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-card:hover,
.hover\:shadow-card-hover:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.1);
}

/* Buttons */
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    padding: 0 32px;
    font-size: 16px;
    line-height: 52px;
    border-radius: 999px;
    color: #fff !important;
    cursor: pointer;
    z-index: 5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    border: none;
    box-shadow: 0 10px 20px -5px rgba(217, 119, 6, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.main-btn:hover {
    box-shadow: 0 15px 30px -5px rgba(217, 119, 6, 0.5);
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.1);
}

.main-btn-2 {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff !important;
    box-shadow: none;
}

.main-btn-2:hover {
    background: #fff;
    color: #1E3A8A;
    border-color: #fff;
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-soft {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* Pattern enhancements */
.pattern-dots {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
}

/* Footer modernizations */
.footer-social li a {
    height: 48px;
    width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
}

.footer-social li a:hover {
    background: #fff;
    color: #1E3A8A;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}