/* =========================================================
   Varad Logistics — Design Tokens
   ========================================================= */
:root {
    --navy-950: #061021;
    --navy-900: #0a1f3d;
    --navy-800: #0f2a52;
    --navy-700: #16386b;
    --amber-500: #ff7a1a;
    --amber-400: #ff9142;
    --amber-050: #fff3e8;
    --teal-500: #00b8a9;
    --ink: #1b2430;
    --ink-soft: #5b6472;
    --paper: #ffffff;
    --paper-tint: #f4f6fa;
    --paper-dark: #eef1f7;
    --radius-lg: 18px;
    --radius-md: 12px;
    --shadow-soft: 0 10px 30px rgba(10, 31, 61, 0.08);
    --shadow-strong: 0 20px 45px rgba(10, 31, 61, 0.18);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    font-size: 15px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding-top: 100px;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Tahoma, Geneva, Verdana, sans-serif;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--amber-500);
}

/* =========================================================
   Navbar
   ========================================================= */
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    height: 100px;
    width: 100%;
    background: rgba(255, 255, 255, .88);
    transition: height .35s var(--ease), background-color .35s ease, box-shadow .35s ease;
}

.navbar-fixed.scrolled {
    height: 75px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(16px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.navbar-fixed .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 15px;
}

/* Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.brand-logo {
    flex-shrink: 0;
    width: 70px;
    height: 90px;
    object-fit: cover;
    margin-left: 20px;
    animation: logoFloat 3s ease-in-out infinite;
    transition: width .45s ease, height .45s ease, transform .45s ease;
}

.navbar-fixed.scrolled .brand-logo {
    width: 55px;
    height: 65px;
    transform: scale(.92);
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-text h1 {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1.1;
    letter-spacing: 0.8px;
    color: #0B2F5B;
    background: linear-gradient(90deg, #0B2F5B 0%, #16386b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: font-size .45s ease, filter .3s ease;
    filter: drop-shadow(0 2px 4px rgba(11, 47, 91, 0.2));
}

.navbar-fixed.scrolled .brand-text h1 {
    font-size: 1.8rem;
}

.brand-text h1:hover {
    filter: drop-shadow(0 4px 8px rgba(11, 47, 91, 0.3));
}

.brand-subtitle {
    margin: 2px 0 0 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    line-height: 1.2;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #56B8E8 0%, #ff7a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    font-style: italic;
    transition: all .3s ease;
    position: relative;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* Nav links (desktop, ≥992px) */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--ink) !important;
    white-space: nowrap;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: var(--navy-900) !important;
    background: var(--amber-050);
    transform: translateY(-2px);
}

/* Industry Dropdown */
.navbar-nav .dropdown-toggle::after {
    vertical-align: 2px;
    margin-left: 6px;
    transition: transform .25s ease;
}

.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 10px;
    margin-top: 10px;
    min-width: 280px;
    box-shadow: 0 20px 45px rgba(10, 31, 61, 0.18);
    animation: slideDown 0.2s ease-out;
}

.navbar-nav .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink);
    transition: background-color .25s ease, color .25s ease, transform .2s ease;
}

    .navbar-nav .dropdown-item i {
        color: var(--amber-500);
        font-size: 1rem;
        width: 18px;
        text-align: center;
        flex-shrink: 0;
    }

    .navbar-nav .dropdown-item:hover,
    .navbar-nav .dropdown-item:focus {
        background: var(--amber-050);
        color: var(--navy-900);
        transform: translateX(3px);
    }

.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-item:active {
    background: var(--navy-900);
    color: #fff;
}

@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu,
    .navbar-nav .dropdown-menu.show {
        display: block;
    }

    .navbar-nav .dropdown-menu {
        display: none;
    }

    .navbar-nav .dropdown.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        box-shadow: none;
        margin-top: 0;
        margin-left: 12px;
        background: rgba(255, 122, 26, 0.04);
        min-width: 0;
    }
}

/* Toggler */
.navbar-toggler {
    border: none;
    padding: 8px 12px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(10, 31, 61, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile dropdown (<992px) */
@media (max-width: 991.98px) {
    body {
        padding-top: 90px;
    }

    .brand-logo {
        width: 50px;
        height: 70px;
        margin-left: 0;
    }

    .navbar-fixed.scrolled .brand-logo {
        width: 45px;
        height: 60px;
    }

    .navbar-fixed .container-fluid {
        padding: 0 10px;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 15px 30px rgba(10, 31, 61, 0.15);
        z-index: 1029;
    }

    .navbar-collapse.show {
        animation: slideDown 0.3s ease-out;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(10, 31, 61, 0.08);
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        padding: 12px 20px;
        border-radius: 0;
    }

    .navbar-nav .nav-link:hover {
        background: var(--amber-050);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .navbar-fixed {
        height: 60px;
    }

    .navbar-collapse {
        max-height: calc(100vh - 60px);
    }

    .brand-logo {
        width: 38px;
        height: 52px;
        margin-right: 6px;
    }

    .navbar-fixed .container-fluid {
        padding: 0 8px;
    }

    .brand-text h1 {
        font-size: 1.5rem;
        letter-spacing: 0.6px;
    }

    .brand-subtitle {
        font-size: 0.65rem;
        margin-top: 2px;
        letter-spacing: 1.5px;
    }

    .navbar-nav .nav-link {
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn-accent {
    background: var(--amber-500);
    border: none;
    color: white;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(255, 122, 26, 0.35);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s ease;
}

    .btn-accent:hover {
        background: var(--amber-400);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 16px 32px rgba(255, 122, 26, 0.42);
    }

.btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: white;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 999px;
    transition: all 0.3s var(--ease);
}

    .btn-ghost:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: white;
        color: white;
        transform: translateY(-3px);
    }

/* =========================================================
   Sections
   ========================================================= */
.section {
    padding: 92px 0;
    position: relative;
}

.section-white {
    background: var(--paper);
}

.section-light {
    background: var(--paper-tint);
}

.section-tint {
    background: var(--paper-dark);
}

.section-heading {
    max-width: 640px;
    margin: 0 auto 20px;
}

.kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--amber-500);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    font-weight: 800;
    color: var(--navy-900);
    letter-spacing: -0.3px;
    line-height: 1.25;
    margin-bottom: 16px;
}

    .section-title.text-start {
        margin-bottom: 20px;
    }

.section-lead {
    font-size: 1.08rem;
    color: var(--ink-soft);
    line-height: 1.75;
}

.section p {
    color: var(--ink-soft);
    line-height: 1.85;
    font-size: 1rem;
}

/* =========================================================
   Service Cards
   ========================================================= */
.service-card {
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(10, 31, 61, 0.06);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--amber-500), var(--teal-500));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.45s var(--ease);
    }

    .service-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-strong);
    }

        .service-card:hover::before {
            transform: scaleX(1);
        }

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 22px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-050), rgba(255, 122, 26, 0.08));
    border: 2px solid rgba(255, 122, 26, 0.2);
    transition: transform 0.4s var(--ease), border-color 0.4s ease;
    font-size: 4rem;
    color: #667eea;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.service-card:hover .service-icon {
    transform: scale(1.08);
    border-color: var(--amber-500);
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-card h4 {
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy-900);
    font-weight: 700;
    text-decoration: none;
    margin-top: 6px;
    transition: gap 0.3s ease, color 0.3s ease;
}

    .card-link:hover {
        color: var(--amber-500);
        gap: 10px;
    }

/* =========================================================
   About Section Image
   ========================================================= */
.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 31, 61, 0.2);
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    display: block;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.benefit-item {
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 6px;
}

    .benefit-item:hover {
        background: rgba(102, 126, 234, 0.1);
        padding-left: 15px;
    }

.image-corner-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--amber-500);
    color: white;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-align: center;
    box-shadow: 0 10px 25px rgba(255, 122, 26, 0.35);
}

    .image-corner-badge strong {
        display: block;
        font-size: 1.4rem;
        line-height: 1.1;
        margin-bottom: 4px;
    }

    .image-corner-badge span {
        display: block;
        font-size: 0.75rem;
        opacity: 0.9;
    }

/* =========================================================
   Background Image Overlays & Fixed BG
   ========================================================= */
.bg-image-overlay {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 0;
}

.services-bg {
    position: relative;
    overflow: hidden;
}

    .services-bg .container {
        position: relative;
        z-index: 2;
    }

.fixed-accent-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(1200px 600px at 20% 50%, rgba(93, 173, 226, 0.15), transparent 60%), linear-gradient(to right, transparent, rgba(255, 122, 26, 0.05));
    pointer-events: none;
    z-index: -1;
}

.stats-image-overlay {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 0;
    opacity: 0.08;
}

/* =========================================================
   Benefit Panel
   ========================================================= */
.benefit-panel {
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-soft);
}

    .benefit-panel h4 {
        font-weight: 800;
        color: var(--navy-900);
        margin-bottom: 22px;
    }

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .benefit-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 12px;
        border-radius: var(--radius-md);
        transition: background 0.3s ease, transform 0.3s ease;
    }

        .benefit-list li:hover {
            background: var(--amber-050);
            transform: translateX(4px);
        }

    .benefit-list i {
        color: var(--teal-500);
        font-size: 1.2rem;
        margin-top: 3px;
    }

    .benefit-list strong {
        display: block;
        color: var(--navy-900);
        font-size: 0.98rem;
    }

    .benefit-list span {
        color: var(--ink-soft);
        font-size: 0.9rem;
    }

/* =========================================================
   Stats
   ========================================================= */
.stats-section {
    position: relative;
    color: white;
    overflow: hidden;
    padding: 70px 0;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stat-box {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

    .stat-box:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.2);
    }

.counter {
    font-size: 3rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
    background: linear-gradient(120deg, var(--amber-500), #ff9a3d);
    text-align: center;
    padding: 90px 0;
}

    .cta h2 {
        color: white;
        font-weight: 800;
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        margin-bottom: 14px;
    }

    .cta p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .cta .btn-accent {
        background: var(--navy-900);
        box-shadow: 0 12px 28px rgba(10, 31, 61, 0.35);
    }

        .cta .btn-accent:hover {
            background: var(--navy-800);
            box-shadow: 0 16px 34px rgba(10, 31, 61, 0.4);
        }

/* =========================================================
   Partner / Gallery cards
   ========================================================= */
.partner-card {
    background: var(--paper);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

    .partner-card:hover {
        transform: translateY(-6px) scale(1.03);
        box-shadow: var(--shadow-strong);
    }

    .partner-card img {
        max-height: 100%;
        object-fit: contain;
        filter: grayscale(1);
        opacity: 0.7;
        transition: filter 0.4s ease, opacity 0.4s ease;
    }

    .partner-card:hover img {
        filter: grayscale(0);
        opacity: 1;
    }

.partner-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .partner-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

/* =========================================================
   Contact
   ========================================================= */
.contact-card {
    background: var(--paper-tint);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    border-left: 4px solid var(--amber-500);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

    .contact-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-soft);
    }

    .contact-card h5 {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 800;
        color: var(--navy-900);
        margin-bottom: 18px;
    }

        .contact-card h5 i {
            color: var(--amber-500);
        }

    .contact-card .address {
        font-size: 0.92rem;
        color: var(--ink-soft);
        line-height: 1.7;
        margin-bottom: 18px;
    }

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .contact-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 6px 0;
        font-size: 0.95rem;
        color: var(--ink-soft);
    }

    .contact-list i {
        color: var(--amber-500);
        width: 18px;
    }

    .contact-list a {
        color: var(--ink-soft);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .contact-list a:hover {
            color: var(--amber-500);
        }

.contact-card a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .contact-card a:hover {
        color: #764ba2;
        text-decoration: underline;
    }

/* =========================================================
   Footer
   ========================================================= */
footer {
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.75);
    padding: 56px 0 24px;
    border-top: 3px solid var(--amber-500);
}

    footer h5 {
        color: white;
        font-weight: 800;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        footer h5 i {
            color: var(--amber-500);
        }

    footer a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        footer a:hover {
            color: var(--amber-400);
        }

    footer hr {
        border-color: rgba(255, 255, 255, 0.12);
    }

/* =========================================================
   Scroll reveal system
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================================================
   Scroll Animation Keyframes
   ========================================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes moveWave {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes moveWaveReverse {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes moveStrip {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes rotateLoader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* =========================================================
   Global Circle Loader
   ========================================================= */
.global-loader {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.75);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}

    .global-loader.show {
        opacity: 1;
        visibility: visible;
    }

.circle-loader {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 6px solid #dbeafe;
    border-top: 6px solid #0f6fd6;
    animation: rotateLoader 0.8s linear infinite;
    box-shadow: 0 0 25px rgba(15,111,214,.35);
}

/* =========================================================
   Smooth Transitions
   ========================================================= */
button, a, input {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }

    .section {
        padding: 60px 0;
    }

    .stat-box {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
        overflow-x: hidden;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }

    .carousel-controls {
        bottom: 15px;
    }

    .stat-box {
        margin-bottom: 20px;
        padding: 20px 15px;
    }

    .stats-section {
        padding: 50px 0;
    }

    .navbar-fixed {
        height: 70px;
    }

    .navbar-fixed .container-fluid {
        padding-left: 8px;
        padding-right: 8px;
    }

    .navbar-collapse {
        max-height: calc(100vh - 70px);
    }

    .navbar-nav {
        gap: 0;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 0.9rem;
        margin: 0;
        padding: 10px 12px !important;
        min-width: fit-content;
    }

    .brand-logo {
        margin-left: 0;
        margin-right: 6px;
        width: 45px;
        height: 60px;
    }

    .brand-text h1 {
        font-size: 1.4rem;
    }

    .navbar-fixed.scrolled .brand-logo {
        width: 40px;
        height: 55px;
    }

    .contact-card {
        padding: 24px;
    }

    .benefit-item {
        padding: 6px;
    }

    .benefit-item:hover {
        padding-left: 10px;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 60px;
    }

    .section {
        padding: 30px 0;
    }

    .section-title {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
    }

    .navbar-fixed {
        height: 60px;
    }

    .navbar-fixed.scrolled {
        height: 60px;
    }

    .navbar-collapse {
        max-height: calc(100vh - 60px);
    }

    .brand-logo {
        width: 40px;
        height: 55px;
    }

    .brand-text h1 {
        font-size: 1.1rem;
        letter-spacing: 0.3px;
    }

    .brand-subtitle {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .contact-card {
        padding: 20px;
    }

    .benefit-panel {
        padding: 24px;
    }
}

/* =========================================================
   Footer Styles
   ========================================================= */
footer.footer-section {
    background: linear-gradient(135deg, #0B1F3C 0%, #162B52 100%);
    color: #e0e0e0;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-logo {
    width: 230px;
    height: 80px;
    object-fit: contain;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .footer-social-icon:hover {
        background: #2B7BBB;
        border-color: #2B7BBB;
        transform: translateY(-3px);
    }

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

        .footer-links li a {
            color: #b0b0b0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

            .footer-links li a:hover {
                color: #56B8E8;
                padding-left: 5px;
            }

.footer-contact {
    font-size: 0.95rem;
    line-height: 1.8;
}

    .footer-contact p {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: #b0b0b0;
        margin-bottom: 15px;
        word-break: break-word;
    }

    .footer-contact i {
        color: #2B7BBB;
        margin-top: 3px;
        flex-shrink: 0;
    }

    .footer-contact a {
        color: #b0b0b0;
        text-decoration: none;
        transition: all 0.3s ease;
        word-break: break-all;
    }

        .footer-contact a:hover {
            color: #56B8E8;
        }

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #808080;
}

/* =========================================================
   Form Grid Responsiveness
   ========================================================= */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    footer.footer-section {
        padding: 40px 0 20px;
        margin-top: 60px;
    }

    footer.footer-section .col-lg-3,
    footer.footer-section .col-md-6 {
        margin-bottom: 30px;
    }

    .footer-logo {
        width: 200px;
        height: 70px;
    }

    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .footer-heading {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .footer-links li a {
        font-size: 0.9rem;
    }

    .footer-contact {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-contact p {
        margin-bottom: 12px;
        gap: 10px;
    }

    .footer-contact i {
        width: 18px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        font-size: 0.85rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    footer.footer-section {
        padding: 30px 0 15px;
        margin-top: 50px;
    }

    .footer-logo {
        width: 180px;
        height: 60px;
        margin-bottom: 15px;
    }

    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .footer-social {
        gap: 8px;
    }

    .footer-social-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .footer-heading {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links li a {
        font-size: 0.85rem;
    }

    .footer-contact {
        font-size: 0.85rem;
    }

    .footer-contact p {
        margin-bottom: 10px;
        gap: 8px;
        font-size: 0.85rem;
    }

    .footer-divider {
        margin: 30px 0 20px;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    .form-row {
        gap: 14px;
    }
}
