@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* ===== GLOBAL ===== */
html, body {
    font-family: "Poppins", sans-serif;
    color: #222;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #eaeaea;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo img {
    max-height: 46px;
}

/* ===== NAV ===== */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    position: relative;
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    padding: 6px 0;
    letter-spacing: 0.2px;
    transition: color 0.25s ease;
}


.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #1f4fd8;
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
    opacity: 1;
}

.main-nav a:hover {
    color: #1f4fd8;
}


.main-nav a.active {
    color: #1f4fd8;
    font-weight: 600;
}

/* NAV CTA — Logistics / Enterprise Style */
.nav-cta a {
    background: #1f4fd8;
    color: #ffffff;
    padding: 9px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    border: 1px solid #1f4fd8;
    transition: background-color 0.15s ease;
}

/* Hover: micro-tone only */
.nav-cta a:hover {
    background-color: #204fd0; /* almost identical */
    color: #ffffff;            /* FORCE white */
}

/* Kill underline effect */
.nav-cta a::after {
    display: none;
}



/* ===== MOBILE TOGGLE ===== */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: #1f2937;
    transition: all 0.3s ease;
}

/* Open state */
.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


@media (max-width: 768px) {

    .nav-toggle {
        display: flex;
    }

    .main-nav ul {
        position: absolute;
        right: 16px;
        top: 72px;
        flex-direction: column;
        background: #ffffff;
        padding: 24px;
        border-radius: 14px;
        border: 1px solid #eee;
        box-shadow: 0 20px 45px rgba(0,0,0,0.12);
        min-width: 240px;

        opacity: 0;
        transform: translateY(12px);
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .main-nav ul.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-nav ul li {
        width: 100%;
    }

    .main-nav a {
        width: 100%;
        padding: 12px 0;
        font-size: 1.05rem;
    }

    .nav-cta a {
        width: 100%;
        text-align: center;
        margin-top: 14px;
    }
}


/* =========================
   HERO VIDEO SECTION
   ========================= */

.hero-video {
    position: relative;
    width: 100vw;
    height: 80vh; /* FIXED */
    margin-top: 95px;
    padding: 0;
    overflow: hidden;
}

/* IMPORTANT: allow video to exceed parent */
.hero-video * {
    box-sizing: border-box;
}

/* Video */
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(1.15) contrast(1.08) saturate(1.05);
}

/* Overlay (none) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    max-width: 760px;
    padding: 0 24px;
}

/* Typography */
.hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

.hero-content h1 {
    text-shadow: 0 12px 45px rgba(0,0,0,0.55);
}

/* Badge*/
.hero-badge {
    display: inline-flex;  
    align-items: center;
    width: fit-content;
    max-width: max-content;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    white-space: nowrap;
}


/* Buttons */
.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #1f4fd8;
    color: #fff;
    box-shadow: 0 10px 25px rgba(31,79,216,0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #163db0;
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.85);
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}


/* =========================
   SERVICES SECTION
   ========================= */

.services-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}


/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Card */
.service-card {
    position: relative;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    padding: 70px 35px 45px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        #1f4fd8,
        #4f7cff
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}


.service-card img {
    max-width: 70px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.65;
}


.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-icon {
    transform: translateY(-4px) scale(1.05);
}



/* Icon wrapper */
.service-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px; /* CENTERED */

    background: #f1f4ff; /* soft brand-tinted background */
    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;
}



.service-icon img {
    max-width: 60px;
}


/* =========================
   WHY CHOOSE US
   ========================= */

.why-choose-section {
    padding: 110px 0;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.why-content h2 {
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 18px;
}

.why-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.6;
}


/* List */
.why-list {
    list-style: none;
    margin-bottom: 45px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.why-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.why-dot {
    width: 10px;
    height: 10px;
    margin-top: 8px;
    background: #1f4fd8;
    border-radius: 50%;
    flex-shrink: 0;
}


.why-list strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.why-list span {
    color: #666;
    font-size: 0.98rem;
    line-height: 1.55;
}

.why-image {
    padding: 6px;
    border-radius: 18px;
    background: #f1f4ff;
}


/* Image */
.why-image img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}


/* =========================
   INDUSTRIES WE SERVE
   ========================= */

.industries-section {
    padding: 110px 0;
    background: #fafbff;
}

.section-header {
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    font-weight: 700;
}

.section-header p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
}

.industry-card {
    background: #ffffff;
    padding: 38px 22px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.industry-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: #f1f4ff;
    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.industry-card img {
    max-width: 44px;
    margin-bottom: 18px;
}

.industry-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
}


.industry-card:hover {
    transform: translateY(-6px);
    border-color: #dfe6ff;
}


/* =========================
   SAFETY & COMPLIANCE
   ========================= */

.safety-section {
    padding: 120px 0;
    background: #ffffff;
}

.safety-flex {
    display: flex;
    align-items: center;
    gap: 70px;
}

.safety-content {
    flex: 1;
}

.safety-content h2 {
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 18px;
}

.safety-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 35px;
    max-width: 540px;
    line-height: 1.6;
}

.safety-list {
    list-style: none;
    padding: 0;
    margin-bottom: 45px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.safety-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 1rem;
    color: #444;
}

.safety-dot {
    width: 10px;
    height: 10px;
    margin-top: 7px;
    background: #1f4fd8; /* same blue as services */
    border-radius: 50%;
    flex-shrink: 0;
}



.safety-image {
    padding: 6px;
    background: #f1f4ff;
    border-radius: 18px;
}

.safety-image img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.btn-outline {
    display: inline-block;
    padding: 14px 34px;
    border: 2px solid #1f4fd8;
    color: #1f4fd8;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #1f4fd8;
    color: #fff;
}

/* =========================
   CALL TO ACTION – MODERN
   ========================= */

.cta-section {
    position: relative;
    padding: 120px 20px;
    background: url('../images/cta-bg.jpg') center / cover no-repeat;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

/* Modern gradient overlay instead of flat black */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.55) 50%,
        rgba(0,0,0,0.75) 100%
    );
}

/* Content card feel (subtle) */
.cta-content {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 10px;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* Button enhancement */
.btn-primary.btn-lg {
    padding: 16px 42px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    background: #c62828;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary.btn-lg:hover {
    background: #a91f1f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(198,40,40,0.35);
}

/* =========================
   FOOTER (MODERN)
   ========================= */

.site-footer {
    background: #0f172a;
    color: #b6bcc8;
    padding-top: 90px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* Footer Columns */
.footer-col h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 22px;
    font-weight: 600;
    position: relative;
}

.footer-col h4::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background: #c62828;
    margin-top: 10px;
}

.footer-col p {
    line-height: 1.7;
    color: #cbd5e1;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a,
.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover,
.footer-col a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Logo */
.footer-logo {
    max-width: 170px;
    margin-bottom: 22px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 70px;
    padding: 22px 0;
    background: rgba(0,0,0,0.35);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* =========================
   BACK TO TOP BUTTON
   ========================= */

#backToTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: #c62828;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 999;
}

#backToTop:hover {
    background: #a91f1f;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(198,40,40,0.35);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}


/* ===== INNER HERO WITH IMAGE ===== */
.inner-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.35)
    );
}

.inner-hero-content {
    position: relative;
    max-width: 720px;
    padding-top: 80px; /* header offset */
}

.inner-hero h1 {
    font-size: 3rem;
    margin-bottom: 12px;
}

.inner-hero p {
    font-size: 1.1rem;
    color: #eee;
}



/* ===== CONTACT PAGE ===== */

.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fb, #ffffff);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}


/* CONTACT FORM */
.contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.contact-form h2 {
    margin-bottom: 5px;
}

.form-subtext {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 22px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 1rem;
    background: transparent;
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 6px;
    color: #888;
    font-size: 0.9rem;
    pointer-events: none;
    transition: 0.25s ease;
}

.form-group textarea + label {
    top: 18px;
    transform: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1f4fd8;
    outline: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 0.75rem;
    color: #1f4fd8;
}

.btn-primary {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #1f4fd8;
    background-image: linear-gradient(135deg, #1f4fd8, #163aa5);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 1s ease-in-out, background 0.25s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* ===== BUTTON LOADER ===== */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    display: none;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== SUCCESS MESSAGE ===== */
.form-success {
    display: none;
    margin-top: 30px;
    text-align: center;
    animation: fadeUp 0.5s ease forwards;
}

.form-success p {
    margin-top: 10px;
    color: #2e7d32;
    font-weight: 500;
}

.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: #28c76f;
    color: #fff;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pop 0.4s ease forwards;
}

@keyframes pop {
    0% { transform: scale(0.4); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-primary:hover {
    background-image: linear-gradient(135deg, #163aa5, #1f4fd8);
    box-shadow: 0 10px 25px rgba(31,79,216,0.35);
}

.btn-primary:focus,
.btn-primary:active {
    outline: none;
    box-shadow: 0 0 0 3px rgba(31,79,216,0.25);
}


/* CONTACT INFO */
.contact-info {
    padding: 30px 10px;
}

.contact-info h3 {
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
}

.contact-box {
    margin-top: 30px;
    padding: 22px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* MAP */
.map-section {
    margin-top: 80px;
}

.map-section iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 0;
}


/* ===== GET A QUOTE ===== */
.quote-section {
    padding: 100px 0;
    background: #ffffff;
}

.quote-box {
    max-width: 900px;
    margin: 0 auto;
    background: #f8f9fb;
    padding: 60px;
    border-radius: 16px;
}

.quote-box h2 {
    text-align: center;
    margin-bottom: 10px;
}

.quote-intro {
    text-align: center;
    color: #555;
    margin-bottom: 35px;
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
}