:root {
    --navy: #0a2463;
    --skyblue: #3e92cc;
    --orange: #ff7f11;
    --orange-dark: #e6710f;
}

body {
    font-family: "Inter", sans-serif;
    color: #333;
    padding-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

.text-navy {
    color: var(--navy) !important;
}
.bg-navy {
    background-color: var(--navy) !important;
}
.text-skyblue {
    color: var(--skyblue) !important;
}
.text-orange {
    color: var(--orange) !important;
}
.bg-orange {
    background-color: var(--orange) !important;
}
.bg-orange-dark {
    background-color: var(--orange-dark) !important;
}
.bg-gray-50 {
    background-color: #f9fafb !important;
}

.btn-orange {
    background-color: var(--orange);
    border-color: var(--orange);
    color: white;
}

.btn-orange:hover {
    background-color: var(--orange-dark);
    border-color: var(--orange-dark);
    color: white;
    transform: scale(1.05);
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--navy);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom right, var(--navy), var(--skyblue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 0;
    overflow: hidden;
    background-color: var(--navy);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 36, 99, 0.7),
        rgba(10, 36, 99, 0.5),
        rgba(10, 36, 99, 0.7)
    );
}

/* Top Navigation Bar - Fixed at top */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background-color: var(--navy);
    padding: 0.75rem 0;
    height: 48px;
    display: flex;
    align-items: center;
}

/* Main Navigation Bar - Fixed below top nav */
.main-nav {
    position: fixed;
    top: 48px; /* Height of top nav */
    left: 0;
    right: 0;
    z-index: 1040;
    transition: all 0.3s ease;
    background-color: transparent !important; /* Transparent by default */
    box-shadow: none !important;
    padding: 1rem 0;
}

.main-nav.scrolled {
    background-color: white !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
}

.main-nav .nav-link {
    color: white !important;
}

.main-nav.scrolled .nav-link {
    color: #666 !important;
}

.main-nav.scrolled .nav-link:hover {
    color: var(--navy) !important;
}

.main-nav .navbar-brand img.default-logo {
    filter: brightness(0) invert(1); /* White logo */
}

.main-nav.scrolled .navbar-brand img.default-logo {
    filter: brightness(0) saturate(100%) invert(12%) sepia(38%) saturate(1760%)
        hue-rotate(202deg) brightness(92%) contrast(99%);
}

.main-nav .btn-outline-white {
    border-color: white;
    color: white;
}

.main-nav.scrolled .btn-outline-white {
    border-color: var(--navy);
    color: var(--navy);
}

.main-nav.scrolled .btn-outline-white:hover {
    background-color: var(--navy);
    color: white;
}

.section-padding {
    padding: 6rem 0;
}

.stat-border {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-border:first-child {
    border-left: none;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social:hover {
    background-color: var(--skyblue);
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--skyblue);
    color: white;
    box-shadow: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    object-fit: cover;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero section padding to account for fixed nav height */
.hero-section {
    padding-top: 96px; /* 48px (top nav) + 48px (main nav) */
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
        padding-top: 60px; /* Account for collapsed nav on mobile */
    }

    .section-padding {
        padding: 4rem 0;
    }

    .stat-border {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .stat-border:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    /* Hide top nav on mobile */
    .top-nav {
        display: none !important;
    }

    /* Adjust main nav for mobile */
    .main-nav {
        top: 0;
        padding: 0.5rem 0;
    }

    .main-nav .navbar-collapse {
        background-color: white;
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* Mobile menu styling */
    .main-nav.scrolled .navbar-collapse {
        background-color: white;
    }

    .main-nav:not(.scrolled) .navbar-collapse .nav-link {
        color: #666 !important;
    }

    .main-nav:not(.scrolled) .navbar-collapse .btn-outline-white {
        border-color: var(--navy);
        color: var(--navy);
    }
}

@media (min-width: 769px) {
    .hero-section {
        padding-top: 96px;
    }
}

/* Add these to your public/css/style.css file */

.letter-spacing {
    letter-spacing: 0.1em;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.object-fit-cover {
    object-fit: cover;
}

.object-position-top {
    object-position: top;
}

.min-vh-75 {
    min-height: 75vh;
}

.opacity-90 {
    opacity: 0.9;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-10 {
    opacity: 0.1;
}

.hover-opacity-100:hover {
    opacity: 1 !important;
}

.hover-text-navy:hover {
    color: var(--navy) !important;
}

/* ===== SERVICES PAGE SPECIFIC STYLES ===== */

:root {
    --navy-light: #1a3b8c;
}

.bg-navy-light {
    background-color: var(--navy-light) !important;
}
.bg-skyblue {
    background-color: var(--skyblue) !important;
}

.btn-outline-orange {
    border: 2px solid var(--orange);
    color: var(--orange);
}

.btn-outline-orange:hover {
    background-color: var(--orange);
    color: white;
}

/* Services Hero Section */
.services-hero {
    background: linear-gradient(
        to bottom right,
        var(--navy),
        var(--navy-light)
    );
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMzLjMxNCAwIDYgMi42ODYgNiA2cy0yLjY4NiA2LTYgNi02LTIuNjg2LTYtNiAyLjY4Ni02IDYtNnoiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9nPjwvc3ZnPg==");
    opacity: 0.1;
}

/* Service Cards */
.service-card {
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2.5rem;
}

.service-card:last-child {
    margin-bottom: 0;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(to bottom right, var(--skyblue), var(--navy));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.75rem;
    color: white;
}

.service-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    align-items: flex-start;
}

.spec-icon {
    color: var(--skyblue);
    font-size: 1.25rem;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
}

.spec-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--skyblue);
    margin-bottom: 0.25rem;
}

.spec-value {
    font-size: 0.875rem;
    color: #666;
}

.service-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.services-cta {
    background: linear-gradient(to bottom right, var(--skyblue), var(--navy));
    padding: 5rem 0;
}

.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .services-hero {
        padding: 6rem 0 3rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .service-specs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-image {
        height: 300px;
        margin-top: 2rem;
    }
}

/* ===== TRACKING PAGE SPECIFIC STYLES ===== */

/* Hero Section */
.track-hero {
    background: linear-gradient(
        to bottom right,
        var(--navy),
        var(--navy-light)
    );
    padding: 8rem 5rem;
    position: relative;
    overflow: hidden;
}

.track-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMzLjMxNCAwIDYgMi42ODYgNiA2cy0yLjY4NiA2LTYgNi02LTIuNjg2LTYtNiAyLjY4Ni02IDYtNnoiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9nPjwvc3ZnPg==");
    opacity: 0.1;
}

.track-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 127, 17, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.track-icon i {
    font-size: 2.5rem;
    color: var(--orange);
}

/* Tracking Form */
.tracking-form {
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

.form-control-custom {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    color: #374151;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    border-color: var(--skyblue);
    box-shadow: 0 0 0 3px rgba(62, 146, 204, 0.1);
}

.form-control-custom::placeholder {
    color: #9ca3af;
}

/* Results Section */
.tracking-results {
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    margin-top: 2rem;
    display: none;
}

.tracking-results.show {
    display: block;
}

.status-card {
    background: linear-gradient(to right, #f8fafc, #f1f5f9);
    border-radius: 1rem;
    padding: 1.5rem;
    border-left: 4px solid var(--orange);
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e5e7eb;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -1.625rem;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: var(--skyblue);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--skyblue);
}

.timeline-item.active::before {
    background-color: var(--orange);
    box-shadow: 0 0 0 2px var(--orange);
}

.timeline-item.completed::before {
    background-color: #10b981;
    box-shadow: 0 0 0 2px #10b981;
}

/* FAQ Section */
.faq-section {
    background-color: #f9fafb;
    padding: 5rem 0;
}

.faq-card {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: var(--skyblue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Additional styles */
.btn-outline-orange {
    border: 2px solid var(--orange);
    color: var(--orange);
}

.btn-outline-orange:hover {
    background-color: var(--orange);
    color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
    .track-hero {
        padding: 6rem 0 3rem;
    }

    .tracking-form {
        padding: 2rem;
        margin-top: -2rem;
    }

    .form-control-custom {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
}

/* ===== QUOTE PAGE SPECIFIC STYLES ===== */

/* Quote Hero Section */
.quote-hero {
    background: linear-gradient(
        to bottom right,
        var(--navy),
        var(--navy-light)
    );
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.quote-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMzLjMxNCAwIDYgMi42ODYgNiA2cy0yLjY4NiA2LTYgNi02LTIuNjg2LTYtNiAyLjY4Ni02IDYtNnoiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9nPjwvc3ZnPg==");
    opacity: 0.1;
}

.quote-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 127, 17, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quote-icon i {
    font-size: 2.5rem;
    color: var(--orange);
}

/* Quote Form */
.quote-form {
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

.form-control-custom,
.form-select-custom {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #374151;
    transition: all 0.3s ease;
}

.form-control-custom:focus,
.form-select-custom:focus {
    border-color: var(--skyblue);
    box-shadow: 0 0 0 3px rgba(62, 146, 204, 0.1);
}

.form-control-custom::placeholder {
    color: #9ca3af;
}

/* Benefits Section */
.benefit-card {
    background-color: #f9fafb;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--skyblue);
    margin-bottom: 1rem;
}

/* Results Modal */
.quote-results-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    align-items: center;
    justify-content: center;
}

.quote-results-modal.show {
    display: flex;
}

.quote-results-card {
    background-color: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.price-display {
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
    text-align: center;
    margin: 1.5rem 0;
}

.estimate-details {
    background-color: #f8fafc;
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .quote-hero {
        padding: 6rem 0 3rem;
    }

    .quote-form {
        padding: 2rem;
        margin-top: -2rem;
    }

    .form-control-custom,
    .form-select-custom {
        padding: 0.875rem 1.25rem;
    }

    .price-display {
        font-size: 2.5rem;
    }
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        to right,
        rgba(10, 36, 99, 0.9),
        rgba(10, 36, 99, 0.7)
    );
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 36, 99, 0.9),
        rgba(10, 36, 99, 0.7)
    );
    z-index: 2;
}

/* Mission & Vision Cards */
.mission-vision-card {
    background-color: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Global Offices Cards */
.office-card {
    background-color: #f9fafb;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.office-card:hover {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Certifications Section */
.certification-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.certification-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.certification-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(to bottom right, var(--skyblue), var(--navy));
}

.certification-icon i {
    font-size: 1.75rem;
    color: white;
}

/* Section padding */
.section-py-20 {
    padding: 5rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-hero {
        min-height: 400px;
    }

    .mission-vision-card {
        padding: 2rem;
    }

    .section-py-20 {
        padding: 3rem 0;
    }
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(
        to bottom right,
        var(--navy),
        var(--navy-light)
    );
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMzLjMxNCAwIDYgMi42ODYgNiA2cy0yLjY4NiA2LTYgNi02LTIuNjg2LTYtNiAyLjY4Ni02IDYtNnoiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9nPjwvc3ZnPg==");
    opacity: 0.1;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 127, 17, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2.5rem;
    color: var(--orange);
}

/* Contact Form */
.contact-form-card {
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    height: 100%;
}

.contact-info-card {
    background-color: var(--navy);
    border-radius: 1.5rem;
    padding: 2.5rem;
    color: white;
    height: 100%;
}

.quick-links-card {
    background-color: #f9fafb;
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
}

/* Form Elements */
.form-control-contact {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #374151;
    transition: all 0.3s ease;
}

.form-control-contact:focus {
    border-color: var(--skyblue);
    box-shadow: 0 0 0 3px rgba(62, 146, 204, 0.1);
}

.form-control-contact::placeholder {
    color: #9ca3af;
}

.form-select-contact {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #374151;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    transition: all 0.3s ease;
}

.form-select-contact:focus {
    border-color: var(--skyblue);
    box-shadow: 0 0 0 3px rgba(62, 146, 204, 0.1);
}

/* Contact Info Items */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.25rem;
    color: var(--orange);
}

/* WhatsApp Button */
.btn-whatsapp {
    background-color: #25d366;
    border-color: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    border-color: #128c7e;
    color: white;
}

/* Quick Links */
.quick-link-item {
    display: flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.quick-link-item:hover {
    color: var(--navy);
    text-decoration: none;
}

.quick-link-item i {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 3rem;
    }

    .contact-form-card,
    .contact-info-card,
    .quick-links-card {
        padding: 1.5rem;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
        margin-right: 0.75rem;
    }
}

/* ===== LOGIN PAGE SPECIFIC STYLES ===== */

/* Login Hero Section */
.login-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.login-card {
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2.5rem;
}

/* Form Elements */
.form-control-custom {
    padding: 0.875rem 1.25rem;
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    border-color: var(--skyblue);
    box-shadow: 0 0 0 0.25rem rgba(2, 132, 199, 0.25);
}

.form-control-custom::placeholder {
    color: #9ca3af;
}

/* Social Login Buttons */
.social-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: white;
}

.social-btn:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

/* Login Features List */
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.feature-item i {
    font-size: 1.25rem;
    color: var(--skyblue);
    margin-right: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-card {
        padding: 2rem;
        margin: 1rem;
    }

    .login-hero {
        padding: 1rem;
    }
}

/* ===== REGISTER PAGE SPECIFIC STYLES ===== */

/* Register Hero Section */
.register-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.register-card {
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2.5rem;
}

/* Input Group Custom */
.input-group-custom .input-group-text {
    background-color: transparent;
    border: 2px solid #e5e7eb;
    border-left: none;
    border-radius: 0 0.75rem 0.75rem 0;
    cursor: pointer;
    color: #6b7280;
}

.input-group-custom .form-control {
    border-right: none;
    border-radius: 0.75rem 0 0 0.75rem;
}

.input-group-custom .form-control:focus {
    border-right: none;
    border-color: var(--skyblue);
    box-shadow: 0 0 0 0.25rem rgba(62, 146, 204, 0.25);
}

.input-group-custom .form-control:focus + .input-group-text {
    border-color: var(--skyblue);
}

/* Password Strength Indicator */
.password-strength {
    height: 4px;
    border-radius: 2px;
    margin-top: 4px;
    transition: all 0.3s ease;
}

.password-strength.weak {
    background-color: #ef4444;
    width: 33%;
}

.password-strength.fair {
    background-color: #f59e0b;
    width: 66%;
}

.password-strength.good {
    background-color: #10b981;
    width: 100%;
}

.password-match {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.password-match.match {
    color: #10b981;
    display: block;
}

.password-match.mismatch {
    color: #ef4444;
    display: block;
}

.password-requirements {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.password-requirement-item {
    margin-bottom: 0.25rem;
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.feature-item i {
    font-size: 1.25rem;
    color: var(--skyblue);
    margin-right: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .register-card {
        padding: 2rem;
        margin: 1rem;
    }

    .register-hero {
        padding: 1rem;
    }
}

/* ===== LEGAL PAGES SPECIFIC STYLES ===== */

/* Legal Hero Section */
.legal-hero {
    background: linear-gradient(
        to bottom right,
        var(--navy),
        var(--navy-light)
    );
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMzLjMxNCAwIDYgMi42ODYgNiA2cy0yLjY4NiA2LTYgNi02LTIuNjg2LTYtNiAyLjY4Ni02IDYtNnoiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9nPjwvc3ZnPg==");
    opacity: 0.1;
}

.legal-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.legal-icon i {
    font-size: 2.5rem;
    color: white;
}

/* Legal Content */
.legal-content {
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

/* Legal Sections */
.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: #555;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section strong {
    color: var(--navy);
}

/* Last Updated */
.last-updated {
    background-color: #f8f9fa;
    border-left: 4px solid var(--skyblue);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

/* Table of Contents */
.toc-container {
    background-color: #f8f9fa;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.toc-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: var(--skyblue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.toc-list a:hover {
    color: var(--navy);
    text-decoration: underline;
}

/* Contact Legal */
.contact-legal {
    background: linear-gradient(to right, var(--skyblue), var(--navy));
    color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.contact-legal h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-legal a {
    color: white;
    text-decoration: underline;
}

.contact-legal a:hover {
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .legal-hero {
        padding: 6rem 0 3rem;
    }

    .legal-content {
        padding: 1.5rem;
        margin-top: -2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.125rem;
    }
}

/* ==================== DASHBOARD FLOATING BUTTON ==================== */
.dashboard-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    z-index: 1050;
    animation: floatAnimation 3s ease-in-out infinite;
}

.dashboard-float-btn:hover {
    background: linear-gradient(135deg, #0da271, #2bbd8c);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    animation-play-state: paused;
}

.dashboard-tooltip {
    position: absolute;
    top: 50%;
    right: calc(100% + 12px);
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.dashboard-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.85);
}

.dashboard-float-btn:hover .dashboard-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Use same float animation */
@keyframes floatAnimation {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .dashboard-float-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .dashboard-tooltip {
        display: none;
    }
}

/* ===== SERVICE PAGES COMMON STYLES ===== */

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom right, var(--skyblue), var(--navy));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    padding: 2rem;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(62, 146, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--skyblue);
}

.service-detail-card {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    border-left: 4px solid var(--skyblue);
}

/* ===== AIR FREIGHT SPECIFIC ===== */
.air-freight-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1e40af 100%);
}

/* ===== SEA FREIGHT SPECIFIC ===== */
.sea-freight-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1e3a8a 100%);
}

/* ===== EXPRESS DELIVERY SPECIFIC ===== */
.express-hero {
    background: linear-gradient(135deg, var(--orange) 0%, #dc2626 100%);
}

/* ===== WAREHOUSING SPECIFIC ===== */
.warehousing-hero {
    background: linear-gradient(135deg, var(--skyblue) 0%, #0ea5e9 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.5rem;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

.top-nav a.active {
    position: relative;
    color: #fff !important;
    text-decoration: none !important;
}

/* Optional: Add underline indicator */
.top-nav a.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffcc00; /* DHL yellow color */
    border-radius: 2px;
}

/* Hover effect for all links */
.top-nav a.hover-opacity-100:hover {
    opacity: 1 !important;
    transition: opacity 0.2s ease;
}

/* Purse Bead Indicator Styles */
.bead-indicator {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 28px;
    height: 28px;
    background: linear-gradient(
        135deg,
        #ffcc00 0%,
        /* DHL Yellow */ #ff9900 25%,
        /* Orange */ #d40511 50%,
        /* DHL Red */ #ffcc00 75%,
        /* Back to Yellow */ #ff9900 100% /* Orange */
    );
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.1),
        0 4px 12px rgba(212, 5, 17, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    z-index: 1;
}

/* Bead inner shine effect */
.bead-indicator::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    filter: blur(1px);
}

/* Bead string/chain effect */
.bead-indicator::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: rgba(255, 204, 0, 0.8);
    border-radius: 1px;
}

/* Active state - bead appears */
.bead-indicator.bead-visible {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    animation: bead-glow 2s ease-in-out infinite alternate;
}

/* Active link text styling */
.nav-link.active {
    color: #ffcc00 !important;
    font-weight: 600;
    position: relative;
}

/* Hover effect on beads */
.nav-item:hover .bead-indicator:not(.bead-visible) {
    opacity: 0.3;
    transform: translateX(-50%) scale(0.6);
    background: rgba(255, 204, 0, 0.5);
}

/* Bead glow animation */
@keyframes bead-glow {
    0% {
        box-shadow:
            0 0 0 2px rgba(255, 255, 255, 0.1),
            0 4px 12px rgba(212, 5, 17, 0.3),
            inset 0 2px 4px rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow:
            0 0 0 3px rgba(255, 255, 255, 0.2),
            0 6px 20px rgba(212, 5, 17, 0.5),
            inset 0 2px 4px rgba(255, 255, 255, 0.4);
    }
}

/* Mobile responsiveness */
@media (max-width: 992px) {
    .bead-indicator {
        bottom: -8px;
        width: 22px;
        height: 22px;
    }

    .navbar-collapse .nav-item {
        padding: 8px 0;
    }
}

/* Add subtle hover effect to nav links */
.nav-link.hover-text-navy:hover {
    color: #ffcc00 !important;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}
/* Bounce animation when page loads */
@keyframes bead-bounce {
    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.2);
    }
}

.bead-indicator.bead-visible {
    /* ... existing styles ... */
    animation:
        bead-glow 2s ease-in-out infinite alternate,
        bead-bounce 0.6s ease 0.3s;
}

/* Counter animation styles */
.counter {
    transition: all 0.3s ease;
}

/* Ensure smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Global Reach section specific styles */
#global-reach {
    scroll-margin-top: 80px; /* Adjust based on your navbar height */
}

/* ==================== LOADING OVERLAY ==================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a2463 0%, #1e40af 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-container {
    text-align: center;
    color: white;
    max-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Flying Plane Animation */
.plane-container {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100px;
    pointer-events: none;
}

.plane-icon {
    font-size: 60px;
    color: white;
    position: absolute;
    left: -100px;
    transform: translateY(-50%) rotate(90deg); /* Rotated to face right */
    animation: flyAcross 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.plane-trail {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.8) 10%,
        rgba(255, 255, 255, 0.4) 40%,
        rgba(255, 255, 255, 0.1) 70%,
        transparent 100%
    );
    border-radius: 50%;
    animation: trailAcross 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0.8;
}

.plane-clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    opacity: 0;
    animation: cloudFade 3s ease-out forwards;
}

.cloud-1 {
    width: 80px;
    height: 40px;
    top: 30%;
    left: 30%;
    animation-delay: 0.5s;
}

.cloud-2 {
    width: 120px;
    height: 60px;
    bottom: 40%;
    left: 50%;
    animation-delay: 1s;
}

.cloud-3 {
    width: 60px;
    height: 30px;
    top: 60%;
    left: 70%;
    animation-delay: 1.5s;
}

/* Loading Text - Appears after plane flies */
.loading-text {
    position: absolute;
    bottom: 30%;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    animation: fadeInText 0.5s ease-out 3s forwards;
}

.loading-dots {
    display: block;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.loading-dots span.dot {
    opacity: 0;
    animation: dotPulse 1.4s infinite;
}

.loading-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}
.loading-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}
.loading-dots .dot:nth-child(4) {
    animation-delay: 0.6s;
}

.loading-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-top: 0.5rem;
}

/* Progress Bar */
.loading-progress {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    animation: fadeInProgress 0.5s ease-out 3.2s forwards;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    animation: progressLoad 2s ease-in-out 3.2s infinite;
    border-radius: 2px;
}

/* Animations */
@keyframes flyAcross {
    0% {
        left: -100px;
        transform: translateY(-50%) rotate(90deg);
        opacity: 1;
    }
    80% {
        left: calc(100% - 50px);
        opacity: 1;
        transform: translateY(-50%) rotate(90deg);
    }
    100% {
        left: calc(100% + 100px);
        opacity: 0;
        transform: translateY(-50%) rotate(90deg);
    }
}

@keyframes trailAcross {
    0% {
        left: -150px;
        opacity: 0;
        width: 0;
    }
    20% {
        opacity: 0.8;
        width: 100px;
    }
    80% {
        left: calc(100% - 50px);
        opacity: 0.8;
        width: 100px;
    }
    100% {
        left: calc(100% + 50px);
        opacity: 0;
        width: 0;
    }
}

@keyframes cloudFade {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    20% {
        opacity: 0.4;
        transform: scale(1);
    }
    80% {
        opacity: 0.4;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInProgress {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes dotPulse {
    0%,
    100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@keyframes progressLoad {
    0% {
        width: 0%;
        transform: translateX(-100%);
    }
    50% {
        width: 100%;
        transform: translateX(0%);
    }
    100% {
        width: 0%;
        transform: translateX(100%);
    }
}

/* For faster animations on form submissions */
.loading-overlay.fast .plane-icon {
    animation-duration: 1.5s;
}

.loading-overlay.fast .progress-bar {
    animation-duration: 1.5s;
}
