/* 
 * Akshay Logistics - 2026 Modern Design 
 * Theme: Blue & Cyan Gradient (Trust & Speed)
 */

:root {
    --primary: #0056b3;
    /* Deep Professional Blue */
    --accent: #00c6ff;
    /* Vibrant Cyan */
    --dark: #0f172a;
    /* Navy Dark */
    --light: #f8fafc;
    /* Soft White */
    --gradient: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
    --gradient-dark: linear-gradient(135deg, #001f3f 0%, #0056b3 100%);
    --glass: rgba(255, 255, 255, 0.95);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --radius: 16px;
    --font-main: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    background-color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Top Bar Customization */
.top-bar {
    background: #1e293b;
    /* Dark Slate to match image */
    padding: 0 !important;
    overflow: hidden;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 10px 0;
}

.top-bar-wa {
    font-size: 1.2rem;
    color: #25d366;
    margin-right: 30px;
}

.top-bar-right {
    position: relative;
    background: var(--gradient);
    padding: 10px 20px 10px 40px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    z-index: 1;
    height: 100%;
}

.top-bar-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    width: 60px;
    height: 100%;
    background: var(--gradient);
    transform: skewX(-30deg);
    z-index: -1;
}

.top-bar-right .social-links a {
    color: var(--primary) !important;
    background: white;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.top-bar-right .social-links a:hover {
    background: var(--primary);
    color: white !important;
    transform: translateY(-3px);
}

.top-bar-search {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 15px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Typing Animation for Brand - Infinite Loop */
.typing-brand {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: none;
    width: 0;
    animation: typing-cycle 3s steps(16, end) infinite;
    vertical-align: middle;
    font-weight: 800;
}

/* Navigation & Sidebar Menu */
@media (max-width: 991.98px) {
    .offcanvas-lg {
        width: 280px !important;
        border-left: 1px solid rgba(0, 0, 0, 0.05);
        background: rgba(255, 255, 255, 0.99) !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    }

    .navbar-nav .nav-link {
        padding: 15px 25px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.02);
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        color: var(--dark) !important;
    }

    .navbar-nav .nav-link i {
        font-size: 1.1rem;
        opacity: 0.8;
    }

    .navbar-nav .nav-link.active {
        background: rgba(0, 114, 255, 0.05);
        border-left: 4px solid var(--primary);
        padding-left: 21px !important;
    }
}

.navbar {
    transition: all 0.4s ease;
    padding: 0.7rem 0;
}

/* Helper Classes for Mobile Menu */
.fw-600 {
    font-weight: 600;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.fs-xsmall {
    font-size: 0.75rem;
}

.icon-sm {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 114, 255, 0.4);
    background: var(--gradient);
}

/* Hero Carousel Styles */
#heroCarousel {
    position: relative;
}

.hero-slide-wrapper {
    height: 85vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

#heroCarousel .carousel-item h1 {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.2s;
}

#heroCarousel .carousel-item p {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.4s;
}

#heroCarousel .carousel-item .btn {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.6s;
}

#heroCarousel .carousel-item.active h1,
#heroCarousel .carousel-item.active p,
#heroCarousel .carousel-item.active .btn {
    transform: translateY(0);
    opacity: 1;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: var(--radius);
    color: white;
}


/* Feature Cards */
.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card.has-bg {
    background-size: cover;
    background-position: center;
    color: white;
    border: none;
}

.feature-card.has-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 31, 63, 0.8), rgba(0, 86, 179, 0.95));
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature-card.has-bg:hover::after {
    opacity: 0.98;
    background: linear-gradient(to bottom, rgba(0, 86, 179, 0.9), rgba(0, 31, 63, 0.98));
}

.feature-card.has-bg .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.feature-card.has-bg h4 {
    color: white;
}

.feature-card.has-bg .icon-box {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(0, 198, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* About Section */
.about-img-wrapper {
    position: relative;
    padding: 20px;
}

.about-img {
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient);
    color: white;
    padding: 20px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.3);
}

/* Section Backgrounds */
.section-with-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    z-index: 1;
}

.section-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 255, 0.98));
    z-index: -1;
}

.section-with-bg.dark-overlay::before {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.85), rgba(0, 86, 179, 0.92));
}

.section-content {
    position: relative;
    z-index: 2;
}

/* Footer */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    position: relative;
}

.footer-logo {
    font-size: 1.8rem;
    color: white;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.footer-link:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gradient);
    transform: translateY(-3px);
    color: white;
}

/* Floating Buttons */
.wa-float,
.call-float {
    position: fixed;
    right: 25px;
    width: 55px;
    height: 55px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.wa-float {
    bottom: 90px;
    background: #25d366;
}

.call-float {
    bottom: 155px;
    background: var(--primary);
}

.wa-float:hover,
.call-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


/* Scroll To Top */
.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--dark);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary);
    transform: translateY(-5px);
    color: white;
}

/* Logo Image Animation */
.logo-animate {
    animation: logo-pulse 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.logo-animate:hover {
    transform: scale(1.1) rotate(5deg);
}

@keyframes logo-pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(0, 198, 255, 0));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 10px rgba(0, 198, 255, 0.5));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(0, 198, 255, 0));
    }
}

/* Typing Animation for Brand - Infinite Loop */
.typing-brand {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: none;
    width: 0;
    animation: typing-cycle 3s steps(16, end) infinite;
    vertical-align: middle;
    font-weight: 800;
}

@keyframes typing-cycle {
    0% {
        width: 0;
    }

    40%,
    60% {
        width: 16ch;
    }

    /* AKSHAY LOGISTICS is 16 chars */
    80%,
    100% {
        width: 0;
    }
}

/* Responsiveness */
@media (max-width: 991px) {
    .top-bar {
        display: none !important;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding-top: 120px;
    }

    .typing-brand {
        font-size: 1rem;
        /* Smaller font on mobile */
    }

    .navbar-brand img {
        height: 35px !important;
        /* Smaller logo on mobile */
    }
}

/* CTA Section Advanced */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: #000;
    /* Solid base */
    overflow: hidden;
    color: white;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 1;
    /* Fully visible image */
    z-index: 1;
}

.cta-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark tint to make text pop */
}

.cta-content {
    position: relative;
    z-index: 2;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    padding: 80px 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.cta-btn-white {
    background: white;
    color: var(--primary);
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-btn-white:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-person-wrapper {
    position: relative;
    display: inline-block;
}

.cta-person-img {
    max-height: 550px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    vertical-align: bottom;
}

.cta-section:hover .cta-person-img {
    transform: translateY(-20px) scale(1.03);
}

.cta-badge {
    position: absolute;
    bottom: 80px;
    left: -30px;
    background: var(--gradient);
    color: white;
    padding: 15px 30px;
    border-radius: 15px;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
    animation: cta-floating 3s ease-in-out infinite;
    font-size: 1.1rem;
}

@keyframes cta-floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 991px) {
    .cta-person-img {
        max-height: 380px;
        margin-top: 50px;
    }
}

/* -------------------------------------------------------------
       New Pages Styles (About, Services, Gallery, FAQ, Contact)
    ------------------------------------------------------------- */

/* Page Header */
.page-header {
    position: relative;
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
    z-index: -1;
}

.breadcrumb-item.active {
    color: var(--accent);
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Hover Lift Effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

/* Small Icon Box */
.icon-box-sm {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.icon-box-sm:hover {
    background: var(--gradient) !important;
    color: white !important;
    transform: rotateY(180deg);
}

/* Process Steps */
.process-step {
    padding: 30px;
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-icon-box {
    transition: all 0.3s ease;
}

.process-step:hover .process-icon-box {
    background: var(--gradient) !important;
    color: white !important;
}

.process-step:hover .process-icon-box i {
    color: white !important;
}

/* Connect Line for Process Steps */
@media (min-width: 992px) {
    .process-step::after {
        content: '';
        position: absolute;
        top: 50px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: #e2e8f0;
        /* Light gray line */
        z-index: -1;
    }

    .col-lg-3:last-child .process-step::after {
        display: none;
    }
}


/* Gallery Styles */
.gallery-item {
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.gallery-img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.gallery-overlay {
    background: rgba(0, 86, 179, 0.85);
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
}


/* FAQ Accordion */
.faq-accordion .accordion-item {
    border: none;
    background: white;
    border-radius: 12px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button {
    background: white;
    color: var(--dark);
    border-radius: 12px !important;
    font-weight: 600;
    padding: 1.25rem;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--light);
    color: var(--primary);
    box-shadow: none !important;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230056b3'%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");
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}


/* Contact Form */
.form-control,
.form-select {
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
    background: white !important;
}

@media (max-width: 991px) {
    .cta-badge {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

.cta-details-box {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.4) 0%, rgba(0, 86, 179, 0.4) 100%);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 31, 63, 0.5);
}

@media (max-width: 991px) {
    .cta-details-box {
        padding: 2rem;
        border-radius: 1.5rem;
    }
}

/* Why Choose Us Redesign */
.choose-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 114, 255, 0.1);
    border-color: rgba(0, 114, 255, 0.1);
}

.choose-icon-box {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.choose-card:hover .choose-icon-box {
    background: var(--gradient);
    color: white;
    transform: rotate(10deg);
}

.choose-stat-box {
    background: var(--gradient-dark);
    padding: 40px 20px;
    border-radius: 30px;
    color: white;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.choose-stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    z-index: -1;
}

.choose-stat-box:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(to bottom, #ffffff 50%, #00c6ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Our Skills Section */
.skills-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.skill-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.skill-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
}

.skill-percentage {
    font-weight: 800;
    color: var(--primary);
}

.skill-progress-bg {
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.1, 0, 0.2, 1);
}

/* For triggering animation when section is in view */
.aos-animate .skill-progress-fill {
    width: var(--progress-width);
}

.skill-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.skill-card:hover .skill-icon-wrap {
    background: var(--gradient);
    color: white;
    transform: rotate(10deg);
}

/* Testimonial Section */
.testimonial-section {
    background: #f8fafc;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 114, 255, 0.12);
    border-color: var(--accent);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 30px;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-info h5 {
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--dark);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

/* Decoration for testimonial section */
.testimonial-bg-icon {
    position: absolute;
    font-size: 20rem;
    color: rgba(0, 86, 179, 0.03);
    z-index: 0;
    pointer-events: none;
}

.bg-icon-left {
    top: -50px;
    left: -50px;
}

.bg-icon-right {
    bottom: -50px;
    right: -50px;
}

/* FAQ Section */
.faq-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.85), rgba(0, 86, 179, 0.8));
    z-index: 1;
}

.faq-content {
    position: relative;
    z-index: 2;
}

.faq-section .faq-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px !important;
    margin-bottom: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-section .faq-accordion .accordion-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent);
}

.faq-section .faq-accordion .accordion-button {
    background: transparent;
    color: white;
    font-weight: 600;
    padding: 25px 30px;
    box-shadow: none;
    font-size: 1.1rem;
}

.faq-section .faq-accordion .accordion-button:not(.collapsed) {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.faq-section .faq-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.faq-section .faq-accordion .accordion-body {
    padding: 0 30px 25px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

@media (max-width: 991px) {
    .faq-section {
        background-attachment: scroll;
        padding: 70px 0;
    }

    .faq-accordion .accordion-button {
        padding: 20px;
        font-size: 1rem;
    }
}

/* Book Your Parcel Section */
.book-parcel-section {
    position: relative;
    padding: 60px 0;
    overflow: visible;
    color: white;
    background-size: cover;
    background-position: center;
}

.book-parcel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 31, 63, 0.8) 0%, rgba(0, 31, 63, 0.4) 60%, transparent 100%);
    z-index: 1;
}

.book-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/world-map.png');
    opacity: 0.05;
    z-index: 2;
}

.book-content {
    position: relative;
    z-index: 3;
}

.book-highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.book-btn {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    text-transform: capitalize;
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.3);
    color: white;
    filter: brightness(1.1);
}

.delivery-man-wrapper {
    position: absolute;
    right: 0;
    bottom: -240px;
    width: 100%;
    text-align: right;
    pointer-events: none;
    z-index: 4;
}

.delivery-man-img {
    height: auto;
    max-height: 550px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}




@media (max-width: 1199px) {
    .delivery-man-img {
        max-height: 400px;
        bottom: -150px;
    }
}

@media (max-width: 991px) {
    .book-parcel-section {
        padding-bottom: 250px;
        text-align: center;
    }

    .delivery-man-wrapper {
        bottom: 0px;
        right: 0;
        text-align: center;
    }

    .delivery-man-img {
        max-height: 300px;
        position: relative;
        right: auto;
        bottom: 0;
    }

    .book-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Team Member Section */
.team-section {
    background: #fdfdfd;
    position: relative;
    z-index: 1;
}

.team-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(0, 114, 255, 0.9);
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: white;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.team-social a:hover {
    transform: scale(1.2);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h5 {
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.team-info span {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Client Logo Slider Section */
.client-logos-section {
    padding: 10px 0 30px 0;
    background: #f9f9f9;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.logo-slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    overflow: hidden;
    padding: 10px 0;
}

.logo-track {
    display: flex;
    width: calc(300px * 12);
    animation: scroll 30s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-slide {
    width: 300px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.logo-slide img {
    max-width: 200px;
    max-height: 80px;
    opacity: 1;
    transition: all 0.3s ease;
}

.logo-slide:hover img {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 6));
    }
}

@media (max-width: 768px) {
    .logo-slide {
        width: 180px;
        padding: 0 20px;
    }

    .logo-track {
        width: calc(180px * 12);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-180px * 6));
        }
    }
}