@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1e3a8a;
    --primary-hover: #172554;
    --primary-light: #3b82f6;
    --secondary: #fbbf24;
    --secondary-hover: #f59e0b;
    --accent: #2c5282;
    --background: #ffffff;
    --surface: #f8fafc;
    --text: #0f172a;
    --text-light: #64748b;
    --white: #ffffff;
    --border: #f1f5f9;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 15px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    background: var(--surface);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: var(--primary);
    color: var(--white);
}

/* Header */
header {
    background: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: -20px;
    order: -1;
}

.logo-divider {
    width: 2px;
    height: 32px;
    background-color: #1e3a8a;
    opacity: 0.8;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 28px;
    font-weight: 900;
    color: #1e3a8a;
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo-sub {
    font-size: 11px;
    font-weight: 700;
    color: #1e3a8a;
    margin-top: 1px;
    letter-spacing: 0.8px;
    line-height: 1;
}

/* Footer Logo Variation */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-main {
    color: white;
    font-size: 24px;
}

.footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo .logo-divider {
    background-color: white;
    height: 28px;
}

.logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 18px;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 4px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(2px);
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background: var(--white);
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.close-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    padding: 4px;
    transition: color 0.3s;
}

.close-menu-btn:hover {
    color: var(--primary);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.mobile-nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-links a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #111827 100%);
    color: var(--white);
    padding: 30px 0 120px;
    /* Reduced top padding from 100px to 30px */
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero h1 span {
    color: #fbbf24;
}

.hero p {
    font-size: 18px;
    color: #cbd5e1;
    margin: 0 auto 32px;
    max-width: 600px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.feature-item svg {
    color: var(--secondary);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.hero-cards {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    justify-content: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 20px;
    flex: 1;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.hero-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
}

.hero-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.hero-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-wave .shape-fill {
    fill: #FFFFFF;
}

/* Services */
.section-padding {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
}

.section-tag {
    background: #fef3c7;
    color: #92400e;
    padding: 8px 20px;
    border-radius: 99px;
    font-size: 16px;
    /* Increased size */
    font-weight: 700;
    margin-bottom: 24px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-tag.blue {
    background: #e0f2fe;
    color: #075985;
}

.section-header h2 {
    font-size: 38px;
    /* Reduced size to keep on one row */
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary);
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0;
}

.service-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-top {
    padding: 50px 40px;
    color: var(--white);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-top.security {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.service-top.courier {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0f172a;
    /* Dark text for better contrast on yellow */
}

.service-top.courier .service-icon {
    background: rgba(0, 0, 0, 0.1);
    color: #0f172a;
}

.service-top.courier p {
    color: rgba(15, 23, 42, 0.8);
}

.service-top .service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.service-top h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-body {
    padding: 50px 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.service-feature svg {
    color: #10b981;
    flex-shrink: 0;
}

.learn-more {
    margin-top: auto;
    width: 100%;
    padding: 16px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    cursor: pointer;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.learn-more:hover {
    background: #1e3a8a;
    /* Dark Blue */
    border-color: #1e3a8a;
    color: white;
}

/* Stats */
.stats {
    background: #f8fafc;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
}

/* Why Us */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.reason-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reason-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.reason-icon {
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.reason-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.reason-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* Action Blocks */
.action-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.action-card {
    padding: 50px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s, box-shadow 0.3s;
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
}

.action-icon.blue {
    background: #1e3a8a;
}

.action-icon.gold {
    background: #f59e0b;
}

.action-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.action-card p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.action-list {
    margin-bottom: 30px;
}

.action-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
}

.action-list li::before {
    content: "•";
    color: var(--secondary);
    font-weight: bold;
}

/* Footer */
footer {
    background: #0f172a;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin: 20px 0;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-link:hover {
    background: var(--primary);
}

.footer-col h4 {
    margin-bottom: 24px;
    font-size: 18px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.contact-info li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 1100px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-actions {
        display: none;
    }


    .hero-content {
        flex-direction: column;
    }

    .hero-cards {
        width: 100%;
        margin-top: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid,
    .reasons-grid,
    .action-sections {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 40px;
    }

    .services-grid,
    .stats-grid,
    .reasons-grid,
    .action-sections,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-cards,
.service-card,
.stat-card,
.reason-card,
.action-card {
    animation: fadeIn 0.8s ease forwards;
}

.hero-cards {
    animation-delay: 0.2s;
}

.services-grid .service-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* Security Page Specific Styles */
.security-hero {
    padding: 85px 0 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.security-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.security-hero p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: white;
    color: #1e3a8a;
}

.btn-white:hover {
    background: #f1f5f9;
    color: #1e3a8a;
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Security Services Grid */
.security-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sec-service-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sec-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.sec-icon {
    width: 48px;
    height: 48px;
    background: #e0f2fe;
    color: #0284c7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sec-service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text);
}

.sec-service-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

/* Split Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.check-item svg {
    color: #10b981;
    flex-shrink: 0;
}

.cta-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}

.cta-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1e3a8a;
}

.cta-card p {
    color: var(--text-light);
    margin-bottom: 32px;
}

/* Response */
@media (max-width: 992px) {
    .security-services-grid {
        grid-template-columns: 1fr;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.courier-hero {
    background: var(--secondary);
    padding: 85px 0 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text);
}

.courier-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary);
}

.courier-hero p {
    font-size: 18px;
    color: rgba(15, 23, 42, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.courier-hero .hero-buttons {
    justify-content: center;
}

.courier-hero .btn-white {
    background: var(--primary);
    color: white;
}

.courier-hero .btn-white:hover {
    background: var(--primary-hover);
    color: white;
}

.courier-hero .btn-outline-white {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.courier-hero .btn-outline-white:hover {
    background: rgba(30, 58, 138, 0.1);
}

.badge-teal {
    display: inline-block;
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(30, 58, 138, 0.2);
}

.sec-icon.teal {
    color: #0e7490;
    background: #ecfeff;
}

/* Logos Section */
.logos-section {
    background: #f8fafc;
    padding: 30px 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.logos-title {
    text-align: center;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Premium Ticker / Marquee */
.logos-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logos-track {
    display: flex;
    white-space: nowrap;
    gap: 80px;
    width: max-content;
    animation: scrollLogos 40s linear infinite;
    align-items: center;
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.logo-item {
    color: #000000;
    font-weight: 800;
    font-size: 22px;
    opacity: 0.6;
    transition: all 0.3s;
    cursor: default;
    user-select: none;
    letter-spacing: -0.5px;
}

.logo-item:hover {
    opacity: 1;
    color: var(--primary);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .logos-section {
        padding: 40px 0;
    }

    .logo-item {
        font-size: 18px;
    }

    .logos-track {
        gap: 50px;
    }
}

/* About & Contact Hero Alignment */
.about-hero {
    text-align: center;
    padding: 85px 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    max-width: 800px;
}

.about-hero p {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero .hero-features {
    justify-content: center !important;
    margin-top: 30px;
}

.timeline-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background: white;
    border-color: #e2e8f0;
}

.timeline-card h3 {
    margin-bottom: 24px;
    font-size: 20px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    gap: 24px;
    align-items: baseline;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.timeline-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timeline-item .year {
    font-weight: 700;
    color: var(--primary);
    width: 60px;
    flex-shrink: 0;
}

.timeline-item .event {
    color: var(--text);
    font-size: 15px;
}

/* Values Grid Responsiveness */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #e0f2fe;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: #e0f2fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #0369a1;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(8deg);
    background: var(--primary);
    color: white;
}

.value-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Box */
.cta-box {
    background: #1e3a8a;
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Contact Page Styles */
.contacts-split {
    align-items: flex-start;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    color: var(--text);
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-form-card h3 {
    margin-bottom: 24px;
    font-size: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}



/* Apply & Hire Page Styles */
.apply-hero {
    background: var(--secondary);
    text-align: center;
    padding: 85px 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text);
}

.hire-hero {
    background: #1e3a8a;
    text-align: center;
    padding: 85px 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.hire-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.apply-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary);
}

.hire-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

.apply-hero p {
    font-size: 18px;
    color: rgba(15, 23, 42, 0.8);
    max-width: 600px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

.badge-gold {
    display: inline-block;
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(30, 58, 138, 0.2);
}

.badge-blue {
    background: rgba(255, 255, 255, 0.15);
    color: #bfdbfe;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.registration-banner {
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    padding: 20px 0;
}

.reg-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.form-header p {
    color: var(--text-light);
    font-size: 15px;
}

.form-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    margin-top: 30px;
}

.form-section-title:first-of-type {
    margin-top: 0;
}

.toggle-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.toggle-option {
    cursor: pointer;
    position: relative;
}

.toggle-option input {
    position: absolute;
    opacity: 0;
}

.toggle-content {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s;
}

.toggle-option input:checked+.toggle-content {
    border-color: #1e3a8a;
    background: #eff6ff;
}

/* Specific styling for Driver selections (Orange/Yellow theme) */
.toggle-option input[value="driver"]:checked+.toggle-content {
    border-color: var(--secondary);
    background: #fffbeb;
}

.toggle-option input:checked+.toggle-content .toggle-icon {
    background: #1e3a8a;
    color: white;
}

.toggle-option input[value="driver"]:checked+.toggle-content .toggle-icon {
    background: var(--secondary);
    color: white;
}

.toggle-icon {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    flex-shrink: 0;
    transition: all 0.2s;
}

.toggle-label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    margin-bottom: 4px;
}

.toggle-sub {
    font-size: 12px;
    color: var(--text-light);
    display: block;
}

/* Auth Card Responsiveness */
@media (max-width: 480px) {
    .auth-card {
        padding: 30px 20px;
    }

    .auth-header h1 {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    color: var(--text);
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    cursor: pointer;
}

.info-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 30px;
    line-height: 1.5;
}

.active-page {
    background: #1e3a8a !important;
    color: white !important;
    border-color: #1e3a8a !important;
}

.btn-outline.active-page:hover {
    background: #172554 !important;
}

/* Responsive */
@media (max-width: 992px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-items {
        gap: 20px;
    }

    .values-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-cards {
        flex-direction: column;
        align-items: center;
    }

    .hero-card {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    .toggle-options {
        grid-template-columns: 1fr;
    }

    .reg-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* Auth Portal Styles */
.auth-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-header {
    background: #1e3a8a;
    padding: 20px 0 160px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-header h1 {
    font-size: 36px;
    margin-bottom: 12px;
    margin-left: auto;
    margin-right: auto;
}

.auth-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.back-link:hover {
    color: white;
    transform: translateX(-5px);
}

.auth-card-container {
    margin-top: -100px;
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
}

.auth-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 480px;
    padding: 40px;
    position: relative;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.15), 0 15px 15px -5px rgba(0, 0, 0, 0.08);
}

.auth-icon-circle {
    width: 64px;
    height: 64px;
    background: #1e3a8a;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 30px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.auth-card:hover .auth-icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.auth-tab {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.auth-tab:not(.active):hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.5);
}

.auth-tab.active {
    background: white;
    color: var(--text);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.input-with-icon {
    position: relative;
}

.input-with-icon>svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.input-with-icon input {
    width: 100%;
    padding: 12px 40px 12px 40px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.input-with-icon input:hover:not(.error):not(:focus) {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.input-with-icon input.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.input-with-icon input.error:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
    display: none;
    font-weight: 500;
}

.password-toggle {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    padding: 8px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.password-toggle:hover {
    color: var(--text);
}

.auth-card form {
    text-align: left;
}

/* Enhanced Mobile Responsiveness (< 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 36px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h2 {
        font-size: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .logo-main {
        font-size: 20px;
    }

    .logo-sub {
        font-size: 9px;
    }

    .logo img {
        height: 28px !important;
    }

    .about-hero h1,
    .security-hero h1,
    .courier-hero h1,
    .apply-hero h1,
    .hire-hero h1 {
        font-size: 32px;
    }
}

/* Document Upload Guidelines */
.upload-guidelines {
    margin-top: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #f8fafc;
    font-size: 14px;
}

.upload-guidelines summary {
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 500;
    color: var(--primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.3s;
}

.upload-guidelines summary:hover {
    background: #f1f5f9;
}

.upload-guidelines summary::-webkit-details-marker {
    display: none;
}

.upload-guidelines ul {
    padding: 16px 16px 16px 36px;
    margin: 0;
    color: var(--text-light);
    background: white;
    border-top: 1px solid var(--border);
}

.upload-guidelines li {
    margin-bottom: 6px;
    list-style-type: disc;
}

.upload-guidelines .arrow {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.upload-guidelines[open] .arrow {
    transform: rotate(180deg);
}

/* Mobile View Adjustments */
@media (max-width: 768px) {

    /* Fix Logo Alignment */
    .logo {
        margin-left: 0;
        gap: 10px;
    }

    .logo-divider {
        height: 24px;
        margin: 0 4px;
        /* Ensure space around divider */
    }

    .logo-main {
        font-size: 18px;
        /* Slightly smaller to fit */
    }

    .logo-sub {
        font-size: 8px;
    }

    .logo img {
        height: 32px !important;
        /* Force smaller logo icon */
    }

    .nav-container {
        padding: 0 16px;
        /* Ensure padding inside container */
    }
}

/* Additional refinement for hero and banners */
@media (max-width: 992px) {
    .hero-cards {
        flex-direction: column !important;
        gap: 15px;
        align-items: center;
    }

    .hero-card {
        width: 100%;
        max-width: 500px;
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .reg-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .reg-content .btn {
        width: 100%;
    }
}