@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #0b0d17;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
    background: #054089;
}

/* Base style resets and utilities */
body {
    font-family: 'Inter', sans-serif;
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

/* Custom text gradient */
.text-gradient-gold {
    background: linear-gradient(135deg, #cca43b 0%, #f3d47d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #054089 0%, #3b82f6 50%, #03dab6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism components */
.glass-panel {
    background: rgba(16, 29, 54, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-panel-light {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Interactive card effects */
.hover-card-trigger {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-card-trigger:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 84, 160, 0.5);
    box-shadow: 0 20px 40px -15px rgba(5, 64, 137, 0.3);
}

/* Micro-animations */
@keyframes pulse-slow {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(1.05); }
}

.animate-pulse-slow {
    animation: pulse-slow 8s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 6s infinite ease-in-out;
}

/* Hide default input outline on focus */
.no-outline:focus {
    outline: none;
    box-shadow: none;
}

/* Swiper Custom Pagination & Navigation styles */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.25) !important;
    opacity: 1 !important;
}
.swiper-pagination-bullet-active {
    background: #cca43b !important;
    width: 24px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold !important;
}

/* Bulletproof Swiper Fade & Layout Fallbacks to prevent text overlapping */
.swiper {
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform, opacity;
}
.swiper-fade .swiper-slide {
    pointer-events: none;
    opacity: 0 !important;
    transition: opacity 800ms ease-in-out !important;
}
.swiper-fade .swiper-slide-active {
    pointer-events: auto;
    opacity: 1 !important;
}


