:root {
    --brand-blue: #1e3a8a;
    --brand-darkBlue: #0a0f23;
    --brand-lightBlue: #3b82f6;
    --brand-cyan: #00F0FF;
    --brand-gold: #fbbf24;
    --brand-dark: #0f172a;
}

html {
    background-color: #050914;
    /* Match background color to prevent gaps */
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    background-image: url('image.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-color: #050914;
    -webkit-font-smoothing: antialiased;
}

/* Fix for mobile background attachment */
@media (max-width: 991.98px) {
    body {
        background-attachment: scroll;
    }
}

/* Missing Utility Classes */
.w-full {
    width: 100% !important;
}

.h-auto {
    height: auto !important;
}

.relative {
    position: relative !important;
}

.z-50 {
    z-index: 50 !important;
}

.z-40 {
    z-index: 40 !important;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms !important;
}

.object-cover {
    object-fit: cover !important;
}

.object-top {
    object-fit: cover !important;
    object-position: top !important;
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cursor-pointer {
    cursor: pointer !important;
}

::selection {
    background-color: var(--brand-cyan);
    color: var(--brand-darkBlue);
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Custom Glassmorphism for Navbar */
.glass-nav {
    background: rgba(10, 15, 35, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Stunning Hero Enhancements */
.hero-overlay {
    background: radial-gradient(circle at center, rgba(10, 15, 35, 0.2) 0%, rgba(10, 15, 35, 0.8) 100%);
}

/* Cyber Grid Effect */
#home::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(0, 242, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

/* Gradient Text for Title */
.text-gradient-cyan-gold {
    background: linear-gradient(135deg, #00f2ff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.3));
}

/* Enhanced Buttons */
.btn-glow-gold {
    background: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    border: none;
    transition: all 0.4s ease;
}

.btn-glow-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    background: #fff;
}

/* Float Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.neon-glow:hover {
    color: var(--brand-cyan) !important;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fadeInScale {
    animation: fadeInScale 0.3s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Generic Utility Replacements */
.text-brand-blue {
    color: var(--brand-blue) !important;
}

.text-brand-darkBlue {
    color: var(--brand-darkBlue) !important;
}

.text-brand-lightBlue {
    color: var(--brand-lightBlue) !important;
}

.text-brand-cyan {
    color: var(--brand-cyan) !important;
}

.text-brand-gold {
    color: var(--brand-gold) !important;
}

.bg-brand-blue {
    background-color: var(--brand-blue) !important;
}

.bg-brand-darkBlue {
    background-color: var(--brand-darkBlue) !important;
}

.bg-brand-cyan {
    background-color: var(--brand-cyan) !important;
}

.bg-brand-gold {
    background-color: var(--brand-gold) !important;
}

.border-brand-gold {
    border-color: var(--brand-gold) !important;
}

.border-brand-cyan {
    border-color: var(--brand-cyan) !important;
}

.border-brand-blue {
    border-color: var(--brand-blue) !important;
}

.hover-bg-yellow-400:hover {
    background-color: #facc15 !important;
}

.hover-bg-cyan-400:hover {
    background-color: #22d3ee !important;
}

.hover-bg-slate-700:hover {
    background-color: #334155 !important;
}

.hover--translate-y-1:hover {
    transform: translateY(-0.25rem) !important;
}

/* Miscellaneous specific Tailwind ports */
.tracking-wider {
    letter-spacing: 0.05em !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.whitespace-nowrap {
    white-space: nowrap !important;
}

.shadow-lg-custom {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
/* Variables for consistency */
:root {
    --brand-cyan: #00f2ff;
    --glass-bg: rgba(10, 15, 35, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Glassmorphism Effect */
.glass-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
}

/* Desktop Link Styles */
.nav-link-custom, .btn-nav-custom {
    color: #e2e8f0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    background: none;
    border: none;
}

/* Modern Underline Animation */
/* ===== DESKTOP NAV LINKS ===== */

/* ==========================================
   NAVBAR GLOBAL FIX
========================================== */

.navbar-collapse {
    align-items: center;
    overflow: visible !important;
}

/* ==========================================
   DESKTOP NAV LINKS
========================================== */

.nav-link-custom {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 0;
    font-size: 12.5px;      /* compact size */
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s ease;
    line-height: 1.2;
    flex-shrink: 1;         /* prevents bottom shift */
}

/* Small icon size */
.nav-link-custom i,
.nav-link-custom svg {
    font-size: 11px !important;
    width: 12px;
    height: 12px;
}

/* Underline animation */
.nav-link-custom::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: -3px;
    left: 0;
    background-color: var(--brand-cyan);
    transition: width 0.3s ease;
}

.nav-link-custom:hover::after {
    width: 100%;
}

.nav-link-custom:hover {
    color: var(--brand-cyan);
}


/* ==========================================
   NAV BUTTONS (BROCHURE + CMT)
========================================== */

.btn-nav-custom {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    font-weight: 500;
    padding: 4px 10px;
    background: transparent;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s ease;
    line-height: 1.2;
    flex-shrink: 1;
}

.btn-nav-custom i,
.btn-nav-custom svg {
    font-size: 11px !important;
    width: 12px;
    height: 12px;
}

.btn-nav-custom:hover {
    color: var(--brand-cyan);
    border-color: var(--brand-cyan) !important;
}


/* ==========================================
   DESKTOP ALIGNMENT (STRICT ONE LINE)
========================================== */

#navbarContent .d-lg-flex {
    gap: 12px !important;       /* controlled spacing */
    flex-wrap: nowrap;          /* force single row */
    justify-content: flex-end;
    align-items: center;
}


/* ==========================================
   MOBILE NAV
========================================== */

.mobile-nav-container {
    background: rgba(10, 15, 35, 0.98) !important;
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    margin-top: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.mobile-nav-link,
.mobile-btn-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    line-height: 1.3;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-link i,
.mobile-btn-link i,
.mobile-nav-link svg,
.mobile-btn-link svg {
    font-size: 12px !important;
    width: 14px;
    height: 14px;
}

.mobile-nav-link:hover {
    background: rgba(0, 242, 255, 0.1);
    color: var(--brand-cyan);
}


/* ==========================================
   BOOTSTRAP TOGGLER FIX
========================================== */

.navbar-toggler {
    padding: 4px 8px;
}

.navbar-toggler-icon {
    width: 20px;
    height: 20px;
}


/* ==========================================
   EXTRA SAFE FOR SMALL LAPTOPS (1366px)
========================================== */

@media (max-width: 1400px) {

    .nav-link-custom {
        font-size: 12px;
    }

    .btn-nav-custom {
        font-size: 11px;
        padding: 4px 8px;
    }

    #navbarContent .d-lg-flex {
        gap: 8px !important;
    }
}
/* Modern Compact Footer */
.footer-glass {
    background: linear-gradient(to top, #050814, #0a0f23);
    border-top: 1px solid rgba(0, 242, 255, 0.1);
    padding: 3rem 0 1.5rem 0 !important; /* Reduced top/bottom padding */
}

.footer-brand-text {
    background: linear-gradient(90deg, #fff, var(--brand-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--brand-cyan);
    background: rgba(0, 242, 255, 0.02);
}

.social-icon-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.social-icon-btn:hover {
    background: var(--brand-cyan);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.3);
}

.quick-link-item {
    font-size: 0.85rem;
    color: #94a3b8 !important;
    transition: 0.2s;
}

.quick-link-item:hover {
    color: var(--brand-cyan) !important;
    padding-left: 5px;
}
/* Floating Action Hub Styles */
.floating-hub {
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
}

.glass-pill {
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.glass-pill:hover {
    transform: translateX(-8px) scale(1.05);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

/* Subtle pulse for the "Submit" button to draw attention */
@keyframes button-pulse {
    0% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(234, 179, 8, 0); }
    100% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0); }
}

.pulse-gold {
    animation: button-pulse 2s infinite;
}

/* Icon Container Styling */
.hub-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
}
:root {
    --brand-blue: #003366;
    --brand-gold: #c5a059;
    --dark-blue: #001f3f;
    --text-main: #2d3748;
}

/* Header Decoration */
.header-curve {
    width: 60px;
    height: 4px;
    background: var(--brand-gold);
    border-radius: 10px;
    margin-top: 1rem;
}

.tracking-widest {
    letter-spacing: 0.25em;
    font-size: 0.8rem;
}

/* Main Content Block */
.content-block {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.content-block:hover {
    transform: scale(1.01);
}

/* Side Title Panel */
.block-title-side {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: 180px;
}

.block-title-side h3 {
    color: #fff;
    font-weight: 800;
    font-size: 1.6rem;
    margin: 0;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.block-number {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.15;
    color: #fff;
    z-index: 1;
}

.text-dark-blue { color: var(--dark-blue) !important; }

/* Side Text Panel */
.block-text-side {
    padding: 3rem;
    display: flex;
    align-items: center;
    background: #fff;
}

.block-text-side p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-main);
    margin: 0;
    text-align: justify;
}

.highlight-bg {
    background-color: #fffdf5; /* Very subtle gold tint for the final section */
}

/* Final Polish */
.border-gold {
    border: 2px solid var(--brand-gold);
}

@media (max-width: 991px) {
    .block-title-side {
        padding: 2rem;
        min-height: auto;
    }
    .block-text-side {
        padding: 2rem;
    }
}
:root {
    --brand-blue: #002D5B;
    --brand-gold: #D4AF37;
    --light-gray: #F8FAFC;
    --border-stroke: #E2E8F0;
}

.about-modern-section {
    background-color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Typography Flair */
.ls-2 { letter-spacing: 0.15em; }

.text-outline {
    -webkit-text-stroke: 1px var(--brand-blue);
    color: transparent;
}

.about-index {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    background: var(--brand-blue);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 15px;
}

.index-gold { background: var(--brand-gold); }

/* Content Wrapper with a vertical "Status Line" */
.about-content-wrapper {
    border-left: 2px solid var(--border-stroke);
    padding-left: 30px;
    transition: border-color 0.4s ease;
}

.row:hover .about-content-wrapper {
    border-color: var(--brand-gold);
}

.about-p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4A5568;
    margin: 0;
}

.about-p strong {
    color: var(--brand-blue);
    font-weight: 600;
}

/* Layout Details */
.border-bottom-light {
    border-bottom: 1px solid var(--border-stroke);
}

.py-6 { padding-top: 80px; padding-bottom: 80px; }

@media (max-width: 991px) {
    .about-content-wrapper {
        border-left: none;
        padding-left: 0;
        margin-top: 10px;
    }
    .text-outline {
        color: var(--brand-blue);
        -webkit-text-stroke: 0;
    }
}
/* ABOUT SECTION */
.about-section {
    padding: 60px 0;
    background-color: #ffffff;
}

/* Heading */
.about-heading h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0f172a;
    text-transform: uppercase;
}

.about-line {
    width: 70px;
    height: 3px;
    background-color: #c9a227;
    border: none;
    margin: 12px auto 40px;
}

/* Content Box */
.about-box {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 25px;
    height: 100%;
}

.about-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.about-box p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #374151;
    text-align: justify;
}

/* Hover – very subtle */
.about-box:hover {
    border-color: #c9a227;
}
/* PAYMENT CARD */
.payment-card {
    border: 2px solid var(--brand-blue);
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;
}

/* Header */
.payment-header {
    background-color: var(--brand-blue);
    padding: 14px 20px;
    text-align: center;
}

.payment-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Body */
.payment-body {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    color: #374151;
}

/* Column */
.payment-column p {
    margin-bottom: 10px;
    font-size: 14.5px;
    line-height: 1.6;
}

/* Labels */
.payment-column span {
    font-weight: 600;
    color: #111827;
}

/* Mobile */
@media (max-width: 576px) {
    .payment-body {
        padding: 20px;
    }
}
/* About Box – Base */
.about-box {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 26px 28px;
    height: 100%;
}

/* Left & Right Accent (Very Subtle) */
.about-box-left {
    border-left: 4px solid var(--brand-blue);
}

.about-box-right {
    border-left: 4px solid #c9a227;
}

/* Title */
.about-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 12px;
}

/* Text */
.about-box p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #374151;
    text-align: justify;
    margin-bottom: 0;
}

/* Hover – VERY LIGHT */
.about-box:hover {
    background-color: #fafafa;
}
               