/* --- Global Styles & Variables --- */
:root {
    /* Core Colors */
    --dark-blue: #0a2342;
    --dark-blue-rgb: 10, 35, 66;
    --accent-gold: #ffc107;
    --accent-gold-rgb: 255, 193, 7;
    --white: #ffffff;
    --text-color: #f0f0f0;
    --body-bg: #f8f9fa;

    /* Modern Palette Additions */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--body-bg);
    color: #333;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

/* --- Navbar Styles --- */
#main-nav {
    background-color: transparent;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#main-nav.scrolled {
    background-color: rgba(10, 35, 66, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    transition: color 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand:hover {
    color: var(--accent-gold);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    margin: 0 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

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

.navbar-toggler {
    border: none;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Custom Button Style */
.btn-primary.track-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ffdb4d 100%);
    border: none;
    color: var(--dark-blue);
    font-weight: 700;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary.track-btn:hover,
.btn-primary.track-btn:focus {
    background: linear-gradient(135deg, #ffdb4d 0%, var(--accent-gold) 100%);
    color: var(--dark-blue);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}


/* --- Hero Section & Flair --- */
.hero-section {
    height: 100vh;
    position: relative;
    /* Needed for positioning children */
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.carousel-item {
    position: absolute !important;
    /* Stack slides */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-down-indicator:hover {
    opacity: 1;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-20px);
    }

    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-down-indicator svg {
    animation: bounce 2.5s infinite;
}


/* --- Carousel Styles --- */
#heroCarousel {
    position: relative;
    z-index: 2;
    /* ABOVE particles */
    height: 100%;
}

.carousel-inner {
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* --- Carousel "Deck" Animation --- */
.carousel-item {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;

    /* Default state for cards in the "deck" */
    transform: scale(0.9);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* The active card on top of the deck */
.carousel-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 3;
}

/* The card that is about to become active (for "prev" and "next" button) */
.carousel-item-prev.carousel-item-end,
.carousel-item-next.carousel-item-start {
    opacity: 1;
    transform: scale(1);
    z-index: 3;
}

/* The currently active card that is swiping OUT to the LEFT */
.active.carousel-item-start {
    opacity: 0;
    /* Swipe out slowly */
    transform: translateX(-100%) scale(1);
    z-index: 2;
    /* Must be below incoming card */
}

/* The currently active card that is swiping OUT to the RIGHT (for prev) */
.active.carousel-item-end {
    opacity: 0;
    transform: translateX(100%) scale(1);
    z-index: 2;
}

/* Remove default Bootstrap transforms to prevent conflicts */
.carousel-item-next:not(.carousel-item-start),
.carousel-item-prev:not(.carousel-item-end) {
    transform: scale(0.9) !important;
    /* Ensure non-active slides stay in the deck */
}


/* Dark overlay for better text readability */
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 35, 66, 0.8), rgba(10, 35, 66, 0.4));
    z-index: 1;
}

.carousel-caption {
    bottom: 0;
    top: 0;
    left: 10%;
    right: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
    /* Above overlay */
}

.carousel-caption h1,
.carousel-caption p,
.carousel-caption .btn {
    opacity: 0;
}

/* Delay text animation slightly until after slide transition starts */
.carousel-item.active .carousel-caption h1 {
    animation: fadeInDown 0.8s ease-out 0.9s forwards;
}

.carousel-item.active .carousel-caption p {
    animation: fadeInUp 0.8s ease-out 1.3s forwards;
}

.carousel-item.active .carousel-caption .btn {
    animation: zoomIn 0.6s ease-out 1.7s forwards;
}

.carousel-caption h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.carousel-caption .lead {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    max-width: 800px;
    margin: 1.5rem auto;
    font-weight: 300;
}

/* Style for buttons inside the carousel */
.carousel-caption .btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-top: 2rem;
}

.carousel-caption .btn:hover,
.carousel-caption .btn:focus {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--dark-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

/* Hide Carousel Arrow Controls */
.carousel-control-prev,
.carousel-control-next {
    display: none;
}

/* Custom Carousel Indicators */
.carousel-indicators {
    z-index: 4;
    /* Above caption and particles */
    margin-bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--white);
    opacity: 0.5;
    margin: 0 8px;
    transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: var(--accent-gold);
    transform: scale(1.2);
}

/* --- Keyframe Animations --- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -70px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 70px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

/* --- Responsive Styles --- */
@media (max-width: 991.98px) {
    #main-nav {
        background-color: var(--dark-blue);
    }

    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(5px);
        padding: 1.5rem;
        border-radius: 0.5rem;
        margin-top: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        margin: 0.5rem 0;
    }
}

/* --- Services Section --- */
.section-services {
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--dark-blue);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -50px;
    /* Overlap image */
    border: 4px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    background: var(--accent-gold);
    color: var(--dark-blue);
    transform: rotateY(180deg);
}

.service-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    margin-top: auto;
    color: var(--accent-gold-rgb);
    /* Fallback if var not set, using hex */
    color: #d4a006;
    /* Darker gold for text */
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.read-more .arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--dark-blue);
}

.read-more:hover .arrow {
    transform: translateX(5px);
}

/* --- Tracking Section --- */
.section-tracking {
    background-color: var(--body-bg);
    /* Light background */
    padding: 6rem 0;
    /* Increased padding */
    position: relative;
    z-index: 3;
    margin-top: 0;
    /* Removed negative margin */
}

.tracking-box {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
}

.tracking-form .form-control {
    height: 60px;
    font-size: 1.1rem;
    padding-left: 1.5rem;
    border-radius: 50px 0 0 50px;
    border: 1px solid #e0e0e0;
    /* Light border for visibility on white */
    background-color: #f8f9fa;
}

.tracking-form .form-control:focus {
    box-shadow: none;
    background-color: #fff;
    border-color: var(--accent-gold);
}

.track-submit-btn {
    background: var(--accent-gold);
    border: none;
    color: var(--dark-blue);
    font-weight: 700;
    padding: 0 2.5rem;
    border-radius: 0 50px 50px 0;
    /* Rounded right side */
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.track-submit-btn:hover {
    background-color: #ffca2c;
    padding-right: 3rem;
    /* Slide effect */
}

@media (max-width: 768px) {
    .tracking-form .input-group {
        flex-direction: column;
    }

    .tracking-form .form-control {
        border-radius: 50px;
        margin-bottom: 1rem;
        width: 100%;
    }

    .track-submit-btn {
        border-radius: 50px;
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .track-submit-btn:hover {
        padding-right: 1rem;
        /* Reset slide effect on mobile */
    }
}

/* --- About Us Section --- */
.section-about {
    background-color: #f8f9fa;
    /* Light gray background for contrast */
    overflow: hidden;
}

.about-img-wrapper {
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

.about-img {
    transition: transform 0.5s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--dark-blue);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--white);
    animation: float 3s ease-in-out infinite;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--accent-gold);
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.icon-box-sm {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* --- Contact Us Section --- */
.section-contact {
    background: linear-gradient(to right, rgba(var(--dark-blue-rgb), 0.95), rgba(var(--dark-blue-rgb), 0.85)), url('../images/hero-2.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
    z-index: 2;
    padding: 6rem 0;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    justify-content: center;
}

.contact-info-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}



.contact-info-item:hover {
    transform: translateY(-8px);
    background: rgba(var(--accent-gold-rgb), 0.1);
    border-color: var(--accent-gold);
}

.icon-box-contact {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--accent-gold);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(var(--accent-gold-rgb), 0.3);
}

.contact-info-item h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}



.contact-form-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}



.contact-form-wrapper .form-control {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    color: var(--white);
    height: 55px;
}



.contact-form-wrapper .form-control:focus {
    background-color: rgba(0, 0, 0, 0.3);
    border-color: var(--accent-gold);
    color: var(--white);
    box-shadow: none;
}



.contact-form-wrapper .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}



.contact-form-wrapper .form-floating>label {
    color: rgba(255, 255, 255, 0.6);
}



#form-feedback .alert {
    border-radius: 10px;
    border: none;
}



#form-feedback .alert-success {
    background-color: rgba(var(--accent-gold-rgb), 0.2);
    color: var(--accent-gold);
}

#form-feedback .alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    color: #f8d7da;
}

/* --- CTA Banner Section --- */
.section-cta-banner {
    padding: 6rem 0;
    background: linear-gradient(to right, rgba(var(--dark-blue-rgb), 0.9), rgba(var(--dark-blue-rgb), 0.9)), url('../images/hero-3.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Parallax effect */     
    position: relative;
    z-index: 1;
}

.section-cta-banner h2 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.btn-cta {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-top: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-cta:hover,
.btn-cta:focus {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--dark-blue);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(var(--accent-gold-rgb), 0.4);
}

/* --- Testimonials Section --- */
.section-testimonials {
    background-color: var(--body-bg); /* Use a slightly off-white for texture */
    padding: 6rem 0;
}

.testimonial-swiper {
    padding-bottom: 4rem; /* Space for pagination */
    overflow: hidden; /* Allow popped-out elements to be seen */
}

.swiper-slide {
    height: auto; /* Allow slide to grow with content */
    display: flex;
    align-items: stretch; /* Make all cards in a row the same height */
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    padding-top: 4rem; /* More space for the avatar */
    box-shadow: var(--shadow-lg);
    border: 1px solid #e9ecef;
    text-align: center;
    width: 100%; /* Ensure card fills the slide */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-top: 50px; /* Push card down to make space for avatar */
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 5px solid var(--white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    position: absolute;
    top: -45px; /* Position half-in, half-out */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    font-size: 1.05rem; /* Slightly smaller for balance */
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Allow text to push author down, ensuring alignment */
}

.testimonial-author {
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.testimonial-role {
    color: #777;
    font-size: 0.9rem;
}

/* Swiper Pagination Styles */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    opacity: 1;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent-gold);
    transform: scale(1.2);
}

/* --- About Page Styles --- */
.page-header {
    padding: 8rem 0;
    background: linear-gradient(rgba(var(--dark-blue-rgb), 0.8), rgba(var(--dark-blue-rgb), 0.8)), url('../images/hero-1.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.page-header h1 {
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.icon-box-lg {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(var(--accent-gold-rgb), 0.3);
}

.team-card {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    background: var(--dark-blue);
    position: relative;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(var(--dark-blue-rgb), 0.9), transparent);
}

.team-name {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.team-role {
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Global Reach Section --- */
.section-global-reach {
    padding: 6rem 0;
    background-color: var(--dark-blue);
    background-image: linear-gradient(to right, rgba(var(--dark-blue-rgb), 0.95), rgba(var(--dark-blue-rgb), 0.85)), url('../images/hero-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-global-reach .img-fluid {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* --- Services Page Styles --- */
.service-item .icon-box {
    width: 60px;
    height: 60px;
    background: var(--dark-blue);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section-why-choose-us .value-card {
    background: var(--white);
}

/* Scroll Animation */
.reveal-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* --- Contact Page Styles --- */
.section-map {
    line-height: 0; /* Remove space below iframe */
}

.google-map {
    border: 0;
    width: 100%;
    height: 450px;
}

.accordion-item {
    background-color: var(--white);
    border: 1px solid #e9ecef;
    border-radius: 0.5rem !important;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-weight: 600;
    color: var(--dark-blue);
    background-color: var(--white);
    border-radius: 0.5rem !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--accent-gold);
    color: var(--dark-blue);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--accent-gold-rgb), 0.25);
    border-color: var(--accent-gold);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a2342'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a2342'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: #555;
    line-height: 1.7;
}

/* --- Tracking Page Styles --- */
.tracking-results-wrapper {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
}

.tracking-summary-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;
}
.tracking-summary-header p { margin-bottom: 0; }

/* Progress Bar */
.tracking-progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}
.tracking-progress-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #e0e0e0;
    transform: translateY(-50%);
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 20%;
}
.progress-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background-color 0.4s ease, border 0.4s ease;
    border: 3px solid #e0e0e0;
}
.progress-step-label {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
    transition: color 0.4s ease;
}

/* Completed Step Styles */
.progress-step.completed .progress-step-icon {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--dark-blue);
}
.progress-step.completed .progress-step-label {
    color: var(--dark-blue);
    font-weight: 600;
}

/* Timeline */
.tracking-history-timeline {
    position: relative;
    padding-left: 30px;
    border-left: 3px solid #f0f0f0;
}
.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    animation: fadeIn 0.5s ease-out;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-icon {
    position: absolute;
    left: -40px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ccc;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px #ccc;
}
.timeline-item:first-child .timeline-icon {
    background-color: var(--accent-gold);
    box-shadow: 0 0 0 3px var(--accent-gold);
}
.timeline-content .timeline-status {
    color: var(--dark-blue);
}

.shipment-details-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    height: 100%;
}
.shipment-details-card .card-subtitle {
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--dark-blue);
    color: var(--text-color);
    padding-top: 5rem;
    position: relative;
    z-index: 5; /* Ensure footer is on top */
}

.footer-heading {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-gold);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

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

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons .social-icon:hover {
    background-color: var(--accent-gold);
    color: var(--dark-blue);
    transform: translateY(-3px);
}

.newsletter-form .form-control {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    color: var(--white);
    height: 50px;
}

.newsletter-form .form-control:focus {
    background-color: rgba(0, 0, 0, 0.3);
    border-color: var(--accent-gold);
    color: var(--white);
    box-shadow: none;
}

.copyright-bar {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 4rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* --- Scroll to Top Button --- */
.scroll-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-gold);
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}
.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-to-top-btn:hover {
    background-color: #e0a800;
    color: var(--dark-blue);
}

/* --- Chat Widget Styles --- */
.chat-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1050; /* Higher z-index */
}
.chat-bubble {
    width: 60px;
    height: 60px;
    background-color: var(--accent-gold); /* Changed to yellow */
    color: var(--dark-blue); /* Changed to dark blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    transition: transform 0.2s ease;
    position: relative; /* For badge positioning */
}
.chat-bubble:hover {
    transform: scale(1.1);
}
.chat-notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    background-color: #dc3545;
    border-radius: 50%;
    border: 2px solid var(--white);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.chat-notification-badge.visible {
    opacity: 1;
    visibility: visible;
}
.chat-window {
    width: 350px;
    height: 500px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: absolute;
    bottom: 80px;
    left: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1049;
}
.chat-window.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.chat-header {
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-header h5 {
    margin: 0;
    font-weight: 600;
}
.chat-body {
    flex-grow: 1;
    padding: 1rem;
    overflow-y: auto;
    background-color: #f4f7f9;
}
.chat-message {
    display: flex;
    margin-bottom: 1rem;
    max-width: 85%;
}
.chat-message .message-content {
    padding: 0.7rem 1rem;
    border-radius: 15px;
    line-height: 1.4;
}
.chat-message.visitor {
    justify-content: flex-end;
}
.chat-message.visitor .message-content {
    background-color: var(--accent-gold);
    color: var(--dark-blue);
    border-bottom-right-radius: 3px;
}
.chat-message.admin {
    justify-content: flex-start;
}
.chat-message.admin .message-content {
    background-color: var(--white);
    color: var(--dark-blue);
    border: 1px solid #e9ecef;
    border-bottom-left-radius: 3px;
}
.chat-footer {
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid #eee;
}
.chat-footer .form-control {
    height: 45px;
}
.chat-initial-inputs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.chat-initial-inputs input {
    height: 45px;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
}
