/* =========================================================
   EDMUSA GROUP
   Main Website Stylesheet
   ========================================================= */


/* =========================================================
   1. ROOT VARIABLES
   ========================================================= */
:root {
    
    --navy: #24331f;
    --navy-light: #354a2d;
    
    --blue: #7CB342;
    --blue-light: #9CCC65;
    
    --orange: #7CB342;
    --orange-light: #9CCC65;
    
    --green: #4F7F24;
    --green-light: #7CB342;
    
    --white: #ffffff;
    --light: #f7faf4;
    --light-blue: #eef6e7;
    
    --grey: #667066;
    --dark: #172117;
    
    --border: #dce7d7;
    
    --shadow-sm: 0 5px 20px rgba(50, 80, 35, 0.07);
    --shadow-md: 0 15px 40px rgba(50, 80, 35, 0.12);
    --shadow-lg: 0 25px 70px rgba(50, 80, 35, 0.18);
    
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 50px;
    
    --transition: all 0.35s ease;
    
}

/* =========================================================
   2. RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}


/* =========================================================
   3. CONTAINER
   ========================================================= */

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   4. PRELOADER
   ========================================================= */

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}


.loader-container {
    text-align: center;
}

.loader-container img {
    width: 190px;
    height: auto;
    margin: 0 auto 30px;

    animation: loaderLogo 1.2s ease infinite alternate;
}

.loader {
    width: 55px;
    height: 55px;

    margin: 0 auto;

    border: 4px solid #e8eef4;
    border-top-color: var(--orange);
    border-right-color: var(--blue);

    border-radius: 50%;

    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loaderLogo {
    from {
        transform: scale(0.96);
        opacity: 0.75;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* =========================================================
   5. HEADER
   ========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-bottom: 1px solid transparent;

    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 5px 30px rgba(7, 26, 51, 0.09);
    border-bottom-color: var(--border);
}

.nav-container {
    height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   6. LOGO
   ========================================================= */

.logo {
    display: inline-flex;
    align-items: center;

    position: relative;

    animation: logoReveal 0.8s ease-out forwards;
}

.logo img {
    width: 155px;
    height: auto;

    display: block;

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.logo:hover img {
    transform: scale(1.06);

    filter:
        drop-shadow(0 7px 15px rgba(7, 26, 51, 0.18));
}

@keyframes logoReveal {

    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   7. NAVIGATION
   ========================================================= */

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;

    font-size: 14px;
    font-weight: 600;

    color: var(--dark);

    transition: var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -9px;

    width: 0;
    height: 3px;

    background: var(--orange);

    border-radius: 50px;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 22px;
}


/* =========================================================
   8. NAV BUTTON
   ========================================================= */

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 12px 21px;

    color: var(--white);
    background: var(--navy);

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 7px 20px rgba(7, 26, 51, 0.18);

    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--orange);

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(245, 130, 32, 0.25);
}

.nav-btn i {
    transition: transform 0.3s ease;
}

.nav-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   9. MOBILE MENU
   ========================================================= */

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    border: none;
    border-radius: 50%;

    background: var(--navy);

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;
}

.menu-toggle span {
    width: 21px;
    height: 2px;

    background: var(--white);

    border-radius: 10px;

    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   10. HERO
   ========================================================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(11, 94, 168, 0.12),
            transparent 32%
        ),

        linear-gradient(
            135deg,
            #f7fbff 0%,
            #ffffff 60%,
            #eef7fb 100%
        );

    padding-top: 88px;
}

.hero-container {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(380px, 0.95fr);

    align-items: center;

    gap: 70px;

    min-height: calc(100vh - 88px);

    padding-top: 60px;
    padding-bottom: 80px;
}


/* =========================================================
   11. HERO DECORATIONS
   ========================================================= */

.hero-shape {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(1px);

    animation: floatingShape 7s ease-in-out infinite;
}

.shape-one {
    width: 300px;
    height: 300px;

    top: 10%;
    right: -150px;

    background:
        rgba(11, 94, 168, 0.07);
}

.shape-two {
    width: 180px;
    height: 180px;

    bottom: 8%;
    left: -90px;

    background:
        rgba(245, 130, 32, 0.08);

    animation-delay: 1s;
}

.shape-three {
    width: 100px;
    height: 100px;

    top: 35%;
    left: 42%;

    border: 15px solid rgba(35, 139, 87, 0.05);

    animation-delay: 2s;
}

@keyframes floatingShape {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(8deg);
    }

}


/* =========================================================
   12. HERO CONTENT
   ========================================================= */

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 16px;

    margin-bottom: 25px;

    color: var(--blue);

    background: rgba(11, 94, 168, 0.08);

    border: 1px solid rgba(11, 94, 168, 0.12);

    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.pulse-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 0 0 rgba(35, 139, 87, 0.5);

    animation: pulse 2s infinite;
}

@keyframes pulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(35, 139, 87, 0.5);
    }

    70% {
        box-shadow:
            0 0 0 9px rgba(35, 139, 87, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(35, 139, 87, 0);
    }

}


.hero h1 {
    font-family: "Poppins", sans-serif;

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.08;

    letter-spacing: -2px;

    color: var(--navy);

    margin-bottom: 25px;
}

.hero h1 span {
    display: block;

    color: var(--blue);
}

.hero-content > p {
    max-width: 650px;

    color: var(--grey);

    font-size: 17px;

    margin-bottom: 35px;
}


/* =========================================================
   13. BUTTONS
   ========================================================= */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 38px;
}

.btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    min-height: 54px;

    padding: 14px 27px;

    border-radius: 50px;

    border: 2px solid transparent;

    font-size: 14px;
    font-weight: 700;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.btn::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 100%;

    background: rgba(255, 255, 255, 0.16);

    transition: width 0.4s ease;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-4px);
}

.btn i {
    position: relative;
    z-index: 2;

    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--orange-light)
        );

    box-shadow:
        0 10px 25px rgba(245, 130, 32, 0.25);
}

.btn-primary:hover {
    box-shadow:
        0 16px 35px rgba(245, 130, 32, 0.35);
}

.btn-outline {
    color: var(--navy);

    background: var(--white);

    border-color: var(--border);

    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    color: var(--blue);

    border-color: var(--blue);

    box-shadow: var(--shadow-md);
}

.btn-light {
    color: var(--navy);

    background: var(--white);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
    color: var(--white);

    background: var(--orange);
}


/* =========================================================
   14. HERO TRUST
   ========================================================= */

.hero-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 22px;
}

.trust-item {
    display: flex;
    align-items: center;

    gap: 8px;

    font-size: 12px;
    font-weight: 600;

    color: var(--grey);
}

.trust-item i {
    color: var(--green);

    font-size: 14px;
}


/* =========================================================
   15. HERO VISUAL
   ========================================================= */

.hero-visual {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual::before {
    content: "";

    position: absolute;

    width: 390px;
    height: 390px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(11, 94, 168, 0.12),
            rgba(35, 139, 87, 0.07)
        );

    animation: visualPulse 5s ease-in-out infinite;
}

@keyframes visualPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

}


/* =========================================================
   16. HERO CARD
   ========================================================= */

.hero-card {
    position: relative;
    z-index: 2;

    width: min(350px, 75%);

    padding: 45px 38px;

    text-align: center;

    background:
        rgba(255, 255, 255, 0.92);

    border:
        1px solid rgba(255, 255, 255, 0.8);

    border-radius: 35px;

    box-shadow: var(--shadow-lg);

    backdrop-filter: blur(15px);

    animation:
        heroCardFloat 5s ease-in-out infinite;
}

@keyframes heroCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-13px);
    }

}

.hero-card-icon {
    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;

    border-radius: 50%;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-light)
        );

    box-shadow:
        0 15px 30px rgba(11, 94, 168, 0.25);

    font-size: 36px;
}

.hero-card h3 {
    font-family: "Poppins", sans-serif;

    font-size: 28px;

    color: var(--navy);

    margin-bottom: 10px;
}

.hero-card p {
    color: var(--grey);

    font-size: 14px;
}


/* =========================================================
   17. FLOATING CARDS
   ========================================================= */

.floating-card {
    position: absolute;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 15px 20px;

    min-width: 210px;

    background: var(--white);

    border-radius: 18px;

    box-shadow: var(--shadow-md);

    animation: floatingCard 4s ease-in-out infinite;
}

.floating-card i {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: var(--white);

    background: var(--green);

    flex-shrink: 0;
}

.floating-card strong {
    display: block;

    color: var(--navy);

    font-size: 13px;
}

.floating-card span {
    display: block;

    color: var(--grey);

    font-size: 10px;
}

.card-top {
    top: 12%;
    right: 0;
}

.card-bottom {
    bottom: 12%;
    left: 0;

    animation-delay: 1.5s;
}

.card-bottom i {
    background: var(--orange);
}

@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

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

}


/* =========================================================
   18. SCROLL INDICATOR
   ========================================================= */

.scroll-down {
    position: absolute;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 5px;

    color: var(--grey);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.5px;

    animation: scrollBounce 2s infinite;
}

.scroll-down i {
    color: var(--orange);
}

@keyframes scrollBounce {

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

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

}


/* =========================================================
   19. GENERAL SECTIONS
   ========================================================= */

.section {
    position: relative;

    padding: 110px 0;
}

.about-section {
    background: var(--white);
}

.services-section {
    background: var(--light);
}

.objectives-section {
    background: var(--white);
}

.performance-section {
    background: var(--light);
}

.contact-section {
    background: var(--white);
}


/* =========================================================
   20. SECTION HEADINGS
   ========================================================= */

.section-heading {
    max-width: 760px;

    margin-bottom: 60px;
}

.section-heading.centered {
    text-align: center;

    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.section-label.light {
    color: #ffb06d;
}

.section-heading h2 {
    font-family: "Poppins", sans-serif;

    font-size: clamp(32px, 4vw, 50px);

    line-height: 1.15;

    letter-spacing: -1px;

    color: var(--navy);

    margin-bottom: 18px;
}

.section-heading h2 span {
    color: var(--blue);
}

.section-heading p {
    color: var(--grey);

    max-width: 680px;

    margin: 0 auto;

    font-size: 16px;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* =========================================================
   21. ABOUT
   ========================================================= */

.about-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 70px;

    align-items: center;
}

.about-content h3 {
    font-family: "Poppins", sans-serif;

    font-size: 30px;

    color: var(--navy);

    margin-bottom: 20px;
}

.about-content p {
    color: var(--grey);

    margin-bottom: 18px;
}

.text-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 12px;

    color: var(--blue);

    font-size: 14px;
    font-weight: 700;

    transition: var(--transition);
}

.text-link:hover {
    color: var(--orange);
}

.text-link i {
    transition: transform 0.3s ease;
}

.text-link:hover i {
    transform: translateX(5px);
}

.logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}
/* =========================================================
   22. ABOUT CARDS
   ========================================================= */

.about-cards {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.info-card {
    padding: 28px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 22px;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

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

    box-shadow: var(--shadow-md);

    border-color: rgba(11, 94, 168, 0.2);
}

.info-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 15px;

    color: var(--white);

    background: var(--blue);

    font-size: 20px;
}

.info-icon.green {
    background: var(--green);
}

.info-icon.blue {
    background: var(--navy);
}

.info-icon.orange {
    background: var(--orange);
}

.info-card h4 {
    font-family: "Poppins", sans-serif;

    color: var(--navy);

    font-size: 17px;

    margin-bottom: 8px;
}

.info-card p {
    color: var(--grey);

    font-size: 13px;

    line-height: 1.6;
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    
    opacity: 1;
    
    transform: translate(0, 0);
}

/* =========================================================
   23. SERVICES GRID
   ========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.service-card {
    position: relative;

    padding: 32px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 25px;

    overflow: hidden;

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--orange),
            var(--green)
        );

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);

    box-shadow: var(--shadow-md);

    border-color: rgba(11, 94, 168, 0.18);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: #e5edf4;

    font-family: "Poppins", sans-serif;

    font-size: 25px;
    font-weight: 800;
}

.service-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 18px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-light)
        );

    font-size: 22px;

    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(-5deg) scale(1.08);

    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--orange-light)
        );
}

.service-card h3 {
    font-family: "Poppins", sans-serif;

    font-size: 19px;

    line-height: 1.3;

    color: var(--navy);

    margin-bottom: 12px;
}

.service-card p {
    color: var(--grey);

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--blue);

    font-size: 12px;
    font-weight: 800;

    transition: var(--transition);
}

.service-link:hover {
    color: var(--orange);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   24. OBJECTIVES
   ========================================================= */

.objectives-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.objective-card {
    padding: 35px 28px;

    text-align: center;

    border-radius: 25px;

    background: var(--light);

    border: 1px solid var(--border);

    transition: var(--transition);
}

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

    background: var(--white);

    box-shadow: var(--shadow-md);

    border-color: rgba(11, 94, 168, 0.16);
}

.objective-icon {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    color: var(--blue);

    background:
        rgba(11, 94, 168, 0.1);

    font-size: 25px;

    transition: var(--transition);
}

.objective-card:hover .objective-icon {
    color: var(--white);

    background: var(--blue);

    transform: scale(1.08);
}

.objective-card h3 {
    font-family: "Poppins", sans-serif;

    color: var(--navy);

    font-size: 18px;

    margin-bottom: 9px;
}

.objective-card p {
    color: var(--grey);

    font-size: 13px;
}


/* =========================================================
   25. SAFETY CULTURE
   ========================================================= */

.safety-section {
    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #06172d,
            #0b3157
        );

    color: var(--white);
}

.safety-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -200px;
    top: -200px;

    border-radius: 50%;

    border: 70px solid rgba(255, 255, 255, 0.025);
}

.safety-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -150px;
    bottom: -150px;

    border-radius: 50%;

    border: 50px solid rgba(245, 130, 32, 0.06);
}

.safety-container {
    position: relative;

    z-index: 2;
}

.safety-content {
    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}

.safety-content h2 {
    font-family: "Poppins", sans-serif;

    font-size: clamp(35px, 5vw, 62px);

    line-height: 1.1;

    letter-spacing: -1px;

    margin-bottom: 25px;
}

.safety-content h2 span {
    color: var(--orange);
}

.safety-content > p {
    max-width: 720px;

    margin: 0 auto 45px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 16px;
}

.safety-steps {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}

.safety-step {
    min-width: 125px;

    padding: 18px 15px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid rgba(255, 255, 255, 0.1);

    transition: var(--transition);
}

.safety-step:hover {
    background: var(--orange);

    transform: translateY(-7px);
}

.safety-step strong {
    display: block;

    color: var(--orange);

    font-size: 12px;

    margin-bottom: 4px;
}

.safety-step:hover strong {
    color: var(--white);
}

.safety-step span {
    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.5px;
}


/* =========================================================
   26. PERFORMANCE
   ========================================================= */

.performance-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.performance-item {
    text-align: center;

    padding: 35px 20px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 23px;

    transition: var(--transition);
}

.performance-item:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-md);
}

.performance-item > i {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    margin-bottom: 20px;

    border-radius: 50%;

    color: var(--blue);

    background: rgba(11, 94, 168, 0.08);

    font-size: 23px;

    transition: var(--transition);
}

.performance-item:hover > i {
    color: var(--white);

    background: var(--orange);

    transform: rotate(8deg);
}

.performance-item h3 {
    font-family: "Poppins", sans-serif;

    color: var(--navy);

    font-size: 17px;

    margin-bottom: 8px;
}

.performance-item p {
    color: var(--grey);

    font-size: 12px;
}


/* =========================================================
   27. CTA
   ========================================================= */

.cta-section {
    position: relative;

    overflow: hidden;

    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--navy)
        );
}

.cta-section::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -170px;
    top: -180px;

    border-radius: 50%;

    border: 60px solid rgba(255, 255, 255, 0.04);
}

.cta-section::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -120px;
    bottom: -130px;

    border-radius: 50%;

    background: rgba(245, 130, 32, 0.08);
}

.cta-container {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.cta-content {
    max-width: 700px;
}

.cta-content h2 {
    font-family: "Poppins", sans-serif;

    color: var(--white);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

    margin-bottom: 15px;
}

.cta-content h2 span {
    color: #ffad69;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);

    font-size: 15px;
}


/* =========================================================
   28. CONTACT
   ========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 60px;

    align-items: start;
}

.contact-info h3 {
    font-family: "Poppins", sans-serif;

    color: var(--navy);

    font-size: 30px;

    margin-bottom: 10px;
}

.contact-info > p {
    color: var(--grey);

    margin-bottom: 35px;
}

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 23px;
}

.contact-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    color: var(--blue);

    background:
        rgba(11, 94, 168, 0.08);
}

.contact-item span {
    display: block;

    color: var(--grey);

    font-size: 11px;
}

.contact-item strong,
.contact-item a {
    display: block;

    color: var(--navy);

    font-size: 14px;
    font-weight: 700;
}

.contact-item a:hover {
    color: var(--blue);
}

.contact-item small {
    display: block;

    color: var(--grey);

    font-size: 11px;
}


/* =========================================================
   29. CONTACT FORM
   ========================================================= */

.contact-form-container {
    padding: 35px;

    background: var(--light);

    border: 1px solid var(--border);

    border-radius: 30px;

    box-shadow: var(--shadow-sm);
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--navy);

    font-size: 12px;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    padding: 14px 16px;

    color: var(--dark);

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 14px;

    outline: none;

    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color: var(--blue);

    box-shadow:
        0 0 0 4px rgba(11, 94, 168, 0.08);
}

.form-group textarea {
    resize: vertical;

    min-height: 150px;
}

.form-submit {
    width: 100%;

    border: none;
}

.form-message {
    margin-top: 15px;

    text-align: center;

    font-size: 13px;
}


/* =========================================================
   30. FOOTER
   ========================================================= */

.footer {
    padding: 75px 0 25px;

    color: rgba(255, 255, 255, 0.65);

    background: #041224;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        0.8fr
        1fr
        1fr;

    gap: 45px;

    padding-bottom: 50px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo img {
    width: 155px;

    margin-bottom: 20px;

    filter: brightness(0) invert(1);

    transition: var(--transition);
}

.footer-logo:hover img {
    transform: scale(1.04);
}

.footer-brand p {
    max-width: 310px;

    font-size: 13px;

    line-height: 1.8;
}

.footer-socials {
    display: flex;

    gap: 10px;

    margin-top: 22px;
}

.footer-socials a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--white);

    background:
        rgba(255, 255, 255, 0.07);

    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--white);

    background: var(--orange);

    transform: translateY(-4px);
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h4 {
    color: var(--white);

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    margin-bottom: 10px;
}

.footer-column a,
.footer-column span {
    color: rgba(255, 255, 255, 0.58);

    font-size: 12px;

    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--orange);

    transform: translateX(4px);
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding-top: 25px;

    font-size: 10px;
}

.footer-tagline {
    text-align: right;
}


/* =========================================================
   31. BACK TO TOP
   ========================================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    color: var(--white);

    background: var(--orange);

    box-shadow:
        0 10px 25px rgba(245, 130, 32, 0.3);

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--navy);

    transform: translateY(-5px);
}


/* =========================================================
   32. SCROLL REVEAL ANIMATIONS
   ========================================================= */

.reveal,
.reveal-left,
.reveal-right {

    opacity: 0;

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal {
    transform: translateY(35px);
}

.reveal-left {
    transform: translateX(-45px);
}

.reveal-right {
    transform: translateX(45px);
}


/* =========================================================
   33. STAGGER ANIMATIONS
   ========================================================= */

.service-card:nth-child(2),
.objective-card:nth-child(2),
.performance-item:nth-child(2) {
    transition-delay: 0.08s;
}

.service-card:nth-child(3),
.objective-card:nth-child(3),
.performance-item:nth-child(3) {
    transition-delay: 0.16s;
}

.service-card:nth-child(4),
.objective-card:nth-child(4),
.performance-item:nth-child(4) {
    transition-delay: 0.24s;
}

.service-card:nth-child(5),
.objective-card:nth-child(5) {
    transition-delay: 0.32s;
}

.service-card:nth-child(6),
.objective-card:nth-child(6) {
    transition-delay: 0.40s;
}


/* =========================================================
   34. RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .nav {
        gap: 18px;
    }

    .hero-container {
        gap: 35px;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .objectives-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .performance-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   35. RESPONSIVE — MOBILE NAV
   ========================================================= */

@media (max-width: 850px) {

    .nav {
        position: fixed;

        top: 88px;
        left: 0;

        width: 100%;

        padding: 25px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        background: rgba(255, 255, 255, 0.98);

        backdrop-filter: blur(15px);

        box-shadow:
            0 20px 30px rgba(7, 26, 51, 0.1);

        border-top: 1px solid var(--border);

        transform:
            translateY(-20px);

        opacity: 0;
        visibility: hidden;

        transition:
            opacity 0.35s ease,
            transform 0.35s ease,
            visibility 0.35s ease;
    }

    .nav.active {
        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }

    .nav-link {
        padding: 14px 10px;

        border-radius: 10px;
    }

    .nav-link:hover {
        background: var(--light);
    }

    .nav-link::after {
        display: none;
    }

    .nav-btn {
        justify-content: center;

        margin-top: 8px;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 430px;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-container {
        flex-direction: column;

        text-align: center;
    }

    .cta-content {
        margin: 0 auto;
    }

}


/* =========================================================
   36. RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(92%, 500px);
    }

    .nav-container {
        height: 76px;
    }

    .nav {
        top: 76px;
    }

    .logo img {
        width: 130px;
    }

    .hero {
        padding-top: 76px;
    }

    .hero-container {
        min-height: auto;

        padding-top: 60px;
        padding-bottom: 100px;
    }

    .hero h1 {
        font-size: 40px;

        letter-spacing: -1.2px;
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;

        align-items: center;

        gap: 12px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-visual::before {
        width: 300px;
        height: 300px;
    }

    .hero-card {
        width: 70%;

        padding: 30px 20px;
    }

    .hero-card-icon {
        width: 70px;
        height: 70px;

        font-size: 27px;
    }

    .hero-card h3 {
        font-size: 22px;
    }

    .floating-card {
        min-width: 175px;

        padding: 11px 13px;
    }

    .floating-card i {
        width: 35px;
        height: 35px;

        font-size: 13px;
    }

    .floating-card strong {
        font-size: 11px;
    }

    .floating-card span {
        font-size: 9px;
    }

    .card-top {
        right: -5px;
    }

    .card-bottom {
        left: -5px;
    }

    .scroll-down {
        display: none;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .performance-grid {
        grid-template-columns: 1fr;
    }

    .safety-section {
        padding: 90px 0;
    }

    .safety-content h2 {
        font-size: 38px;
    }

    .safety-step {
        min-width: 100px;
    }

    .cta-section {
        padding: 65px 0;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .contact-form-container {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-tagline {
        text-align: left;
    }

    .back-to-top {
        right: 17px;
        bottom: 17px;

        width: 44px;
        height: 44px;
    }

}


/* =========================================================
   37. ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
    }

}


/* =========================================================
   38. SELECTION
   ========================================================= */

::selection {
    color: var(--white);

    background: var(--blue);
}


/* =========================================================
   39. SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #eef2f6;
}

::-webkit-scrollbar-thumb {
    background: var(--blue);

    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}