@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 ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    font-family: "Poppins", sans-serif;
    color: #222;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    padding-top: 74px;
}

/* =========================
   SECTION EYEBROW (GLOBAL)
   ========================= */

.section-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1f4fd8;
    font-weight: 600;
}

/* =========================
   HEADING UNDERLINE (GLOBAL)
   ========================= */

.heading-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    color: #1f2a4b;
}

.heading-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px; /* visible by default */
    height: 3px;
    background: linear-gradient(90deg, #1f4fd8, rgba(31,79,216,0.35));
    border-radius: 3px;
    transition: width 0.35s ease;
}

/* hover expansion */
.heading-underline:hover::after {
    width: 60px;
}



.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: 36px;
    list-style: none;
}

.main-nav a {
    position: relative;
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: none;
    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 a {
    display: inline-flex;   /* ← THIS IS THE KEY */
    align-items: center;
    justify-content: center;
    will-change: transform;
    background: #1f4fd8;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid #1f4fd8;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 16px rgba(31,79,216,0.25);
    transition: 
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}
 
.nav-cta a:hover {
    background-color: #ffffff;
    color: #1f4fd8;
    box-shadow: 0 10px 24px rgba(31,79,216,0.35);
    transform: translateY(-2px) scale(1.06);
}

/* 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: min(92vh, 900px);
    margin-top: 0;
    padding: 0;
    overflow: hidden;
}

.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);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-bg-video.is-playing {
    opacity: 1;
}


/* =========================
            HERO TEXT
   ========================= */

.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;
}

/* Headline */
.hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;

    /* Netflix-style depth */
    text-shadow:
        0 2px 6px rgba(0,0,0,0.45),
        0 12px 40px rgba(0,0,0,0.75);
}

/* Paragraph */
.hero-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.96);

    text-shadow:
        0 2px 6px rgba(0,0,0,0.45),
        0 10px 32px rgba(0,0,0,0.7);
}

/* Badge*/
.hero-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: Bold;
    margin-bottom: 15px;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

/* =========================
   HERO BUTTONS — PREMIUM ENTERPRISE
   ========================= */

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Base button */
.btn {
    position: relative;
    padding: 16px 38px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
    z-index: 1;
}

/* =========================
   PRIMARY CTA — CONFIDENT
   ========================= */

.btn-primary {
    color: #fff;
    background: linear-gradient(
        120deg,
        #1f4fd8,
        #3b6cff,
        #1f4fd8
    );
    background-size: 220% 100%;
    animation: primaryShift 6s ease-in-out infinite;
    box-shadow:
        0 14px 34px rgba(31,79,216,0.45),
        inset 0 1px 0 rgba(255,255,255,0.25);
}

@keyframes primaryShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 22px 55px rgba(31,79,216,0.55),
        inset 0 1px 0 rgba(255,255,255,0.35);
}

/* =========================
   SECONDARY CTA — PREMIUM SOFT
   ========================= */

.btn-outline {
    color: #1f2a4b;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.65);
    box-shadow:
        0 10px 28px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

/* soft animated sheen */
.btn-outline::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.55),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-outline:hover::after {
    left: 120%;
}

.btn-outline:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow:
        0 18px 45px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,1);
}

/* Focus accessibility */
.btn:focus-visible {
    outline: 2px solid #4f7cff;
    outline-offset: 4px;
}




/* =========================
   HOMEPAGE SERVICES SECTION
   ========================= */
.homepage-services {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.homepage-services .section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.homepage-services .section-header h2 {
    font-size: clamp(2.4rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.homepage-services .section-header h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1f4fd8, #4f7cff);
    border-radius: 3px;
    margin: 12px auto 0;
    transition: width 0.35s ease;
}

.homepage-services .section-header h2:hover::after {
    width: 90px;
}

.homepage-services .section-header p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.65;
    margin: 0 auto;
}

/* Grid */
.homepage-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto; /* center the grid */
}

/* Service Card */
.homepage-services-grid .service-card {
    position: relative;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 80px 40px 50px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.homepage-services-grid .service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #1f4fd8, #4f7cff);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.homepage-services-grid .service-card:hover::before {
    opacity: 1;
}

.homepage-services-grid .service-card img {
    max-width: 70px;
    margin-bottom: 30px;
}

.homepage-services-grid .service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2a4b;
    margin-bottom: 14px;
}

.homepage-services-grid .service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Hover Effect */
.homepage-services-grid .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.homepage-services-grid .service-card:hover .service-icon {
    transform: translateY(-6px) scale(1.08);
}

/* Icon Wrapper */
.homepage-services-grid .service-icon {
    width: 125px;
    height: 125px;
    margin: 0 auto 32px;
    background: #f1f4ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
}

.homepage-services-grid .service-icon img {
    max-width: 80px;
}


/* =========================
   WHY CHOOSE US (INDEX PAGE)
   ========================= */

.index-why-choose {
    padding: 110px 0;
    background: #ffffff;
}

.index-why-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.index-why-content h2 {
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 18px;
}

.index-why-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.6;
}

/* List */
.index-why-list {
    list-style: none;
    margin-bottom: 45px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.index-why-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.index-why-dot {
    width: 10px;
    height: 10px;
    margin-top: 8px;
    background: #1f4fd8;
    border-radius: 50%;
    flex-shrink: 0;
}

.index-why-list strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.index-why-list span {
    color: #666;
    font-size: 0.98rem;
    line-height: 1.55;
}

/* Image */
.index-why-image {
    padding: 6px;
    border-radius: 18px;
    background: #f1f4ff;
}

.index-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;
    text-align: center;
}

.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: 100px;
    height: 100px;
    margin: 0 auto 18px;
    background: #f1f4ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.industry-card img {
    max-width: 74px;
    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;
}

/* =========================
   CTA – CORPORATE (HOMEPAGE ONLY)
   ========================= */

.cta-section.cta-corporate {
    position: relative;
    padding: 110px 0;
    text-align: center;
    color: #ffffff;
    background:
        linear-gradient(135deg, #0b1f4d 0%, #122f7a 60%, #163aa5 100%);
    overflow: hidden;
}

/* Subtle light accents */
.cta-section.cta-corporate::before,
.cta-section.cta-corporate::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section.cta-corporate::before {
    top: -220px;
    left: -220px;
}

.cta-section.cta-corporate::after {
    bottom: -220px;
    right: -220px;
}

/* Content */
.cta-section.cta-corporate .cta-content {
    position: relative;
    max-width: 720px;
    margin: auto;
    padding: 0 15px;
}

/* Eyebrow */
.cta-section.cta-corporate .cta-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 18px;
}

/* Heading */
.cta-section.cta-corporate h2 {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Text */
.cta-section.cta-corporate p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 42px;
    color: rgba(255,255,255,0.9);
}

/* Button */
.cta-section.cta-corporate .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 44px;
    background: #ffffff;
    color: #163aa5;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.cta-section.cta-corporate .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.28);
}


/* =========================
   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 16px;
    background: linear-gradient(180deg, #f9fafc 0%, #ffffff 100%);
}

/* Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: flex-start;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: #ffffff;
    padding: 64px;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-subtext {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 40px;
}

/* Floating input groups */
.form-group {
    position: relative;
    margin-bottom: 26px;
}

/* Inputs */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 18px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    font-size: 15px;
    background: transparent;
    transition: all 0.2s ease;
}

/* Label */
.form-group label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 0 6px;
    color: #9ca3af;
    font-size: 13px;
    pointer-events: none;
    transition: 0.25s ease;
}

.form-group textarea + label {
    top: 22px;
    transform: none;
}

/* Focus */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #0b5ed7;
    box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.15);
    outline: none;
}

/* Floating logic */
.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: -9px;
    font-size: 11px;
    color: #0b5ed7;
}

/* ===== SUBMIT BUTTON ===== */
.contact-form .btn-primary {
    margin-top: 10px;
    width: 100%;
    height: 56px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Loader */
.btn-loader {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    display: none;
    animation: spin 0.8s linear infinite;
}

/* Loading */
#contactForm.loading .btn-text {
    display: none;
}

#contactForm.loading .btn-loader {
    display: block;
}

/* ===== SUCCESS MESSAGE ===== */
.form-success {
    display: none;
    margin-top: 40px;
    text-align: center;
}

.form-success.show {
    display: block;
    animation: fadeUp 0.5s ease;
}

.form-success p {
    margin-top: 12px;
    color: #15803d;
    font-weight: 500;
}

.success-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    font-size: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    animation: pop 0.4s ease;
}

/* Hide button after success */
#contactForm.submitted .btn-primary {
    display: none;
}

/* Animations */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pop {
    0% { transform: scale(0.7); }
    100% { transform: scale(1); }
}


/* ===== CONTACT INFO ===== */
.contact-info {
    padding: 20px 10px;
}

.contact-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 28px;
}

.info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

.contact-box {
    margin-top: 36px;
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.contact-box strong {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}


/* MAP */
.map-section {
    margin-top: 80px;
}

.map-section iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 0;
}

/* ===== GET A QUOTE (PREMIUM) ===== */
.quote-section {
    padding: 100px 16px;
    background: linear-gradient(180deg, #f9fafc 0%, #ffffff 100%);
}

.quote-box {
    max-width: 920px;
    margin: 0 auto;
    background: #ffffff;
    padding: 64px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Headings */
.quote-box h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.quote-intro {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 48px;
}

/* Layout */
.quote-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

/* Inputs */
.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    font-size: 15px;
    background: #ffffff;
    transition: all 0.2s ease;
}

/* Focus state (premium feel) */
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: #0b5ed7;
    box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.15);
    outline: none;
}

/* Textarea spacing */
.quote-form textarea {
    margin-top: 8px;
    resize: vertical;
}

/* Submit button */
.quote-form .btn-primary {
    margin-top: 30px;
    width: 100%;
    height: 56px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== SUBMIT STATES ===== */

/* Spinner */
.btn-loader {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

/* Loading */
.quote-form.loading .btn-text {
    display: none;
}

.quote-form.loading .btn-loader {
    display: block;
}

/* Success state */
.form-success {
    display: none;
    text-align: center;
    margin-top: 40px;
}

.form-success.show {
    display: block;
    animation: fadeUp 0.5s ease;
}

.success-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border-radius: 50%;
    line-height: 68px;
    font-size: 34px;
    margin: auto;
    animation: pop 0.4s ease;
}

/* Hide button after submit */
.quote-form.submitted .btn-primary {
    display: none;
}

/* Animations */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pop {
    0% { transform: scale(0.7); }
    100% { transform: scale(1); }
}


/* =========================
   ABOUT US PAGE – WORLD CLASS
   ========================= */

/* ---------- BASE SECTION ---------- */

.about-section {
    padding: 110px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.about-content p {
    color: #555;
    line-height: 1.75;
    margin-bottom: 18px;
}

/* ---------- IMAGE ---------- */

.about-image {
    position: relative;
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(120deg, rgba(31,79,216,0.12), transparent 60%);
    pointer-events: none;
}

.about-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.14);
}

/* =========================
   VALUES
   ========================= */

.about-values {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(180deg, #f8f9fb, #ffffff);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.value-box {
    position: relative;
    background: #ffffff;
    padding: 40px 35px 42px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}


.value-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 65px rgba(0,0,0,0.12);
}

.value-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(31,79,216,0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-box:hover::before {
    opacity: 1;
}

/* Icon container */
.value-icon {
    width: 74px;
    height: 74px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 5px 8px rgba(31,79,216,0.35);
}

.value-icon img {
    width: 56px;
    height: 56px;
}

/* Heading polish */
.value-box h3 {
    margin-bottom: 14px;
    font-size: 1.25rem;
}

/* Subtle left accent line */
.value-box::after {
    content: "";
    position: absolute;
    left: 0;
    top: 28px;
    width: 4px;
    height: 70px;
    background: #1f4fd8;
    border-radius: 6px;
    opacity: 0.85;
}

/* =========================
   COUNTERS
   ========================= */

.about-counters {
    position: relative;
    padding: 110px 0;
    color: #fff;
    background:
        radial-gradient(1200px 500px at 10% -10%, rgba(255,255,255,0.08), transparent 60%),
        radial-gradient(1000px 400px at 90% 110%, rgba(255,255,255,0.06), transparent 60%),
        linear-gradient(135deg, #0f2f91, #163aa5, #1f4fd8);
    overflow: hidden;
}

.about-counters::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.counter-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    z-index: 1;
}

.counter-box {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    transition: transform 0.35s ease;
}

.counter-box:hover {
    transform: translateY(-6px);
}

.counter-number {
    font-size: 3.4rem;        /* BIG like before */
    font-weight: 800;         /* STRONG & BOLD */
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.counter-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}


/* =========================
   WHY CHOOSE US
   ========================= */

.about-why {
    padding: 100px 0;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.why-item {
    position: relative;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: transform 0.35s ease;
}

.why-item:hover {
    transform: translateY(-6px);
}

.why-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(31,79,216,0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-item:hover::before {
    opacity: 1;
}

/* =========================
   STORY
   ========================= */

.about-story {
    position: relative;
    padding: 90px 0;
    background: #f8f9fb;
}


/* =========================
   ABOUT CTA – CORPORATE
   ========================= */

.about-cta.about-cta-corporate {
    position: relative;
    padding: 110px 0;
    text-align: center;
    color: #ffffff;
    background:
        linear-gradient(135deg, #0b1f4d 0%, #122f7a 60%, #163aa5 100%);
    overflow: hidden;
}

/* Light accents */
.about-cta.about-cta-corporate::before,
.about-cta.about-cta-corporate::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-cta.about-cta-corporate::before {
    top: -220px;
    left: -220px;
}

.about-cta.about-cta-corporate::after {
    bottom: -220px;
    right: -220px;
}

/* Content box */
.about-cta.about-cta-corporate .cta-box {
    position: relative;
    max-width: 720px;
    margin: auto;
    padding: 0 15px;
}

/* Eyebrow */
.about-cta.about-cta-corporate .cta-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 18px;
}

/* Heading */
.about-cta.about-cta-corporate h2 {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Text */
.about-cta.about-cta-corporate p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 42px;
    color: rgba(255,255,255,0.9);
}

/* Button */
.about-cta.about-cta-corporate .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 44px;
    background: #ffffff;
    color: #163aa5;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.about-cta.about-cta-corporate .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.28);
}



/* =========================
   STORY WITH IMAGES
   ========================= */

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.story-content p {
    color: #555;
    line-height: 1.75;
    margin-bottom: 18px;
}

.story-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.story-images img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

.story-images img:nth-child(1) {
    grid-column: span 2;
}

.story-images img:hover {
    transform: scale(1.03);
}




/* =========================
   SERVICES PAGE – ENTERPRISE
   ========================= */

.services-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.services-section .section-header h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 18px;
    font-weight: 700;
}

.services-section .section-header p {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin-bottom: 50px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto; 
}

/* Card */
.service-card {
    background: #ffffff;
    padding: 38px 32px 40px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(0,0,0,0.12);
}

.service-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, #e6ecff, #f4f6ff);
    border-radius: 18px;
    /*display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;*/
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-icon img {
    max-width: 50px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #1f2a4b;
}

.service-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #555;
}

/* SERVICE DETAILS */
.service-detail-section {
    padding: 90px 0;
}

.service-detail {
    max-width: 860px;
    margin: 0 auto 50px;
}

.service-detail h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-detail p {
    font-size: 15px;
    line-height: 1.65;
}


/* BENEFITS */
.service-benefits {
    padding: 100px 0;
    background: linear-gradient(180deg, #f9fafc, #ffffff);
    text-align: center;
}

.service-benefits h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.benefit-box {
    padding: 30px 26px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
}


.benefit-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.12);
}

.benefit-box h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.benefit-box p {
    font-size: 14.5px;
    line-height: 1.6;
}

/* CTA – Premium Corporate */
.services-cta {
    position: relative;
    padding: 110px 0;
    color: #ffffff;
    text-align: center;
    background:
        linear-gradient(135deg, #0b1f4d 0%, #122f7a 60%, #163aa5 100%);
    overflow: hidden;
}

/* Subtle light accents (reduced intensity) */
.services-cta::before,
.services-cta::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-cta::before {
    top: -220px;
    left: -220px;
}

.services-cta::after {
    bottom: -220px;
    right: -220px;
}

/* CTA box */
.services-cta .cta-box {
    max-width: 720px;
    margin: auto;
}

/* Eyebrow text */
.cta-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 18px;
}

/* Heading */
.services-cta h2 {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Text */
.services-cta p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 42px;
    color: rgba(255,255,255,0.9);
}

/* Button – Executive Style */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 44px;
    background: #ffffff;
    color: #163aa5;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.28);
}


/* ============================
   OverlayScrollbars – PRO SAFE THEME (RECTIFIED)
   ============================ */

.os-scrollbar {
    --os-size: 10px;
    --os-padding-perpendicular: 2px;
    --os-padding-axis: 2px;
    --os-track-border-radius: 12px;
    --os-handle-border-radius: 12px;
}

/* Track */
.os-scrollbar > .os-scrollbar-track {
    background: rgba(31, 79, 216, 0.08);
    backdrop-filter: blur(6px);
}

/* Handle (BASE – STABLE) */
.os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #1f4fd8, #163aa5);
    box-shadow: 0 4px 12px rgba(31, 79, 216, 0.35);
    transition:
        filter 0.25s ease,
        box-shadow 0.25s ease;
}

/* Hover (NO transform = NO BUGS) */
.os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle:hover {
    filter: brightness(1.15);
    box-shadow: 0 6px 18px rgba(31, 79, 216, 0.55);
}

/* Active drag */
.os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle:active {
    background: #163aa5;
}

/* ============================
   INTERNAL LIGHT SWEEP (PRO)
   ============================ */

.os-scrollbar-handle::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(31,79,216,0.25) 45%,
        rgba(31,79,216,0.55) 50%,
        rgba(31,79,216,0.25) 55%,
        transparent 100%
    );
    background-size: 100% 200%;
    background-position: 0 -100%;
    opacity: 0;
    pointer-events: none;
}

/* Smooth energy flow */
@keyframes scrollbarSweep {
    from {
        background-position: 0 -100%;
    }
    to {
        background-position: 0 100%;
    }
}

/* Active scrolling state */
.os-scrollbar.scrolling .os-scrollbar-handle::after {
    opacity: 1;
    animation: scrollbarSweep 0.9s linear infinite;
}

/* Hide corner */
.os-scrollbar-corner {
    display: none;
}