/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #0F52BA;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0a367a;
}

/* Glass Navbar */
.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Navigation Links Underline Effect */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #0F52BA;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section Gradient Animation */
.hero-gradient {
    background: linear-gradient(-45deg, #0F52BA, #0a367a, #001f3f, #0F52BA);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero Background Blobs - Cleaned up from HTML */
.hero-blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(64px); /* Equivalent to blur-3xl */
    animation: blob 7s infinite;
}

.hero-blob-cyan {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background-color: rgba(0, 194, 203, 0.2);
}

.hero-blob-blue {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background-color: rgba(15, 82, 186, 0.2);
    animation-delay: 2s;
}

/* Blob Animation */
.blob {
    animation: blob 7s infinite;
}

@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animation-delay-2000 {
    animation-delay: 2s;
}

/* Service Cards */
.service-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
}

/* Modal Animation */
@keyframes modalPop {
    0% { opacity: 0; transform: scale(0.95) translateY(10px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.animate-modal-pop {
    animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Markdown Styling inside Modal */
.prose ul {
    list-style-type: disc;
    padding-left: 1.25rem;
}
.prose ol {
    list-style-type: decimal;
    padding-left: 1.25rem;
}
.prose strong {
    color: #0F52BA;
}
