/* =========================================================
   AVON SWIFT LOGISTIC OPC PVT LTD
   Premium Corporate Logistics Website
   Bootstrap 5 + Custom CSS
   ========================================================= */

/* =========================
   ROOT VARIABLES
========================= */
:root {
    --primary: #0F519F;
    --primary-dark: #092E59;
    --primary-light: #2B72C4;
    --accent: #D70D84;
    --accent-dark: #AE096A;

    --navy: #071A33;
    --dark-blue: #092E59;
    --white: #ffffff;
    --light: #F5F8FC;
    --light-blue: #EEF5FC;

    --text: #172B4D;
    --muted: #6B7A90;
    --border: #E4EAF1;

    --shadow-sm: 0 8px 25px rgba(7, 26, 51, 0.07);
    --shadow-md: 0 15px 45px rgba(7, 26, 51, 0.12);
    --shadow-lg: 0 25px 70px rgba(7, 26, 51, 0.18);

    --transition: all 0.35s ease;
    --radius: 18px;
}


/* =========================
   GLOBAL
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

body {
    font-family: "Manrope", "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

button,
a {
    transition: var(--transition);
}

::selection {
    background: var(--primary);
    color: var(--white);
}


/* =========================
   CUSTOM SCROLLBAR
========================= */
::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #eef2f7;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}


/* =========================
   COMMON
========================= */
section {
    position: relative;
    overflow: hidden;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 18px;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--muted);
    font-size: 16px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-label::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--accent);
}


/* =========================
   TOP BAR
========================= */
.top-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 9px 0;
}

.top-bar a:hover {
    color: var(--white);
}

.top-bar .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-right: 25px;
}

.top-bar i {
    color: var(--accent);
}

.top-social {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.top-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
}

.top-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}


/* =========================
   NAVBAR
========================= */
.main-navbar {
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 18px 0;
    transition: var(--transition);
}

.main-navbar.scrolled {
    position: fixed;
    top: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 21px;
    box-shadow: 0 8px 20px rgba(15,81,159,0.25);
}

.logo-text {
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo-text small {
    display: block;
    font-size: 8px;
    letter-spacing: 2px;
    margin-top: 5px;
    opacity: .75;
}

.main-navbar.scrolled .logo-text {
    color: var(--navy);
}

.navbar-nav {
    gap: 4px;
}

.navbar-nav .nav-link {
    color: rgba(8, 8, 8, 0.9);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 12px !important;
    position: relative;
}

.main-navbar.scrolled .nav-link {
    color: var(--text);
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 3px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover {
    color: var(--accent);
}

.navbar-toggler {
    border: 0;
    padding: 5px;
    background: #00479d;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.main-navbar.scrolled .navbar-toggler-icon {
    filter: none;
}


/* =========================
   PREMIUM BUTTONS
========================= */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom {
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
    box-shadow: 0 10px 25px rgba(15,81,159,.25);
}

.btn-primary-custom:hover {
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--accent),
        #ED2A9B
    );
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(215,13,132,.25);
}

.btn-outline-custom {
    color: #fff;
    border: 1px solid rgba(255,255,255,.5);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}

.btn-outline-custom:hover {
    color: #fff;
    border-color: var(--accent);
    background: var(--accent);
    transform: translateY(-3px);
}


/* =========================
   HERO
========================= */
.hero-section {
    min-height: 780px;
    height: 100vh;
    max-height: 900px;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.hero-slide {
    height: 100vh;
    min-height: 780px;
    max-height: 900px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7,26,51,.96) 0%,
            rgba(7,26,51,.80) 42%,
            rgba(7,26,51,.35) 72%,
            rgba(7,26,51,.65) 100%
        );
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(7,26,51,.25),
            transparent 55%,
            rgba(7,26,51,.75)
        );
}

.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-text {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 50px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.20);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.hero-badge span {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(215,13,132,.15);
}

.hero-title {
    color: #fff;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.hero-title span {
    color: #fff;
    position: relative;
}

.hero-title .highlight {
    background: linear-gradient(
        90deg,
        #fff,
        #D70D84
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    max-width: 600px;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


/* =========================
   HERO GLASS CARD
========================= */
.hero-glass-card {
    position: absolute;
    right: 7%;
    bottom: 16%;
    width: 285px;
    padding: 25px;
    border-radius: 18px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #fff;
    z-index: 8;
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

.hero-glass-card h5 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 18px;
}

.hero-glass-card ul li {
    display: flex;
    gap: 9px;
    align-items: center;
    color: rgba(255,255,255,.8);
    font-size: 13px;
    margin-bottom: 10px;
}

.hero-glass-card i {
    color: var(--accent);
}


/* =========================
   HERO INDICATORS
========================= */
.hero-trust {
    position: absolute;
    bottom: 28px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.trust-item strong {
    display: block;
    font-size: 12px;
}

.trust-item span {
    display: block;
    color: rgba(255,255,255,.55);
    font-size: 10px;
}


/* =========================
   CAROUSEL
========================= */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 10;
}

.carousel-control-prev {
    left: 25px;
}

.carousel-control-next {
    right: 25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    background-size: 17px;
    background-color: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}

.carousel-indicators {
    bottom: 90px;
    z-index: 10;
}

.carousel-indicators button {
    width: 25px;
    height: 3px;
    border: 0;
    margin: 0 4px;
    opacity: .4;
}

.carousel-indicators .active {
    opacity: 1;
    background: var(--accent);
}

/* -------------------- */
/* =========================
   PREMIUM COUNTERS
========================= */

.counters-section {
    position: relative;
    overflow: hidden;
}

.counters-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #0F519F;
    border-radius: 50%;
    top: -250px;
    left: -150px;
    opacity: 0.12;
    filter: blur(80px);
}

.counters-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: #D70D84;
    border-radius: 50%;
    bottom: -250px;
    right: -100px;
    opacity: 0.10;
    filter: blur(80px);
}

.counter-item {
    position: relative;
    z-index: 2;
    padding: 15px;
}

.counter-item h2 {
    margin-bottom: 5px;
    font-size: 55px;
    letter-spacing: -2px;
}

.counter-item h2 span:last-child {
    color: #D70D84;
}

.counter-item p {
    margin-bottom: 0;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 767px) {

    .counter-item h2 {
        font-size: 40px;
    }

}

/* =========================
   COUNTER SECTION
========================= */
.counter-section {
    position: relative;
    background: var(--navy);
    padding: 55px 0;
    overflow: hidden;
}

.counter-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -200px;
    top: -250px;
    background: var(--primary);
    opacity: .15;
    border-radius: 50%;
    filter: blur(60px);
}

.counter-box {
    text-align: center;
    position: relative;
    padding: 15px 30px;
}

.counter-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    width: 1px;
    height: 70%;
    background: rgba(255,255,255,.12);
}

.counter-number {
    color: #fff;
    font-size: 45px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 8px;
}

.counter-number span {
    color: var(--accent);
}

.counter-label {
    color: rgba(255,255,255,.55);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
}


/* =========================
   ABOUT
========================= */
.about-section {
    background: #fff;
}

.about-image-wrap {
    position: relative;
    padding-right: 40px;
}

.about-image {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.about-image-wrap::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 20px;
    left: -25px;
    top: -25px;
    z-index: 0;
    opacity: .12;
}

.about-image-wrap img {
    position: relative;
    z-index: 1;
}

.about-floating-card {
    position: absolute;
    right: 0;
    bottom: 35px;
    z-index: 2;
    padding: 22px;
    width: 220px;
    border-radius: 17px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,255,255,.7);
}

.about-floating-card i {
    color: var(--accent);
    font-size: 28px;
}

.about-floating-card h6 {
    margin: 10px 0 3px;
    font-size: 14px;
    font-weight: 800;
}

.about-floating-card small {
    color: var(--muted);
    font-size: 11px;
}

.about-content {
    padding-left: 25px;
}

.about-content p {
    color: var(--muted);
    margin-bottom: 25px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--light-blue);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h6 {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 3px;
}

.feature-item p {
    margin: 0;
    font-size: 11px;
}


/* =========================
   SERVICES
========================= */
.services-section {
    background: var(--light);
}

.service-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(15,81,159,.25);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(7,26,51,.65)
    );
}

.service-number {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 2;
    color: rgba(255,255,255,.85);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.service-icon {
    position: absolute;
    right: 18px;
    bottom: -23px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: #fff;
    transform: rotate(-5deg);
}

.service-body {
    padding: 30px 22px 22px;
}

.service-body h5 {
    font-size: 18px;
    font-weight: 850;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-body p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    min-height: 66px;
}

.service-actions {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.service-actions a {
    flex: 1;
    text-align: center;
    padding: 9px 7px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 800;
}

.service-call {
    background: var(--primary);
    color: #fff;
}

.service-call:hover {
    background: var(--accent);
    color: #fff;
}

.service-whatsapp {
    border: 1px solid var(--border);
    color: var(--primary);
}

.service-whatsapp:hover {
    background: var(--light-blue);
    color: var(--primary);
}


/* =========================
   WHY CHOOSE US
========================= */
.why-section {
    background: var(--navy);
    color: #fff;
    overflow: hidden;
}

.why-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image:
        linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
    background-size: 45px 45px;
}

.why-image {
    height: 550px;
    width: 100%;
    object-fit: cover;
    border-radius: 22px;
}

.why-content {
    padding-left: 35px;
}

.why-content .section-title {
    color: #fff;
}

.why-description {
    color: rgba(255,255,255,.62);
    font-size: 14px;
    margin-bottom: 28px;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.8);
    font-size: 12px;
    font-weight: 700;
}

.why-item i {
    color: var(--accent);
    font-size: 18px;
}


/* =========================
   PROCESS
========================= */
.process-section {
    background: #fff;
}

.process-timeline {
    position: relative;
    margin-top: 55px;
}

.process-line {
    position: absolute;
    left: 8.33%;
    right: 8.33%;
    top: 47px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );
    opacity: .2;
}

.process-item {
    position: relative;
    text-align: center;
    padding: 0 12px;
}

.process-icon {
    width: 95px;
    height: 95px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(15,81,159,.12);
    transition: var(--transition);
}

.process-item:hover .process-icon {
    background: var(--primary);
    color: #fff;
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(15,81,159,.25);
}

.process-number {
    position: absolute;
    top: -5px;
    right: calc(50% - 58px);
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 9px;
    font-weight: 800;
    z-index: 4;
}

.process-item h5 {
    font-size: 15px;
    font-weight: 850;
    margin-bottom: 7px;
}

.process-item p {
    font-size: 11px;
    color: var(--muted);
}

/* --------------------------------- */
/* =========================================
   PREMIUM GALLERY
========================================= */

.gallery-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.gallery-subtitle {
    display: inline-block;
    color: #D70D84;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.gallery-description {
    max-width: 650px;
    font-size: 16px;
}

/* Gallery Card */

.gallery-card {
    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    background: #071A33;
    box-shadow: 0 10px 30px rgba(7, 26, 51, 0.10);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* Dark overlay */

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(
        to top,
        rgba(7, 26, 51, 0.75),
        rgba(7, 26, 51, 0.05)
    );

    opacity: 0;
    transition: all 0.35s ease;
}

/* Hover */

.gallery-card:hover .gallery-image {
    transform: scale(1.10);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* Zoom Icon */

.gallery-zoom {
    width: 58px;
    height: 58px;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #0F519F;
    color: #ffffff;

    font-size: 22px;

    transform: scale(0.6);
    transition: all 0.35s ease;

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.gallery-card:hover .gallery-zoom {
    transform: scale(1);
}

/* =========================================
   LIGHTBOX
========================================= */

.gallery-lightbox {
    position: fixed;
    inset: 0;

    background: rgba(2, 10, 20, 0.96);

    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 40px;
}

.gallery-lightbox.active {
    display: flex;
}

/* Image */

.lightbox-image {
    max-width: 90%;
    max-height: 85vh;

    object-fit: contain;

    border-radius: 10px;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.5);

    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {

    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

/* Close Button */

.lightbox-close {
    position: fixed;

    top: 25px;
    right: 30px;

    width: 52px;
    height: 52px;

    border: 0;
    border-radius: 50%;

    background: #D70D84;
    color: #ffffff;

    font-size: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 100001;

    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: #0F519F;
    transform: rotate(90deg);
}

/* Previous / Next */

.lightbox-prev,
.lightbox-next {

    position: fixed;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;
    height: 55px;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,0.12);

    color: #ffffff;

    font-size: 28px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;

    z-index: 100001;

    transition: all 0.3s ease;

    backdrop-filter: blur(10px);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #0F519F;
}

/* Counter */

.lightbox-counter {
    position: fixed;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    color: #ffffff;

    background: rgba(0,0,0,0.4);

    padding: 8px 18px;

    border-radius: 30px;

    font-size: 14px;

    z-index: 100001;
}

/* Mobile */

@media (max-width: 767px) {

    .gallery-card {
        height: 190px;
        border-radius: 12px;
    }

    .gallery-lightbox {
        padding: 15px;
    }

    .lightbox-image {
        max-width: 96%;
        max-height: 75vh;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;

        width: 45px;
        height: 45px;

        font-size: 23px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
        font-size: 21px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

}
/* =========================
   GALLERY
========================= */
.gallery-section {
    background: var(--light);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 270px;
    cursor: pointer;
    background: var(--navy);
}

.gallery-item.tall {
    height: 560px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 45%,
        rgba(7,26,51,.75)
    );
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay span {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.gallery-overlay i {
    float: right;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================
   TESTIMONIAL
========================= */
.testimonial-section {
    background: #fff;
}

.card-img, .card-img-bottom, .card-img-top {
    width: 100%;
    height: 200px;
}

.testimonial-card {
    padding: 35px;
    border-radius: 20px;
    background: rgba(255,255,255,.75);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--light-blue);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.stars {
    color: #F5A623;
    font-size: 12px;
    margin-bottom: 15px;
}

.client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.client h6 {
    font-size: 13px;
    margin-bottom: 0;
}

.client small {
    color: var(--muted);
    font-size: 10px;
}


/* =========================
   CONTACT
========================= */
.contact-section {
    background: var(--light);
}

.contact-wrapper {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-info {
    background:
        linear-gradient(
            145deg,
            var(--navy),
            var(--primary-dark)
        );
    color: #fff;
    padding: 55px 45px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 50px solid rgba(255,255,255,.025);
    right: -130px;
    bottom: -150px;
}

.contact-info .section-title {
    color: #fff;
}

.contact-info > p {
    color: rgba(255,255,255,.6);
    font-size: 13px;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    border-radius: 11px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-detail h6 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.45);
    margin-bottom: 3px;
}

.contact-detail p {
    margin: 0;
    font-size: 12px;
    color: rgba(255,255,255,.85);
}

.contact-form {
    background: #fff;
    padding: 55px 45px;
}

.contact-form h3 {
    font-size: 26px;
    font-weight: 850;
    margin-bottom: 8px;
}

.contact-form > p {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 25px;
}

.form-control,
.form-select {
    border: 1px solid var(--border);
    min-height: 50px;
    border-radius: 9px;
    font-size: 13px;
    color: var(--text);
    padding: 12px 15px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15,81,159,.08);
}

textarea.form-control {
    min-height: 125px;
    resize: vertical;
}


/* =========================
   FAQ
========================= */
.faq-section {
    background: #fff;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 12px;
}

.accordion-button {
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
    padding: 20px;
    background: #fff;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: var(--light-blue);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
    padding: 0 20px 20px;
}


/* =========================
   CTA
========================= */
.cta-section {
    min-height: 450px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(7,26,51,.95),
            rgba(7,26,51,.68)
        ),
        url("../images/cta-truck.jpg") center/cover no-repeat;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: auto;
    text-align: center;
    color: #fff;
}

.cta-content .section-label {
    color: #fff;
}

.cta-content .section-label::before {
    background: var(--accent);
}

.cta-content h2 {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 18px;
}

.cta-content p {
    color: rgba(255,255,255,.7);
    max-width: 600px;
    margin: 0 auto 28px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}


/* =========================
   FOOTER
========================= */
.footer {
    background: #041224;
    color: rgba(255,255,255,.65);
    padding-top: 75px;
}

.footer-brand {
    max-width: 310px;
}

.footer-brand .logo-text {
    color: #fff;
}

.footer-brand p {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 20px;
}

.footer-title {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background: var(--accent);
    margin-top: 8px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,.55);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 12px;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.footer-social a {
    width: 37px;
    height: 37px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 55px;
    padding: 20px 0;
    font-size: 11px;
    color: rgba(255,255,255,.4);
}


/* =========================
   FLOATING BUTTONS
========================= */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
    position: relative;
}

.floating-btn:hover {
    color: #fff;
    transform: translateY(-5px) scale(1.04);
}

.floating-call {
    background: var(--primary);
}

.floating-whatsapp {
    background: #128C7E;
}

.floating-btn::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid currentColor;
    opacity: .15;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(.9);
        opacity: .4;
    }

    70% {
        transform: scale(1.25);
        opacity: 0;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}


/* =========================
   SCROLL REVEAL
========================= */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all .8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all .8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}


/* =========================
   GLASS EFFECT
========================= */
.glass {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {

    .navbar-nav .nav-link {
        padding-left: 8px !important;
        padding-right: 8px !important;
        font-size: 14px;
        color: #fff;
    }

    .hero-glass-card {
        right: 4%;
    }

    .section-title {
        font-size: 39px;
    }
}


@media (max-width: 991px) {

    .top-bar {
        display: none;
    }

    .main-navbar {
        top: 0;
        background: rgba(7,26,51,.95);
        padding: 12px 0;
    }

    .main-navbar.scrolled {
        background: rgba(255,255,255,.98);
    }

    .navbar-collapse {
        margin-top: 15px;
        padding: 15px;
        border-radius: 12px;
        background: var(--navy);
    }

    .main-navbar.scrolled .navbar-collapse {
        background: #fff;
    }

    .navbar-nav .nav-link {
        padding: 10px !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-call {
        margin-top: 10px;
        width: 100%;
    }

    .hero-section,
    .hero-slide {
        min-height: 720px;
        height: 90vh;
    }

    .hero-glass-card {
        display: none;
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero-trust {
        display: none;
    }

    .carousel-indicators {
        bottom: 25px;
    }

    .about-image-wrap {
        margin-bottom: 50px;
        padding-right: 20px;
    }

    .about-content {
        padding-left: 0;
    }

    .why-image {
        height: 400px;
        margin-bottom: 45px;
    }

    .why-content {
        padding-left: 0;
    }

    .process-line {
        display: none;
    }

    .process-item {
        margin-bottom: 35px;
    }

    .counter-box {
        margin-bottom: 20px;
    }

    .counter-box:not(:last-child)::after {
        display: none;
    }

    .contact-info,
    .contact-form {
        padding: 40px 30px;
    }
}


@media (max-width: 767px) {

    .section-padding {
        padding: 70px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .hero-section,
    .hero-slide {
        min-height: 680px;
        height: 90vh;
    }

    .hero-slide {
        background-position: 65% center;
    }

    .hero-slide::before {
        background:
            linear-gradient(
                90deg,
                rgba(7,26,51,.94),
                rgba(7,26,51,.65)
            );
    }

    .hero-content {
        align-items: center;
        padding-top: 30px;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .btn-premium {
        padding: 12px 18px;
        font-size: 11px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .counter-section {
        padding: 45px 0;
    }

    .counter-number {
        font-size: 38px;
    }

    .about-image {
        height: 400px;
    }

    .about-floating-card {
        right: 10px;
        bottom: 20px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .why-list {
        grid-template-columns: 1fr;
    }

    .why-image {
        height: 350px;
    }

    .process-icon {
        width: 75px;
        height: 75px;
        font-size: 23px;
    }

    .process-item {
        display: flex;
        text-align: left;
        gap: 18px;
        align-items: flex-start;
    }

    .process-icon {
        flex: 0 0 75px;
        margin: 0;
    }

    .process-item .process-number {
        left: 52px;
        right: auto;
    }

    .gallery-item,
    .gallery-item.tall {
        height: 230px;
    }

    .contact-info,
    .contact-form {
        padding: 35px 22px;
    }

    .cta-section {
        min-height: 480px;
    }

    .cta-content h2 {
        font-size: 38px;
    }

    .floating-actions {
        right: 14px;
        bottom: 15px;
    }

    .floating-btn {
        width: 49px;
        height: 49px;
        font-size: 18px;
    }
}


@media (max-width: 480px) {

    .logo-icon {
        width: 39px;
        height: 39px;
        font-size: 17px;
    }

    .logo-text {
        font-size: 17px;
    }

    .logo-text small {
        font-size: 7px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-buttons .btn-premium {
        width: 100%;
    }

    .counter-box {
        padding: 10px;
    }

    .counter-number {
        font-size: 34px;
    }

    .about-image {
        height: 330px;
    }

    .about-floating-card {
        width: 190px;
        padding: 15px;
    }

    .about-floating-card h6 {
        font-size: 12px;
    }

    .service-image {
        height: 200px;
    }

    .service-body h5 {
        font-size: 16px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons .btn-premium {
        width: 100%;
    }

    .footer {
        padding-top: 55px;
    }
}


/* =========================
   REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}