/* 1. GOOGLE FONTS (Hamesha Sabse Upar) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');

/* 2. CORE BRAND SETTINGS */
:root {
    --brand-blue: #0f73d1;
    --brand-dark: #0f172a;
    --brand-gradient: linear-gradient(135deg, #0f172a 0%, #0f73d1 100%);
    --safety-gradient: linear-gradient(135deg, #0f73d1 0%, #074a8a 100%);
    --info-gradient: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

/* 3. GLOBAL RESET & MOBILE FIXES */
html, body { 
    font-family: 'Inter', sans-serif; 
    background-color: #f8fafc; 
    overflow-x: hidden; 
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

/* Selection Color */
::selection { background: var(--brand-blue); color: white; }

/* 4. REUSABLE UTILITIES */
.text-brand { color: var(--brand-blue); }
.bg-brand { background-color: var(--brand-blue) !important; }
.brand-gradient { background: var(--brand-gradient); }

.text-gradient {
    -webkit-background-clip: text; 
    background-clip: text; 
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #0f73d1, #00d4ff);
}

/* 5. NAVIGATION & HEADER */
.nav-scrolled {
    background: rgba(255, 255, 255, 0.98); 
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px); 
    border-bottom: 2px solid var(--brand-blue); 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.nav-active {
    color: var(--brand-blue) !important;
    position: relative;
}
.nav-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--brand-blue);
    border-radius: 2px;
}

/* 6. COMPONENTS */
.mySwiper { height: 85vh; width: 100%; }

.swiper-slide {
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Glassmorphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 115, 209, 0.1);
}

/* Vision/About Cards */
.vision-card { border-left: 5px solid var(--brand-blue); transition: all 0.3s ease; }
.vision-card:hover { transform: translateX(10px); background: #f0f7ff; }

/* 7. ANIMATIONS */
.floating { animation: floating 3s ease-in-out infinite; }
@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* 8. MEDIA QUERIES (Mobile Fixes) */
@media (max-width: 768px) {
    .mySwiper { height: 60vh; }
    
    @supports (-webkit-touch-callout: none) {
        .h-screen { height: -webkit-fill-available; }
    }
}

.form-input {
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
    width: 100%;
    transition: all 0.3s ease;
}
.form-input:focus {
    background-color: #ffffff;
    border-color: #0f73d1;
    box-shadow: 0 0 0 4px rgba(15, 115, 209, 0.1);
    outline: none;
}

.info-card-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Brand Hover Animation */
.brand-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand-hover:hover {
    transform: translateY(-5px);
    color: #0f73d1; /* Aapka Royal Blue color */
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); } /* Logos ki sankhya ke hisaab se adjust karein */
}

.animate-scroll {
    animation: scroll 20s linear infinite;
    display: flex;
    width: calc(250px * 10); /* Copy kiye hue logos ko milakar total width */
}