/* =========================================================
   INDUSTRIAL HTML/CSS THEME
   Main Stylesheet
   ========================================================= */
@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');

/* =========================================================
   01. ROOT COLOR VARIABLES
   Main industrial color palette
   ========================================================= */

:root {

    /* Primary Industrial Colors */
    --primary-dark: #004479;
    --primary: #0061ac;

    /* Dark / Text Color */
    --dark: #3b3b3b;

    /* Light / Border / Background Color */
    --light: #e2e2e2;

    /* Alert / Highlight Color */
    --danger: #ff0000;


    /* Additional Neutral Colors */
    --white: #ffffff;
    --black: #000000;


    /* =====================================================
       LAYOUT VARIABLES
       ===================================================== */

    --container-width: 1200px;

    --section-padding: 80px;


    /* =====================================================
       BORDER VARIABLES
       ===================================================== */

    --border-color: var(--light);


    /* =====================================================
       TYPOGRAPHY VARIABLES
       ===================================================== */

    --font-family:

        BlinkMacSystemFont, "Poppins", Roboto, Helvetica, Arial, sans-serif;


}


/* =========================================================
   02. CSS RESET
   Removes default browser spacing and normalizes elements.
   ========================================================= */

*,
*::before,
*::after {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


/* =========================================================
   03. HTML
   Global HTML settings.
   ========================================================= */

html {

    scroll-behavior: smooth;

}


/* =========================================================
   04. BODY
   Global website body styling.
   ========================================================= */

body {

    font-family: var(--font-family);

    color: var(--dark);

    background-color: var(--white);

    line-height: 1.6;

    overflow-x: hidden;

}


/* =========================================================
   05. IMAGES
   Responsive image defaults.
   ========================================================= */

img {

    max-width: 100%;

    height: auto;

    display: block;

}


/* =========================================================
   06. LINKS
   Global anchor styling.
   ========================================================= */

a {

    color: var(--primary);

    text-decoration: none;

}


/* =========================================================
   07. FORM ELEMENTS
   Make form elements inherit the website typography.
   ========================================================= */

button,
input,
textarea,
select {

    font: inherit;

}


/* =========================================================
   08. SITE WRAPPER
   Main wrapper for the entire website.
   ========================================================= */

.site-wrapper {

    width: 100%;

    min-height: 100vh;

}


/* =========================================================
   09. COMMON CONTAINER
   Standard centered content container.
   Maximum width: 1200px.
   ========================================================= */

.container {

    width: 100%;

    max-width: var(--container-width);

    margin-left: auto;

    margin-right: auto;

    padding-left: 20px;

    padding-right: 20px;

}


/* =========================================================
   10. HEADER BASE
   Header base structure.
   Detailed header CSS will be added later.
   ========================================================= */
/* =========================================================
   SECTION 01: HEADER
   ========================================================= */


/* =========================================================
   01. TOPBAR
   Full-width dark utility bar.
   ========================================================= */

.topbar {

    width: 100%;

    background-color: var(--dark);

    color: var(--white);

}


/* =========================================================
   02. TOPBAR CONTAINER
   Links aligned to the right.
   ========================================================= */

.topbar .container {

    min-height: 42px;

    display: flex;

    align-items: center;

    justify-content: flex-end;

}


/* =========================================================
   03. TOPBAR NAVIGATION
   ========================================================= */

.topbar-nav {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 28px;

}


/* =========================================================
   04. TOPBAR LINKS
   ========================================================= */

.topbar-nav a {

    position: relative;

    color: var(--white);

    font-size: 13px;

    font-weight: 500;

    line-height: 1;

    text-decoration: none;

    transition: color 0.25s ease;

}


/* =========================================================
   05. TOPBAR HOVER
   ========================================================= */

.topbar-nav a:hover {

    color: var(--primary);

}


/* =========================================================
   06. TOPBAR SEPARATORS
   ========================================================= */

.topbar-nav a:not(:last-child)::after {

    content: "";

    position: absolute;

    width: 1px;

    height: 14px;

    top: 50%;

    right: -14px;

    background-color: rgba(255, 255, 255, 0.25);

    transform: translateY(-50%);

}


/* =========================================================
   07. MAIN HEADER
   ========================================================= */

.main-header {

    position: relative;

    width: 100%;

    background-color: var(--white);

    border-bottom: 1px solid var(--light);

}


/* =========================================================
   08. HEADER INNER
   Desktop header row.
   ========================================================= */

.header-inner {

    min-height: 88px;

    display: flex;

    align-items: center;

    gap: 30px;
    justify-content: space-between;


}

/* =========================================================
   09. SITE LOGO
   SVG logo container
   ========================================================= */

.site-logo {

    flex-shrink: 0;

    display: flex;

    align-items: center;

}


/* =========================================================
   10. LOGO LINK
   ========================================================= */

.site-logo a {

    display: flex;

    align-items: center;

    text-decoration: none;

}


/* =========================================================
   11. LOGO IMAGE
   SVG company logo
   ========================================================= */

.site-logo-image {

    display: block;

    width: auto;

    height: 68px;

    max-width: 220px;

    object-fit: contain;

}


/* =========================================================
   12. LOGO RESPONSIVE
   Tablet
   ========================================================= */

@media (max-width: 900px) {

    .site-logo-image {

        height: 52px;

        max-width: 200px;

    }

}


/* =========================================================
    LOGO RESPONSIVE
   Small mobile
   ========================================================= */

@media (max-width: 480px) {

    .site-logo-image {

        height: 45px;

        max-width: 175px;

    }

}

/* =========================================================
   13. MAIN NAVIGATION
   ========================================================= */

.main-navigation {

    margin-left: auto;

}


/* =========================================================
   14. MAIN MENU
   ========================================================= */

.main-menu {

    display: flex;

    align-items: center;

    gap: 27px;

    margin: 0;

    padding: 0;

    list-style: none;

}


/* =========================================================
   15. MAIN MENU ITEM
   ========================================================= */

.main-menu>li {

    position: relative;

}


/* =========================================================
   16. MAIN MENU LINK
   ========================================================= */

.main-menu>li>a {

    position: relative;

    display: flex;

    align-items: center;

    gap: 6px;

    min-height: 88px;

    color: var(--dark);

    font-size: 14px;

    font-weight: 600;

    white-space: nowrap;

    text-decoration: none;

    transition: color 0.25s ease;

}


/* =========================================================
   17. MAIN MENU HOVER
   ========================================================= */

.main-menu>li>a:hover {

    color: var(--primary);

}


/* =========================================================
   18. MAIN MENU ACTIVE UNDERLINE
   ========================================================= */

.main-menu>li>a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 22px;

    width: 0;

    height: 2px;

    background-color: var(--primary);

    transition: width 0.25s ease;

}


.main-menu>li>a:hover::after {

    width: 100%;

}


/* =========================================================
   19. SUBMENU ARROW
   ========================================================= */

.submenu-arrow {

    font-size: 12px;

    line-height: 1;

    transition: transform 0.25s ease;

}


/* =========================================================
   20. SUBMENU
   Desktop dropdown menu.
   ========================================================= */

.sub-menu {

    position: absolute;

    top: calc(100% - 1px);

    left: 0;

    z-index: 1000;

    min-width: 235px;

    margin: 0;

    padding: 8px 0;

    list-style: none;

    background-color: var(--white);

    border-top: 3px solid var(--primary);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.12);

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

}


/* =========================================================
   21. SHOW DESKTOP SUBMENU
   ========================================================= */

.has-submenu:hover>.sub-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


/* =========================================================
   22. ROTATE SUBMENU ARROW
   ========================================================= */

.has-submenu:hover>a .submenu-arrow {

    transform: rotate(180deg);

}


/* =========================================================
   23. SUBMENU ITEM
   ========================================================= */

.sub-menu li {

    position: relative;

}


/* =========================================================
   24. SUBMENU LINK
   ========================================================= */

.sub-menu li a {

    display: flex;

    align-items: center;

    min-height: 44px;

    padding: 0 18px;

    color: var(--dark);

    font-size: 13px;

    font-weight: 500;

    text-decoration: none;

    border-bottom: 1px solid #eeeeee;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        padding-left 0.2s ease;

}


/* =========================================================
   25. SUBMENU LAST ITEM
   ========================================================= */

.sub-menu li:last-child a {

    border-bottom: none;

}


/* =========================================================
   26. SUBMENU HOVER
   ========================================================= */

.sub-menu li a:hover {

    color: var(--primary);

    background-color: #f5f7f9;

    padding-left: 24px;

}


/* =========================================================
   27. HEADER CTA
   ========================================================= */

.header-cta {

    flex-shrink: 0;

}


/* =========================================================
   28. HEADER BUTTON
   ========================================================= */

.header-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 44px;

    padding: 0 21px;

    color: var(--white);

    background-color: var(--primary);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;

}


/* =========================================================
   29. HEADER BUTTON HOVER
   ========================================================= */

.header-button:hover {

    color: var(--white);

    background-color: var(--primary-dark);

    transform: translateY(-1px);

}


/* =========================================================
   30. MOBILE MENU BUTTON
   Hidden on desktop.
   ========================================================= */

.mobile-menu-toggle {

    display: none;

    flex-shrink: 0;

    width: 42px;

    height: 42px;

    padding: 8px;

    border: 1px solid var(--light);

    background-color: var(--white);

    cursor: pointer;

}


/* =========================================================
   31. HAMBURGER LINES
   ========================================================= */

.mobile-menu-toggle span {

    display: block;

    width: 100%;

    height: 2px;

    margin: 5px 0;

    background-color: var(--dark);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;

}


/* =========================================================
   32. MOBILE MENU BUTTON ACTIVE
   Hamburger becomes X.
   ========================================================= */

.mobile-menu-toggle.active span:nth-child(1) {

    transform: translateY(7px) rotate(45deg);

}


.mobile-menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.mobile-menu-toggle.active span:nth-child(3) {

    transform: translateY(-7px) rotate(-45deg);

}


/* =========================================================
   33. MOBILE NAVIGATION
   Full-width mobile navigation.
   ========================================================= */

.mobile-navigation {

    display: none;

    width: 100%;

    background-color: var(--white);

    border-top: 1px solid var(--light);

    border-bottom: 1px solid var(--light);

}


/* =========================================================
   34. MOBILE NAVIGATION ACTIVE
   ========================================================= */

.mobile-navigation.active {

    display: block;

}


/* =========================================================
   35. MOBILE MENU
   ========================================================= */

.mobile-menu {

    width: 100%;

    margin: 0;

    padding: 0;

    list-style: none;

}


/* =========================================================
   36. MOBILE MENU ITEM
   ========================================================= */

.mobile-menu>li {

    width: 100%;

    border-bottom: 1px solid var(--light);

}


/* =========================================================
   37. MOBILE NORMAL LINK
   ========================================================= */

.mobile-menu>li>a {

    display: flex;

    align-items: center;

    width: 100%;

    min-height: 52px;

    padding: 0 18px;

    color: var(--dark);

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;

}


/* =========================================================
   38. MOBILE NORMAL LINK HOVER
   ========================================================= */

.mobile-menu>li>a:hover {

    color: var(--primary);

    background-color: #f5f7f9;

}


/* =========================================================
   39. MOBILE SUBMENU TOGGLE
   ========================================================= */

.mobile-submenu-toggle {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    min-height: 52px;

    padding: 0 18px;

    border: 0;

    background-color: var(--white);

    color: var(--dark);

    font-family: inherit;

    font-size: 14px;

    font-weight: 600;

    text-align: left;

    cursor: pointer;

}


/* =========================================================
   40. MOBILE SUBMENU TOGGLE HOVER
   ========================================================= */

.mobile-submenu-toggle:hover {

    color: var(--primary);

    background-color: #f5f7f9;

}


/* =========================================================
   41. MOBILE SUBMENU ARROW
   ========================================================= */

.mobile-submenu-arrow {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 24px;

    height: 24px;

    color: var(--primary);

    font-size: 20px;

    font-weight: 400;

    line-height: 1;

    transition: transform 0.25s ease;

}


/* =========================================================
   42. MOBILE SUBMENU
   Hidden by default.
   ========================================================= */

.mobile-sub-menu {

    display: none;

    margin: 0;

    padding: 0;

    list-style: none;

    background-color: #f7f8f9;

}


/* =========================================================
   43. MOBILE SUBMENU ACTIVE
   ========================================================= */

.mobile-has-submenu.active>.mobile-sub-menu {

    display: block;

}


/* =========================================================
   44. MOBILE SUBMENU ACTIVE ARROW
   ========================================================= */

.mobile-has-submenu.active .mobile-submenu-arrow {

    transform: rotate(45deg);

}


/* =========================================================
   45. MOBILE SUBMENU LINK
   ========================================================= */

.mobile-sub-menu li {

    border-top: 1px solid var(--light);

}


.mobile-sub-menu li a {

    display: flex;

    align-items: center;

    min-height: 46px;

    padding: 0 18px 0 35px;

    color: #555555;

    font-size: 13px;

    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;

}


/* =========================================================
   46. MOBILE SUBMENU LINK HOVER
   ========================================================= */

.mobile-sub-menu li a:hover {

    color: var(--primary);

    background-color: #eeeeee;

}


/* =========================================================
   47. TABLET HEADER
   ========================================================= */

@media (max-width: 1100px) {

    .header-inner {

        gap: 18px;

    }


    .main-menu {

        gap: 18px;

    }


    .main-menu>li>a {

        font-size: 12px;

    }


    .header-button {

        padding: 0 16px;

    }

}


/* =========================================================
   48. MOBILE BREAKPOINT
   ========================================================= */

@media (max-width: 900px) {

    .header-inner {

        min-height: 76px;

    }


    /* Hide desktop navigation */

    .main-navigation {

        display: none;

    }


    /* Hide desktop CTA */

    .header-cta {

        display: none;

    }


    /* Show mobile button */

    .mobile-menu-toggle {

        display: block;

    }


    /* Mobile navigation */

    .mobile-navigation {

        display: none;

    }


    .mobile-navigation.active {

        display: block;

    }

}


/* =========================================================
   SECTION 02: HERO
   Full-width industrial video hero
   ========================================================= */
/* =========================================================
   SECTION 02: HERO
   Industrial video hero section
   ========================================================= */


/* =========================================================
   01. HERO SECTION
   Main hero wrapper.
   ========================================================= */

.hero-section {

    position: relative;

    width: 100%;

    height: clamp(520px, 72vh, 780px);

    overflow: hidden;

    background-color: var(--primary-dark);

}


/* =========================================================
   02. HERO VIDEO WRAPPER
   ========================================================= */

.hero-video-wrapper {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    overflow: hidden;

}


/* =========================================================
   03. HERO VIDEO
   Background video.
   ========================================================= */

.hero-video {

    position: absolute;

    top: 50%;

    left: 50%;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center center;

    transform: translate(-50%, -50%);

}


/* =========================================================
   04. HERO OVERLAY
   Dark blue industrial gradient.
   This layer contains NO text.
   ========================================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(90deg,
            rgba(0, 42, 75, 0.92) 0%,
            rgba(0, 68, 121, 0.78) 30%,
            rgba(0, 68, 121, 0.40) 65%,
            rgba(0, 0, 0, 0.20) 100%);

}


/* =========================================================
   05. HERO CONTENT
   Content layer above overlay.
   ========================================================= */

.hero-content {

    position: relative;

    z-index: 2;

    width: 100%;

    height: 100%;

}


/* =========================================================
   06. HERO CONTENT INNER
   Aligns hero content vertically.
   ========================================================= */

.hero-content-inner {

    width: 100%;

    height: 100%;

    margin-top: 50px;

    display: flex;

    align-items: center;

    justify-content: flex-start;

}


/* =========================================================
   07. HERO TEXT
   Controls maximum text width.
   ========================================================= */

.hero-text {

    width: 100%;

    max-width: 700px;

    padding-top: 10px;

}


/* =========================================================
   08. HERO EYEBROW
   Small industrial label above heading.
   ========================================================= */

.hero-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: var(--white);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;

}


/* =========================================================
   09. EYEBROW ACCENT LINE
   ========================================================= */

.hero-eyebrow-line {

    display: block;

    width: 45px;

    height: 2px;

    background-color: var(--primary);

}


/* =========================================================
   10. HERO TITLE
   Main hero heading.
   ========================================================= */

.hero-title {

    margin: 0;

    color: var(--white);

    font-size: clamp(42px, 5vw, 72px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -1.5px;

}


/* =========================================================
   11. HERO TITLE ACCENT
   Company name highlighted in blue.
   ========================================================= */

.hero-title span {

    display: block;

    margin-top: 5px;

    color: var(--white);

}


/* =========================================================
   12. HERO DESCRIPTION
   ========================================================= */

.hero-description {

    max-width: 610px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 17px;

    font-weight: 400;

    line-height: 1.7;

}


/* =========================================================
   13. HERO ACTIONS
   CTA button container.
   ========================================================= */

.hero-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 32px;

}


/* =========================================================
   14. HERO BUTTON
   Common button styling.
   ========================================================= */

.hero-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding: 0 23px;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;

}


/* =========================================================
   15. PRIMARY HERO BUTTON
   ========================================================= */

.hero-button-primary {

    gap: 15px;

    background-color: var(--primary);

    color: var(--white);

    border: 1px solid var(--primary);

}


/* =========================================================
   16. PRIMARY BUTTON HOVER
   ========================================================= */

.hero-button-primary:hover {

    background-color: var(--primary-dark);

    border-color: var(--primary-dark);

    color: var(--white);

    transform: translateY(-2px);

}


/* =========================================================
   17. HERO BUTTON ARROW
   ========================================================= */

.hero-button-arrow {

    font-size: 18px;

    line-height: 1;

    transition: transform 0.25s ease;

}


/* =========================================================
   18. ARROW HOVER
   ========================================================= */

.hero-button-primary:hover .hero-button-arrow {

    transform: translateX(4px);

}


/* =========================================================
   19. SECONDARY HERO BUTTON
   ========================================================= */

.hero-button-secondary {

    background-color: transparent;

    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.55);

}


/* =========================================================
   20. SECONDARY BUTTON HOVER
   ========================================================= */

.hero-button-secondary:hover {

    background-color: var(--white);

    border-color: var(--white);

    color: var(--primary-dark);

    transform: translateY(-2px);

}


/* =========================================================
   21. TABLET HERO
   ========================================================= */

@media (max-width: 900px) {

    .hero-section {

        height: clamp(500px, 65vh, 650px);

    }


    .hero-text {

        max-width: 620px;

    }


    .hero-title {

        font-size: clamp(40px, 7vw, 60px);

    }


    .hero-description {

        font-size: 16px;

    }

}


/* =========================================================
   22. MOBILE HERO
   ========================================================= */

@media (max-width: 600px) {

    .hero-section {

        height: clamp(450px, 60vh, 560px);

    }


    .hero-overlay {

        background:

            linear-gradient(90deg,
                rgba(0, 42, 75, 0.92) 0%,
                rgba(0, 68, 121, 0.72) 100%);

    }


    .hero-content-inner {

        align-items: center;

    }


    .hero-text {

        max-width: 100%;

    }


    .hero-eyebrow {

        margin-bottom: 15px;

        font-size: 10px;

        letter-spacing: 2px;

    }


    .hero-eyebrow-line {

        width: 32px;

    }


    .hero-title {

        font-size: clamp(34px, 10vw, 48px);

        line-height: 1.08;

        letter-spacing: -0.8px;

    }


    .hero-description {

        margin-top: 18px;

        font-size: 14px;

        line-height: 1.6;

    }


    .hero-actions {

        margin-top: 25px;

    }


    .hero-button {

        min-height: 46px;

        padding: 0 18px;

        font-size: 12px;

    }

}


/* =========================================================
   23. SMALL MOBILE HERO
   ========================================================= */

@media (max-width: 480px) {

    .hero-section {

        height: 470px;

    }


    .hero-description {

        max-width: 95%;

    }


    .hero-actions {

        width: 100%;

        flex-direction: column;

        align-items: stretch;

    }


    .hero-button {

        width: 100%;

    }

}

/* =========================================================
   TABLET HERO HEIGHT
   ========================================================= */

@media (max-width: 900px) {

    .hero-section {

        /*
         * Tablet:
         * 65% viewport height
         */
        height: clamp(480px, 65vh, 650px);

    }

}


/* =========================================================
   MOBILE HERO HEIGHT
   ========================================================= */

@media (max-width: 600px) {

    .hero-section {

        /*
         * Mobile:
         * Shorter hero to avoid taking the entire screen.
         */
        height: clamp(420px, 58vh, 540px);

    }


    .hero-video {

        object-position: center center;

    }


    .hero-overlay {

        background:
            linear-gradient(90deg,
                rgba(0, 68, 121, 0.82) 0%,
                rgba(0, 68, 121, 0.60) 100%);

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero-section {

        height: 460px;

    }

}

/* =========================================================
   49. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .header-inner {

        min-height: 70px;

    }


    .logo-main {

        font-size: 21px;

    }


    .logo-subtitle {

        font-size: 7px;

        letter-spacing: 1.5px;

    }


    .mobile-menu-toggle {

        width: 40px;

        height: 40px;

    }


    .topbar .container {

        min-height: 38px;

    }


    .topbar-nav {

        gap: 17px;

    }


    .topbar-nav a {

        font-size: 10px;

    }

}

/* =========================================================
   11. MAIN CONTENT
   Main website content area.
   ========================================================= */

.site-main {

    width: 100%;

}


/* =========================================================
   12. FOOTER BASE
   Footer base styling.
   Detailed footer CSS will be added later.
   ========================================================= */

.site-footer {

    width: 100%;

    background-color: var(--dark);

    color: var(--white);

}


/* =========================================================
   13. TABLET RESPONSIVE
   Devices up to 768px.
   ========================================================= */

@media (max-width: 768px) {

    :root {

        --section-padding: 60px;

    }


    .container {

        padding-left: 15px;

        padding-right: 15px;

    }

}


/* =========================================================
   14. SMALL MOBILE RESPONSIVE
   Devices up to 480px.
   ========================================================= */

@media (max-width: 480px) {

    :root {

        --section-padding: 45px;

    }

}

/* =========================================================
   SECTION 03: WHY CHOOSE US
   Industrial value proposition section
   ========================================================= */


/* =========================================================
   01. WHY SECTION
   Main section wrapper.
   ========================================================= */

.why-section {

    position: relative;

    width: 100%;

    padding: 100px 0 90px;

    background-color: var(--white);

    overflow: hidden;

}


/* =========================================================
   02. SECTION HEADING
   Centered heading area.
   ========================================================= */

.section-heading {

    max-width: 900px;

    margin: 0 auto 55px;

    text-align: center;

}


/* =========================================================
   03. SECTION EYEBROW
   Small industrial heading.
   ========================================================= */

.section-eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    margin-bottom: 16px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


/* =========================================================
   04. SECTION EYEBROW LINES
   ========================================================= */

.section-eyebrow-line {

    width: 35px;

    height: 2px;

    background-color: var(--danger);

}


/* =========================================================
   05. SECTION TITLE
   ========================================================= */

.section-title {

    margin: 0;

    color: var(--primary-dark);

    font-size: clamp(38px, 4.5vw, 58px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.5px;

}


/* =========================================================
   06. SECTION TITLE ACCENT
   ========================================================= */

.section-title span {

    color: var(--primary);

}


/* =========================================================
   07. SECTION DESCRIPTION
   ========================================================= */

.section-description {

    max-width: 820px;

    margin: 22px auto 0;

    color: #555555;

    font-size: 16px;

    line-height: 1.75;

}


/* =========================================================
   08. FEATURE GRID
   Three-column desktop layout.
   ========================================================= */

.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 30px;

}


/* =========================================================
   09. FEATURE CARD
   Main card container.
   ========================================================= */

.feature-card {

    position: relative;

    background-color: var(--white);

    border: 1px solid var(--light);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.06);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

}


/* =========================================================
   10. FEATURE CARD HOVER
   ========================================================= */

.feature-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.13);

}


/* =========================================================
   11. FEATURE IMAGE
   Image wrapper.
   ========================================================= */

.feature-image {

    position: relative;

    width: 100%;

    height: 310px;

    overflow: hidden;

    background-color: var(--primary-dark);

}


/* =========================================================
   12. FEATURE IMAGE IMAGE
   ========================================================= */

.feature-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.6s ease;

}


/* =========================================================
   13. FEATURE IMAGE HOVER ZOOM
   ========================================================= */

.feature-card:hover .feature-image img {

    transform: scale(1.07);

}


/* =========================================================
   14. FEATURE IMAGE OVERLAY
   ========================================================= */

.feature-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 68, 121, 0.05) 35%,
            rgba(0, 35, 62, 0.55) 100%);

    pointer-events: none;

}


/* =========================================================
   15. FEATURE NUMBER
   Industrial number badge.
   ========================================================= */

.feature-number {

    position: absolute;

    top: 20px;

    left: 20px;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 54px;

    height: 54px;

    background-color: var(--primary);

    color: var(--white);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1px;

}


/* =========================================================
   16. FEATURE NUMBER CORNER
   Small industrial red accent.
   ========================================================= */

.feature-number::after {

    content: "";

    position: absolute;

    right: -6px;

    bottom: -6px;

    width: 16px;

    height: 16px;

    background-color: var(--danger);

}


/* =========================================================
   17. FEATURE CONTENT
   ========================================================= */

.feature-content {

    position: relative;

    padding: 30px 30px 32px;

}


/* =========================================================
   18. FEATURE ACCENT
   Blue/red industrial line.
   ========================================================= */

.feature-accent {

    width: 42px;

    height: 3px;

    margin-bottom: 18px;

    background-color: var(--primary);

}


/* =========================================================
   19. FEATURE ACCENT RED DETAIL
   ========================================================= */

.feature-accent::after {

    content: "";

    display: inline-block;

    width: 12px;

    height: 3px;

    margin-left: 5px;

    background-color: var(--danger);

}


/* =========================================================
   20. FEATURE TITLE
   ========================================================= */

.feature-content h3 {

    margin: 0;

    color: var(--primary-dark);

    font-size: 25px;

    font-weight: 800;

    line-height: 1.15;

}


/* =========================================================
   21. FEATURE TITLE SECOND LINE
   ========================================================= */

.feature-content h3 span {

    display: block;

}


/* =========================================================
   22. FEATURE DESCRIPTION
   ========================================================= */

.feature-content p {

    margin: 18px 0 0;

    color: #555555;

    font-size: 14px;

    line-height: 1.75;

}


/* =========================================================
   23. FEATURE LINK
   ========================================================= */

.feature-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 24px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    text-decoration: none;

}


/* =========================================================
   24. FEATURE LINK ARROW
   ========================================================= */

.feature-link span {

    font-size: 18px;

    line-height: 1;

    transition:
        transform 0.25s ease;

}


/* =========================================================
   25. FEATURE LINK HOVER
   ========================================================= */

.feature-link:hover {

    color: var(--primary-dark);

}


.feature-link:hover span {

    transform: translateX(5px);

}


/* =========================================================
   26. SECTION BOTTOM ACCENT
   Decorative industrial line.
   ========================================================= */

.section-bottom-accent {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background-color: var(--light);

}


/* =========================================================
   27. SECTION BOTTOM ACCENT DETAIL
   ========================================================= */

.section-bottom-accent span {

    display: block;

    width: 28%;

    height: 5px;

    background-color: var(--primary);

}


/* =========================================================
   28. TABLET
   Two-column feature grid.
   ========================================================= */

@media (max-width: 900px) {

    .why-section {

        padding: 80px 0 70px;

    }


    .section-heading {

        margin-bottom: 45px;

    }


    .feature-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 24px;

    }


    .feature-card:last-child {

        grid-column: 1 / -1;

        max-width: 50%;

        margin: 0 auto;

    }


    .feature-image {

        height: 280px;

    }

}


/* =========================================================
   29. MOBILE
   Single-column layout.
   ========================================================= */

@media (max-width: 600px) {

    .why-section {

        padding: 65px 0 60px;

    }


    .section-heading {

        margin-bottom: 35px;

    }


    .section-eyebrow {

        font-size: 9px;

        letter-spacing: 2px;

    }


    .section-eyebrow-line {

        width: 25px;

    }


    .section-title {

        font-size: 36px;

        letter-spacing: -0.8px;

    }


    .section-description {

        margin-top: 18px;

        font-size: 14px;

        line-height: 1.65;

    }


    .feature-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .feature-card:last-child {

        grid-column: auto;

        max-width: none;

        margin: 0;

    }


    .feature-image {

        height: 250px;

    }


    .feature-content {

        padding: 25px 22px 28px;

    }


    .feature-content h3 {

        font-size: 22px;

    }

}


/* =========================================================
   30. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .feature-image {

        height: 220px;

    }


    .feature-number {

        top: 15px;

        left: 15px;

        width: 48px;

        height: 48px;

        font-size: 12px;

    }


    .feature-content p {

        font-size: 13px;

    }

}

/* =========================================================
   SECTION 04: ABOUT US
   Industrial company introduction section
   ========================================================= */


/* =========================================================
   01. ABOUT SECTION
   Main section wrapper.
   ========================================================= */

.about-section {

    position: relative;

    width: 100%;

    padding: 110px 0;

    background-color: #f7f8f9;

    overflow: hidden;

}


/* =========================================================
   02. ABOUT GRID
   Two-column desktop layout.
   ========================================================= */

.about-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr) minmax(0, 1.05fr);

    align-items: center;

    gap: 80px;

}


/* =========================================================
   03. ABOUT IMAGE COLUMN
   ========================================================= */

.about-image-column {

    position: relative;

    padding: 0 25px 25px 0;

}


/* =========================================================
   04. ABOUT IMAGE WRAPPER
   ========================================================= */

.about-image-wrapper {

    position: relative;

    width: 100%;

    height: 520px;

    overflow: hidden;

    background-color: var(--primary-dark);

    box-shadow:
        15px 15px 0 var(--primary);

}


/* =========================================================
   05. ABOUT IMAGE
   ========================================================= */

.about-image-wrapper img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.6s ease;

}


/* =========================================================
   06. ABOUT IMAGE HOVER
   ========================================================= */

.about-image-wrapper:hover img {

    transform: scale(1.04);

}


/* =========================================================
   07. ABOUT IMAGE CORNER
   Red industrial accent.
   ========================================================= */

.about-image-corner {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 70px;

    height: 70px;

    background-color: var(--danger);

    clip-path: polygon(100% 0,
            100% 100%,
            0 100%);

}


/* =========================================================
   08. EXPERIENCE BADGE
   ========================================================= */

.about-experience {

    position: absolute;

    left: -25px;

    bottom: 0;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 15px;

    min-width: 210px;

    padding: 20px 25px;

    background-color: var(--primary-dark);

    color: var(--white);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15);

}


/* =========================================================
   09. EXPERIENCE NUMBER
   ========================================================= */

.about-experience-number {

    color: var(--white);

    font-size: 40px;

    font-weight: 800;

    line-height: 1;

}


/* =========================================================
   10. EXPERIENCE TEXT
   ========================================================= */

.about-experience-text {

    padding-left: 15px;

    border-left: 1px solid rgba(255, 255, 255, 0.35);

    color: rgba(255, 255, 255, 0.85);

    font-size: 11px;

    font-weight: 700;

    line-height: 1.4;

    letter-spacing: 1px;

    text-transform: uppercase;

}


/* =========================================================
   11. ABOUT CONTENT
   ========================================================= */

.about-content {

    position: relative;

}


/* =========================================================
   12. ABOUT EYEBROW
   ========================================================= */

.about-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


/* =========================================================
   13. ABOUT EYEBROW LINE
   ========================================================= */

.about-eyebrow-line {

    width: 38px;

    height: 2px;

    background-color: var(--danger);

}


/* =========================================================
   14. ABOUT TITLE
   ========================================================= */

.about-title {

    max-width: 650px;

    margin: 0;

    color: var(--primary-dark);

    font-size: clamp(38px, 4vw, 55px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.2px;

}


/* =========================================================
   15. ABOUT TITLE ACCENT
   ========================================================= */

.about-title span {

    display: block;

    color: var(--primary);

}


/* =========================================================
   16. ABOUT INTRO
   Strong introductory paragraph.
   ========================================================= */

.about-intro {

    max-width: 650px;

    margin-top: 25px;

    color: var(--dark);

    font-size: 18px;

    font-weight: 600;

    line-height: 1.65;

    text-align: justify;

}


/* =========================================================
   17. ABOUT DESCRIPTION
   ========================================================= */

.about-description {

    max-width: 650px;

    margin-top: 15px;

    color: #5c5c5c;

    font-size: 14px;

    line-height: 1.8;

    text-align: justify;

}


/* =========================================================
   18. ABOUT FEATURES
   Two-column feature grid.
   ========================================================= */

.about-features {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px 25px;

    margin-top: 30px;

}


/* =========================================================
   19. ABOUT FEATURE
   ========================================================= */

.about-feature {

    display: flex;

    align-items: flex-start;

    gap: 12px;

}


/* =========================================================
   20. ABOUT FEATURE ICON
   ========================================================= */

.about-feature-icon {

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 25px;

    height: 25px;

    background-color: var(--primary);

    color: var(--white);

    font-size: 12px;

    font-weight: 800;

}


/* =========================================================
   21. ABOUT FEATURE TITLE
   ========================================================= */

.about-feature h3 {

    margin: 0;

    color: var(--primary-dark);

    font-size: 14px;

    font-weight: 800;

    line-height: 1.3;

}


/* =========================================================
   22. ABOUT FEATURE DESCRIPTION
   ========================================================= */

.about-feature p {

    margin-top: 5px;

    color: #666666;

    font-size: 12px;

    line-height: 1.5;

}


/* =========================================================
   23. ABOUT ACTIONS
   ========================================================= */

.about-actions {

    margin-top: 35px;

}


/* =========================================================
   24. ABOUT BUTTON
   ========================================================= */

.about-button {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    min-height: 50px;

    padding: 0 24px;

    background-color: var(--primary);

    color: var(--white);

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;

}


/* =========================================================
   25. ABOUT BUTTON HOVER
   ========================================================= */

.about-button:hover {

    background-color: var(--primary-dark);

    color: var(--white);

    transform: translateY(-2px);

}


/* =========================================================
   26. ABOUT BUTTON ARROW
   ========================================================= */

.about-button span {

    font-size: 18px;

    transition:
        transform 0.25s ease;

}


.about-button:hover span {

    transform: translateX(5px);

}


/* =========================================================
   27. BACKGROUND INDUSTRIAL DETAIL
   Decorative lines on right side.
   ========================================================= */

.about-background-detail {

    position: absolute;

    right: -80px;

    bottom: -60px;

    z-index: 1;

    display: grid;

    grid-template-columns:
        repeat(2, 80px);

    gap: 15px;

    opacity: 0.08;

    transform: rotate(45deg);

}


/* =========================================================
   28. BACKGROUND DETAIL BLOCKS
   ========================================================= */

.about-background-detail span {

    width: 80px;

    height: 80px;

    border: 5px solid var(--primary);

}


/* =========================================================
   29. TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .about-section {

        padding: 85px 0;

    }


    .about-grid {

        gap: 50px;

    }


    .about-image-wrapper {

        height: 450px;

    }


    .about-title {

        font-size: 42px;

    }


    .about-intro {

        font-size: 16px;

    }

}


/* =========================================================
   30. MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .about-section {

        padding: 70px 0;

    }


    .about-grid {

        grid-template-columns: 1fr;

        gap: 55px;

    }


    .about-image-column {

        padding: 0 15px 15px 15px;

    }


    .about-image-wrapper {

        height: 420px;

        box-shadow:
            10px 10px 0 var(--primary);

    }


    .about-experience {

        left: 0;

    }


    .about-title {

        font-size: 38px;

    }


    .about-features {

        gap: 20px;

    }

}


/* =========================================================
   31. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .about-section {

        padding: 60px 0;

    }


    .about-image-wrapper {

        height: 330px;

    }


    .about-experience {

        min-width: 185px;

        padding: 16px 18px;

    }


    .about-experience-number {

        font-size: 32px;

    }


    .about-title {

        font-size: 33px;

    }


    .about-intro {

        font-size: 15px;

    }


    .about-features {

        grid-template-columns: 1fr;

    }


    .about-background-detail {

        display: none;

    }

}

/* =========================================================
   SECTION 05: OUR INFRASTRUCTURE
   Full-width industrial infrastructure section
   ========================================================= */


/* =========================================================
   01. INFRASTRUCTURE SECTION
   Main full-width wrapper.
   ========================================================= */

.infrastructure-section {

    position: relative;

    width: 100%;

    min-height: 680px;

    overflow: hidden;

    background-color: var(--primary-dark);

}


/* =========================================================
   02. INFRASTRUCTURE IMAGE
   Full section background image.
   ========================================================= */

.infrastructure-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

}


/* =========================================================
   03. INFRASTRUCTURE IMAGE ELEMENT
   ========================================================= */

.infrastructure-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

}


/* =========================================================
   04. INFRASTRUCTURE OVERLAY
   Creates strong contrast for content.
   ========================================================= */

.infrastructure-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(90deg,
            rgba(0, 31, 55, 0.97) 0%,
            rgba(0, 55, 95, 0.92) 42%,
            rgba(0, 55, 95, 0.63) 70%,
            rgba(0, 0, 0, 0.35) 100%);

}


/* =========================================================
   05. INFRASTRUCTURE CONTENT
   Content layer.
   ========================================================= */

.infrastructure-content {

    position: relative;

    z-index: 3;

    width: 100%;

    min-height: 680px;

    display: flex;

    align-items: center;

}


/* =========================================================
   06. INFRASTRUCTURE LAYOUT
   Two-column layout.
   ========================================================= */

.infrastructure-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(0, 0.85fr);

    align-items: center;

    gap: 90px;

}


/* =========================================================
   07. INFRASTRUCTURE INTRO
   Left-side content.
   ========================================================= */

.infrastructure-intro {

    max-width: 650px;

}


/* =========================================================
   08. INFRASTRUCTURE EYEBROW
   ========================================================= */

.infrastructure-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


/* =========================================================
   09. INFRASTRUCTURE EYEBROW LINE
   ========================================================= */

.infrastructure-eyebrow span {

    width: 42px;

    height: 2px;

    background-color: var(--danger);

}


/* =========================================================
   10. INFRASTRUCTURE TITLE
   ========================================================= */

.infrastructure-title {

    margin: 0;

    color: var(--white);

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -1.5px;

}


/* =========================================================
   11. INFRASTRUCTURE TITLE STRONG
   Blue highlighted words.
   ========================================================= */

.infrastructure-title strong {

    color: #63b4ed;

    font-weight: 800;

}


/* =========================================================
   12. INFRASTRUCTURE DESCRIPTION
   ========================================================= */

.infrastructure-description {

    max-width: 590px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   13. INFRASTRUCTURE BUTTON
   ========================================================= */

.infrastructure-button {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    min-height: 50px;

    margin-top: 32px;

    padding: 0 23px;

    background-color: var(--primary);

    color: var(--white);

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;

}


/* =========================================================
   14. INFRASTRUCTURE BUTTON HOVER
   ========================================================= */

.infrastructure-button:hover {

    background-color: var(--danger);

    color: var(--white);

    transform: translateY(-2px);

}


/* =========================================================
   15. INFRASTRUCTURE BUTTON ARROW
   ========================================================= */

.infrastructure-button span {

    font-size: 18px;

    transition:
        transform 0.25s ease;

}


.infrastructure-button:hover span {

    transform: translateX(5px);

}


/* =========================================================
   16. INFRASTRUCTURE PANEL
   Right-side dark panel.
   ========================================================= */

.infrastructure-panel {

    position: relative;

    padding: 35px;

    background-color:
        rgba(0, 36, 63, 0.88);

    border-left: 4px solid var(--primary);

    backdrop-filter: blur(5px);

}


/* =========================================================
   17. PANEL HEADER
   ========================================================= */

.infrastructure-panel-header {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;

    color: var(--white);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


/* =========================================================
   18. PANEL HEADER LINE
   ========================================================= */

.infrastructure-panel-line {

    flex: 1;

    height: 1px;

    background-color:
        rgba(255, 255, 255, 0.25);

}


/* =========================================================
   19. INFRASTRUCTURE STATS
   ========================================================= */

.infrastructure-stats {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

}


/* =========================================================
   20. INFRASTRUCTURE STAT
   ========================================================= */

.infrastructure-stat {

    display: flex;

    gap: 15px;

    padding: 22px 15px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.13);

}


/* =========================================================
   21. STAT NUMBER
   ========================================================= */

.infrastructure-stat-number {

    flex-shrink: 0;

    color: var(--danger);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

}


/* =========================================================
   22. STAT TITLE
   ========================================================= */

.infrastructure-stat-content h3 {

    margin: 0;

    color: var(--white);

    font-size: 14px;

    font-weight: 700;

    line-height: 1.3;

}


/* =========================================================
   23. STAT DESCRIPTION
   ========================================================= */

.infrastructure-stat-content p {

    margin-top: 7px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 11px;

    line-height: 1.6;

}


/* =========================================================
   24. DECORATIVE GRID
   Industrial background pattern.
   ========================================================= */

.infrastructure-grid-pattern {

    position: absolute;

    right: -70px;

    bottom: -80px;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, 55px);

    gap: 10px;

    opacity: 0.08;

    transform: rotate(45deg);

}


/* =========================================================
   25. GRID PATTERN BLOCKS
   ========================================================= */

.infrastructure-grid-pattern span {

    width: 55px;

    height: 55px;

    border: 2px solid var(--white);

}


/* =========================================================
   26. TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .infrastructure-section {

        min-height: 650px;

    }


    .infrastructure-content {

        min-height: 650px;

    }


    .infrastructure-layout {

        gap: 45px;

    }


    .infrastructure-panel {

        padding: 25px;

    }


    .infrastructure-title {

        font-size: 48px;

    }

}


/* =========================================================
   27. MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .infrastructure-section {

        min-height: auto;

    }


    .infrastructure-content {

        min-height: auto;

        padding: 80px 0;

    }


    .infrastructure-layout {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .infrastructure-intro {

        max-width: 100%;

    }


    .infrastructure-title {

        font-size: 42px;

    }


    .infrastructure-panel {

        width: 100%;

    }


    .infrastructure-image img {

        object-position: center;

    }

}


/* =========================================================
   28. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .infrastructure-content {

        padding: 65px 0;

    }


    .infrastructure-title {

        font-size: 36px;

    }


    .infrastructure-description {

        font-size: 14px;

    }


    .infrastructure-panel {

        padding: 22px 18px;

    }


    .infrastructure-stats {

        grid-template-columns: 1fr;

    }


    .infrastructure-stat {

        padding: 18px 5px;

    }


    .infrastructure-grid-pattern {

        display: none;

    }

}

/* =========================================================
   SECTION 06: CONTACT US BANNER
   Light industrial CTA banner
   ========================================================= */


/* =========================================================
   01. CONTACT BANNER
   Main full-width wrapper.
   ========================================================= */

.contact-banner {

    position: relative;

    width: 100%;

    min-height: 400px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background-color: #f5f7f9;

}


/* =========================================================
   02. CONTACT BANNER IMAGE
   Full background image.
   ========================================================= */

.contact-banner-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

}


/* =========================================================
   03. CONTACT BANNER IMAGE
   ========================================================= */

.contact-banner-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

}


/* =========================================================
   04. CONTACT BANNER OVERLAY
   Light white industrial overlay.
   Keeps the background image visible.
   ========================================================= */

.contact-banner-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(90deg,
            rgba(255, 255, 255, 0.97) 0%,
            rgba(255, 255, 255, 0.92) 42%,
            rgba(255, 255, 255, 0.72) 70%,
            rgba(255, 255, 255, 0.55) 100%);

}


/* =========================================================
   05. CONTACT BANNER CONTENT
   ========================================================= */

.contact-banner .container {

    position: relative;

    z-index: 3;

}


/* =========================================================
   06. CONTACT BANNER INNER
   Two-column CTA layout.
   ========================================================= */

.contact-banner-content {

    min-height: 400px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;

}


/* =========================================================
   07. CONTACT BANNER TEXT
   ========================================================= */

.contact-banner-text {

    max-width: 760px;

}


/* =========================================================
   08. CONTACT EYEBROW
   ========================================================= */

.contact-banner-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


/* =========================================================
   09. CONTACT EYEBROW LINE
   ========================================================= */

.contact-banner-eyebrow span {

    width: 40px;

    height: 2px;

    background-color: var(--danger);

}


/* =========================================================
   10. CONTACT HEADING
   ========================================================= */

.contact-banner-text h2 {

    margin: 0;

    color: var(--primary-dark);

    font-size: clamp(38px, 4.5vw, 60px);

    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -1px;

}


/* =========================================================
   11. CONTACT HEADING ACCENT
   ========================================================= */

.contact-banner-text h2 strong {

    color: var(--primary);

    font-weight: 800;

}


/* =========================================================
   12. CONTACT DESCRIPTION
   ========================================================= */

.contact-banner-text p {

    max-width: 650px;

    margin-top: 20px;

    color: #555555;

    font-size: 15px;

    line-height: 1.75;

}


/* =========================================================
   13. CONTACT ACTION
   Right-side CTA.
   ========================================================= */

.contact-banner-action {

    flex-shrink: 0;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 18px;

}


/* =========================================================
   14. CONTACT BUTTON
   ========================================================= */

.contact-banner-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    min-width: 190px;

    min-height: 56px;

    padding: 0 25px;

    background-color: var(--danger);

    color: var(--white);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.5px;

    text-decoration: none;

    text-transform: uppercase;

    box-shadow:
        0 8px 20px rgba(255, 0, 0, 0.18);

    transition:
        background-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


/* =========================================================
   15. CONTACT BUTTON HOVER
   ========================================================= */

.contact-banner-button:hover {

    background-color: var(--primary);

    color: var(--white);

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 68, 121, 0.22);

}


/* =========================================================
   16. CONTACT BUTTON ARROW
   ========================================================= */

.contact-banner-button span {

    font-size: 20px;

    line-height: 1;

    transition:
        transform 0.25s ease;

}


.contact-banner-button:hover span {

    transform: translateX(5px);

}


/* =========================================================
   17. CONTACT PHONE LABEL
   ========================================================= */

.contact-phone-label {

    display: block;

    color: #777777;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


/* =========================================================
   18. CONTACT PHONE TEXT
   ========================================================= */

.contact-phone-text {

    display: block;

    margin-top: 5px;

    color: var(--primary-dark);

    font-size: 13px;

    font-weight: 700;

}


/* =========================================================
   19. BOTTOM RED ACCENT
   ========================================================= */

.contact-banner-accent {

    position: absolute;

    left: 0;

    bottom: 0;

    z-index: 4;

    width: 32%;

    height: 5px;

    background-color: var(--danger);

}


/* =========================================================
   20. DECORATIVE BLUE ACCENT
   Light industrial geometric element.
   ========================================================= */

.contact-banner::after {

    content: "";

    position: absolute;

    right: -100px;

    top: -150px;

    z-index: 2;

    width: 380px;

    height: 380px;

    border: 70px solid rgba(0, 97, 172, 0.10);

    transform: rotate(45deg);

    pointer-events: none;

}


/* =========================================================
   21. ADDITIONAL INDUSTRIAL BLUE DETAIL
   ========================================================= */

.contact-banner::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    z-index: 2;

    width: 6px;

    height: 100%;

    background-color: var(--primary);

}


/* =========================================================
   22. TABLET
   ========================================================= */

@media (max-width: 900px) {

    .contact-banner-content {

        gap: 40px;

    }


    .contact-banner-text h2 {

        font-size: 45px;

    }


    .contact-banner-action {

        min-width: 170px;

    }

}


/* =========================================================
   23. MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .contact-banner {

        min-height: auto;

    }


    .contact-banner-content {

        min-height: auto;

        padding: 75px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 35px;

    }


    .contact-banner-text {

        max-width: 100%;

    }


    .contact-banner-text h2 {

        font-size: 40px;

    }


    .contact-banner-action {

        flex-direction: row;

        align-items: center;

        flex-wrap: wrap;

    }


    .contact-banner-overlay {

        background:

            linear-gradient(90deg,
                rgba(255, 255, 255, 0.96) 0%,
                rgba(255, 255, 255, 0.82) 100%);

    }

}


/* =========================================================
   24. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .contact-banner-content {

        padding: 60px 0;

    }


    .contact-banner-text h2 {

        font-size: 34px;

    }


    .contact-banner-text p {

        font-size: 14px;

    }


    .contact-banner-action {

        width: 100%;

        flex-direction: column;

        align-items: flex-start;

    }


    .contact-banner-button {

        width: 100%;

    }


    .contact-banner::after {

        width: 250px;

        height: 250px;

        border-width: 45px;

        right: -100px;

        top: -80px;

    }

}

/* =========================================================
   SECTION 07: FOOTER
   Industrial footer section
   ========================================================= */


/* =========================================================
   01. SITE FOOTER
   Main footer wrapper.
   ========================================================= */

.site-footer {

    position: relative;

    width: 100%;

    background-color: var(--dark);

    color: var(--white);

    overflow: hidden;

}


/* =========================================================
   02. FOOTER MAIN
   Main footer content area.
   ========================================================= */

.footer-main {

    position: relative;

    z-index: 2;

    padding: 75px 0 65px;

}


/* =========================================================
   03. FOOTER GRID
   Four-column desktop layout.
   ========================================================= */

.footer-grid {

    display: grid;

    grid-template-columns:
        1.35fr 0.75fr 1fr 1.1fr;

    gap: 55px;

}


/* =========================================================
   04. FOOTER COLUMN
   ========================================================= */

.footer-column {

    min-width: 0;

}


/* =========================================================
   05. FOOTER LOGO
   ========================================================= */

.footer-logo {

    margin-bottom: 22px;

}


/* =========================================================
   06. FOOTER LOGO IMAGE
   SVG logo.
   ========================================================= */

.footer-logo img {

    display: block;
    filter: brightness(1) invert(1);

    width: auto;

    height: 62px;

    max-width: 230px;

    object-fit: contain;

    /*
     * If your SVG is dark/blue and does not appear
     * correctly on the dark footer, use the alternate
     * white logo SVG here.
     */

}


/* =========================================================
   07. FOOTER DESCRIPTION
   ========================================================= */

.footer-description {

    max-width: 320px;

    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   08. FOOTER SOCIAL
   ========================================================= */

.footer-social {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 25px;

}


/* =========================================================
   09. SOCIAL LINK
   ========================================================= */

.footer-social a {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 36px;

    height: 36px;

    border: 1px solid rgba(255, 255, 255, 0.20);

    color: var(--white);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;

}


/* =========================================================
   10. SOCIAL HOVER
   ========================================================= */

.footer-social a:hover {

    background-color: var(--primary);

    border-color: var(--primary);

    color: var(--white);

}


/* =========================================================
   11. FOOTER TITLE
   ========================================================= */

.footer-title {

    position: relative;

    margin: 0 0 25px;

    padding-bottom: 13px;

    color: var(--white);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 0.5px;

}


/* =========================================================
   12. FOOTER TITLE LINE
   ========================================================= */

.footer-title::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 35px;

    height: 2px;

    background-color: var(--primary);

}


/* =========================================================
   13. FOOTER TITLE RED DETAIL
   ========================================================= */

.footer-title::before {

    content: "";

    position: absolute;

    left: 40px;

    bottom: 0;

    width: 10px;

    height: 2px;

    background-color: var(--danger);

}


/* =========================================================
   14. FOOTER LINKS
   ========================================================= */

.footer-links {

    margin: 0;

    padding: 0;

    list-style: none;

}


/* =========================================================
   15. FOOTER LINK ITEM
   ========================================================= */

.footer-links li {

    margin-bottom: 12px;

}


/* =========================================================
   16. FOOTER LINK
   ========================================================= */

.footer-links a {

    position: relative;

    display: inline-flex;

    align-items: center;

    color: rgba(255, 255, 255, 0.62);

    font-size: 12px;

    text-decoration: none;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;

}


/* =========================================================
   17. FOOTER LINK ARROW
   ========================================================= */

.footer-links a::before {

    content: "→";

    position: absolute;

    left: -16px;

    opacity: 0;

    color: var(--primary);

    transition:
        opacity 0.25s ease,
        left 0.25s ease;

}


/* =========================================================
   18. FOOTER LINK HOVER
   ========================================================= */

.footer-links a:hover {

    padding-left: 16px;

    color: var(--white);

}


.footer-links a:hover::before {

    left: 0;

    opacity: 1;

}


/* =========================================================
   19. FOOTER CONTACT ITEM
   ========================================================= */

.footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 22px;

}


/* =========================================================
   20. FOOTER CONTACT ICON
   ========================================================= */

.footer-contact-icon {

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 30px;

    height: 30px;

    background-color: var(--primary);

    color: var(--white);

    font-size: 11px;

    font-weight: 800;

}


/* =========================================================
   21. FOOTER CONTACT TITLE
   ========================================================= */

.footer-contact-item strong {

    display: block;

    margin-bottom: 4px;

    color: var(--white);

    font-size: 11px;

    font-weight: 700;

}


/* =========================================================
   22. FOOTER CONTACT TEXT
   ========================================================= */

.footer-contact-item p {

    max-width: 220px;

    margin: 0;

    color: rgba(255, 255, 255, 0.60);

    font-size: 12px;

    line-height: 1.6;

}


/* =========================================================
   23. FOOTER CONTACT LINKS
   ========================================================= */

.footer-contact-item a {

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;

    text-decoration: none;

    transition:
        color 0.25s ease;

}


.footer-contact-item a:hover {

    color: var(--primary);

}


/* =========================================================
   24. FOOTER BOTTOM
   Copyright bar.
   ========================================================= */

.footer-bottom {

    position: relative;

    z-index: 2;

    border-top: 1px solid rgba(255, 255, 255, 0.10);

    background-color:
        rgba(0, 0, 0, 0.18);

}


/* =========================================================
   25. FOOTER BOTTOM INNER
   ========================================================= */

.footer-bottom-inner {

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


/* =========================================================
   26. COPYRIGHT
   ========================================================= */

.footer-bottom p {
    display: flex;
    gap: 10px;
    margin: 0;

    color: rgba(255, 255, 255, 0.45);

    font-size: 11px;

}


.footer-bottom p a {

    color: rgba(255, 255, 255, 0.45);

    text-decoration: underline;

    transition:
        color 0.25s ease;

}

/* =========================================================
   27. FOOTER LEGAL LINKS
   ========================================================= */

.footer-legal {

    display: flex;

    align-items: center;

    gap: 25px;

}


/* =========================================================
   28. FOOTER LEGAL LINK
   ========================================================= */

.footer-legal a {

    color: rgba(255, 255, 255, 0.45);

    font-size: 11px;

    text-decoration: none;

    transition:
        color 0.25s ease;

}


/* =========================================================
   29. FOOTER LEGAL HOVER
   ========================================================= */

.footer-legal a:hover {

    color: var(--white);

}


/* =========================================================
   30. FOOTER TOP ACCENT
   Industrial blue/red line.
   ========================================================= */

.site-footer::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background:
        linear-gradient(90deg,
            var(--primary) 0%,
            var(--primary) 70%,
            var(--danger) 70%,
            var(--danger) 100%);

}


/* =========================================================
   31. FOOTER DECORATIVE ELEMENT
   ========================================================= */

.site-footer::after {

    content: "";

    position: absolute;

    right: -130px;

    bottom: -160px;

    width: 400px;

    height: 400px;

    border: 70px solid rgba(0, 97, 172, 0.08);

    transform: rotate(45deg);

    pointer-events: none;

}


/* =========================================================
   32. TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .footer-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 45px 50px;

    }


    .footer-about {

        grid-column: 1 / -1;

    }

}


/* =========================================================
   33. MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .footer-main {

        padding: 60px 0 45px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .footer-about {

        grid-column: auto;

    }


    .footer-logo img {

        height: 55px;

        max-width: 210px;

    }


    .footer-description {

        max-width: 100%;

    }


    .footer-bottom-inner {

        min-height: auto;

        padding: 20px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }


    .footer-legal {

        flex-wrap: wrap;

        gap: 12px 20px;

    }

}


/* =========================================================
   34. SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .footer-social a {

        width: 34px;

        height: 34px;

    }


    .footer-title {

        margin-bottom: 20px;

    }

}

/* timeline css */

.journey-section {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 50px 40px 100px;
    overflow: visible;
}

.header {
    text-align: center;
    padding-bottom: 75px;
}

.title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.subtitle {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--primary-dark);
    text-transform: uppercase;
}

/* ===== DESKTOP HORIZONTAL ===== */
.timeline-desktop-wrap {
    width: 100%;
    overflow: visible;
    padding: 0 20px;
}

.timeline-desktop {
    position: relative;
    height: 360px;
    width: 100%;
    min-width: 100%;
}

.track {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, #c6a12e, #d1b14a, #c6a12e);
    transform: translateY(-50%);
    z-index: 1;
}

.track::before,
.track::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #c6a12e;
    border-radius: 50%;
    transform: translateY(-50%);
}

.track::before {
    left: 0
}

.track::after {
    right: 0
}

.item {
    position: absolute;
    top: 50%;
    width: 14.28%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item .content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.item.top .content {
    bottom: 65px;
}

.item.bottom .content {
    top: 65px;
}

/* Prevent side cut for first and last */
.item:first-child .content {
    transform: translateX(-20%);
}

.item:last-child .content {
    transform: translateX(-80%);
}

.item .line {
    position: absolute;
    left: 50%;
    width: 1.6px;
    background: #0f2341;
    transform: translateX(-50%);
}

.item.top .line {
    bottom: 12px;
    height: 52px;
}

.item.bottom .line {
    top: 12px;
    height: 52px;
}

.dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: #0f2341;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1.5px #0f2341;
}

.dot.gold {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2.5px solid #c6a12e;
    box-shadow: 0 0 0 3px rgba(198, 161, 46, 0.2);
}

.dot.gold::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: #0f2341;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.year {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    color: #102542;
}

.label {
    font-size: 13px;
    font-weight: 700;
    margin-top: 8px;
    line-height: 1.2;
    color: #102542;
}

.desc {
    font-size: 11.5px;
    font-weight: 400;
    margin-top: 6px;
    line-height: 1.45;
    color: #67707c;
    order: -1;
}

.item.bottom .desc {
    order: 2
}

.item.top .desc {
    order: -1
}

/* ===== MOBILE VERTICAL ===== */
.timeline-mobile {
    display: none;
    position: relative;
    padding-left: 70px;
    margin-top: 10px;
}

.track-v {
    position: absolute;
    left: 24px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, #c6a12e, #d1b14a, #c6a12e);
}

.track-v::before,
.track-v::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #c6a12e;
    border-radius: 50%;
    transform: translateX(-50%);
}

.track-v::before {
    top: -4px
}

.track-v::after {
    bottom: -4px
}

.m-item {
    position: relative;
    margin-bottom: 40px;
}

.m-item:last-child {
    margin-bottom: 0
}

.m-dot {
    position: absolute;
    left: -48px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: #0f2341;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1.5px #0f2341;
}

.m-dot.gold {
    width: 20px;
    height: 20px;
    left: -51px;
    top: 1px;
    background: #fff;
    border: 2.5px solid #c6a12e;
}

.m-dot.gold::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #0f2341;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.m-line {
    position: absolute;
    left: -32px;
    top: 10px;
    width: 24px;
    height: 1.5px;
    background: #0f2341;
}

.m-year {
    font-size: 22px;
    font-weight: 800;
    color: #102542;
}

.m-label {
    font-size: 14px;
    font-weight: 700;
    margin-top: 6px;
    color: #102542;
}

.m-desc {
    font-size: 13px;
    color: #5f6b78;
    margin-top: 5px;
    line-height: 1.5;
    max-width: 330px;
}

/* ===== RESPONSIVE ===== */
@media (max-width:1280px) {
    .timeline-desktop-wrap {
        overflow-x: auto;
        padding-bottom: 20px;
        margin-left: -40px;
        margin-right: -40px;
        padding-left: 40px;
        padding-right: 40px;
        -webkit-overflow-scrolling: touch;
    }

    .timeline-desktop {
        min-width: 1100px;
    }

    .timeline-desktop-wrap::-webkit-scrollbar {
        height: 5px
    }

    .timeline-desktop-wrap::-webkit-scrollbar-thumb {
        background: #d1b14a;
        border-radius: 4px
    }
}

@media (max-width:767px) {
    .journey-section {
        padding: 20px 20px 70px;
        overflow: hidden;
    }

    .header {
        padding-bottom: 28px
    }

    .title {
        font-size: 30px
    }

    .subtitle {
        font-size: 11px;
        padding: 0 20px;
        line-height: 1.6
    }

    .timeline-desktop-wrap {
        display: none
    }

    .timeline-mobile {
        display: block
    }
}

/* =========================================================
   SECTION 07: CERTIFICATIONS
   Company certifications showcase
   ========================================================= */


/* =========================================================
   01. CERTIFICATIONS SECTION
   Main section wrapper.
   ========================================================= */

.certifications-section {

    position: relative;

    width: 100%;

    padding: 100px 0 95px;

    background-color: #f7f8f9;

    overflow: hidden;

}


/* =========================================================
   02. CERTIFICATIONS HEADER
   Centered heading area.
   ========================================================= */

.certifications-header {

    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;

}


/* =========================================================
   03. CERTIFICATIONS EYEBROW
   ========================================================= */

.certifications-eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-bottom: 17px;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


/* =========================================================
   04. EYEBROW LINES
   ========================================================= */

.certifications-eyebrow span {

    width: 35px;

    height: 2px;

    background-color: var(--danger);

}


/* =========================================================
   05. CERTIFICATIONS TITLE
   ========================================================= */

.certifications-title {

    margin: 0;

    color: var(--primary-dark);

    font-size: clamp(36px, 4vw, 54px);

    font-weight: 400;

    line-height: 1.1;

    letter-spacing: -1px;

}


/* =========================================================
   06. TITLE ACCENT
   ========================================================= */

.certifications-title span {

    display: block;

    color: var(--primary);

    font-weight: 800;

}


/* =========================================================
   07. CERTIFICATIONS DESCRIPTION
   ========================================================= */

.certifications-description {

    max-width: 700px;

    margin: 20px auto 0;

    color: #666666;

    font-size: 15px;

    line-height: 1.75;

}


/* =========================================================
   08. CERTIFICATION GRID
   Three certificates per row.
   ========================================================= */

.certifications-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 30px;

}


/* =========================================================
   09. CERTIFICATE CARD
   ========================================================= */

.certificate-card {

    position: relative;

    background-color: var(--white);

    border: 1px solid #e3e6e9;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.06);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


/* =========================================================
   10. CERTIFICATE CARD HOVER
   ========================================================= */

.certificate-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.12);

}


/* =========================================================
   11. CERTIFICATE IMAGE
   Image container.
   ========================================================= */

.certificate-image {

    position: relative;

    width: 100%;

    height: 420px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    background-color: #ffffff;

    overflow: hidden;

}


/* =========================================================
   12. CERTIFICATE IMAGE ELEMENT
   ========================================================= */

.certificate-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;

    transition:
        transform 0.4s ease;

}


/* =========================================================
   13. CERTIFICATE IMAGE HOVER
   ========================================================= */

.certificate-card:hover .certificate-image img {

    transform: scale(1.035);

}


/* =========================================================
   14. CERTIFICATE INFO
   Bottom information strip.
   ========================================================= */

.certificate-info {

    display: flex;

    align-items: center;

    gap: 15px;

    min-height: 65px;

    padding: 12px 20px;

    border-top: 1px solid #e6e6e6;

    background-color: var(--white);

}


/* =========================================================
   15. CERTIFICATE NUMBER
   ========================================================= */

.certificate-number {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 34px;

    height: 34px;

    background-color: var(--primary);

    color: var(--white);

    font-size: 10px;

    font-weight: 800;

}


/* =========================================================
   16. CERTIFICATE LABEL
   ========================================================= */

.certificate-label {

    color: var(--primary-dark);

    font-size: 12px;

    font-weight: 700;

    line-height: 1.4;

}


/* =========================================================
   17. CERTIFICATE CARD TOP ACCENT
   ========================================================= */

.certificate-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    z-index: 3;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(90deg,
            var(--primary) 0%,
            var(--primary) 75%,
            var(--danger) 75%,
            var(--danger) 100%);

}


/* =========================================================
   18. CERTIFICATIONS BOTTOM ACCENT
   ========================================================= */

.certifications-accent {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 28%;

    height: 4px;

    background-color: var(--primary);

}


/* =========================================================
   19. TABLET
   Two certificates per row.
   ========================================================= */

@media (max-width: 900px) {

    .certifications-section {

        padding: 80px 0 75px;

    }


    .certifications-header {

        margin-bottom: 40px;

    }


    .certifications-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 25px;

    }


    .certificate-image {

        height: 390px;

    }

}


/* =========================================================
   20. MOBILE
   One certificate per row.
   ========================================================= */

@media (max-width: 600px) {

    .certifications-section {

        padding: 65px 0 60px;

    }


    .certifications-header {

        margin-bottom: 32px;

    }


    .certifications-eyebrow {

        font-size: 9px;

        letter-spacing: 2px;

    }


    .certifications-eyebrow span {

        width: 25px;

    }


    .certifications-title {

        font-size: 35px;

    }


    .certifications-description {

        font-size: 14px;

        line-height: 1.65;

    }


    .certifications-grid {

        grid-template-columns: 1fr;

        gap: 22px;

    }


    .certificate-image {

        height: auto;

        min-height: 400px;

    }

}


/* =========================================================
   21. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .certificate-image {

        min-height: 350px;

        padding: 20px;

    }


    .certificate-info {

        padding: 10px 15px;

    }

}

/* =========================================================
   SECTION 08: SAND CASTING
   Industrial sand casting capabilities section
   ========================================================= */


/* =========================================================
   01. SAND CASTING SECTION
   Main section wrapper.
   ========================================================= */

.sand-casting-section {

    position: relative;

    width: 100%;

    padding: 105px 0 110px;

    background-color: #f7f8f9;

    overflow: hidden;

}


/* =========================================================
   02. SECTION HEADER
   ========================================================= */

.sand-casting-header {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: 0 auto 65px;

    text-align: center;

}


/* =========================================================
   03. SECTION EYEBROW
   ========================================================= */

.sand-casting-eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-bottom: 16px;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


/* =========================================================
   04. EYEBROW LINES
   ========================================================= */

.sand-eyebrow-line {

    width: 35px;

    height: 2px;

    background-color: var(--danger);

}


/* =========================================================
   05. MAIN TITLE
   ========================================================= */

.sand-casting-title {

    margin: 0;

    color: var(--primary-dark);

    font-size: clamp(42px, 5vw, 64px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -1.5px;

}


/* =========================================================
   06. TITLE ACCENT
   ========================================================= */

.sand-casting-title span {

    color: var(--primary);

    font-weight: 800;

}


/* =========================================================
   07. HEADER DESCRIPTION
   ========================================================= */

.sand-casting-intro {

    max-width: 720px;

    margin: 20px auto 0;

    color: #666666;

    font-size: 15px;

    line-height: 1.75;

}


/* =========================================================
   08. SAND CASTING CONTENT
   Main feature rows.
   ========================================================= */

.sand-casting-content {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 55px;

}


/* =========================================================
   09. SAND FEATURE
   Two-column feature row.
   ========================================================= */

.sand-feature {

    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(0, 1fr);

    align-items: stretch;

    background-color: var(--white);

    border: 1px solid #e2e5e8;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.06);

}


/* =========================================================
   10. FEATURE IMAGE
   ========================================================= */

.sand-feature-image {

    position: relative;

    min-height: 390px;

    overflow: hidden;

    background-color: var(--primary-dark);

}


/* =========================================================
   11. FEATURE IMAGE ELEMENT
   ========================================================= */

.sand-feature-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.6s ease;

}


/* =========================================================
   12. IMAGE HOVER
   ========================================================= */

.sand-feature:hover .sand-feature-image img {

    transform: scale(1.05);

}


/* =========================================================
   13. IMAGE OVERLAY
   ========================================================= */

.sand-feature-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 68, 121, 0.02) 40%,
            rgba(0, 35, 62, 0.38) 100%);

    pointer-events: none;

}


/* =========================================================
   14. FEATURE NUMBER
   Industrial number badge.
   ========================================================= */

.sand-feature-number {

    position: absolute;

    top: 22px;

    left: 22px;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 58px;

    height: 58px;

    background-color: var(--primary);

    color: var(--white);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;

}


/* =========================================================
   15. FEATURE NUMBER RED DETAIL
   ========================================================= */

.sand-feature-number::after {

    content: "";

    position: absolute;

    right: -6px;

    bottom: -6px;

    width: 17px;

    height: 17px;

    background-color: var(--danger);

}


/* =========================================================
   16. FEATURE CONTENT
   ========================================================= */

.sand-feature-content {

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 55px 60px;

}


/* =========================================================
   17. FEATURE LABEL
   ========================================================= */

.sand-feature-label {

    margin-bottom: 13px;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


/* =========================================================
   18. FEATURE HEADING
   ========================================================= */

.sand-feature-content h3 {

    margin: 0;

    color: var(--primary-dark);

    font-size: clamp(27px, 3vw, 38px);

    font-weight: 400;

    line-height: 1.12;

    letter-spacing: -0.5px;

}


/* =========================================================
   19. FEATURE HEADING ACCENT
   ========================================================= */

.sand-feature-content h3 span {

    display: block;

    color: var(--primary);

    font-weight: 800;

}


/* =========================================================
   20. FEATURE ACCENT LINE
   ========================================================= */

.sand-feature-line {

    position: relative;

    width: 60px;

    height: 3px;

    margin: 22px 0 20px;

    background-color: var(--primary);

}


/* =========================================================
   21. FEATURE ACCENT RED DETAIL
   ========================================================= */

.sand-feature-line::after {

    content: "";

    position: absolute;

    left: 68px;

    top: 0;

    width: 15px;

    height: 3px;

    background-color: var(--danger);

}


/* =========================================================
   22. FEATURE DESCRIPTION
   ========================================================= */

.sand-feature-content p {

    max-width: 600px;

    margin: 0 0 12px;

    color: #5c5c5c;

    font-size: 14px;

    line-height: 1.75;

}


/* =========================================================
   23. FEATURE POINT
   ========================================================= */

.sand-feature-point {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 18px;

    color: var(--primary-dark);

    font-size: 12px;

}


/* =========================================================
   24. FEATURE POINT ICON
   ========================================================= */

.sand-feature-point span {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 25px;

    height: 25px;

    background-color: var(--primary);

    color: var(--white);

    font-size: 11px;

    font-weight: 800;

}


/* =========================================================
   25. FEATURE POINT TEXT
   ========================================================= */

.sand-feature-point strong {

    font-weight: 800;

}


/* =========================================================
   26. FEATURE ONE SPECIAL ACCENT
   ========================================================= */

.sand-feature-one {

    border-left: 4px solid var(--primary);

}


/* =========================================================
   27. FEATURE TWO SPECIAL ACCENT
   ========================================================= */

.sand-feature-two {

    border-right: 4px solid var(--primary);

}


/* =========================================================
   28. BACKGROUND PATTERN
   Decorative industrial geometry.
   ========================================================= */

.sand-background-pattern {

    position: absolute;

    right: -110px;

    top: 180px;

    z-index: 1;

    display: grid;

    grid-template-columns:
        repeat(3, 70px);

    gap: 12px;

    opacity: 0.06;

    transform: rotate(45deg);

    pointer-events: none;

}


/* =========================================================
   29. PATTERN BLOCKS
   ========================================================= */

.sand-background-pattern span {

    width: 70px;

    height: 70px;

    border: 5px solid var(--primary);

}


/* =========================================================
   30. TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .sand-casting-section {

        padding: 85px 0 90px;

    }


    .sand-casting-header {

        margin-bottom: 50px;

    }


    .sand-feature-content {

        padding: 40px;

    }


    .sand-feature-image {

        min-height: 350px;

    }


    .sand-feature-content h3 {

        font-size: 30px;

    }

}


/* =========================================================
   31. MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .sand-casting-section {

        padding: 70px 0;

    }


    .sand-casting-header {

        margin-bottom: 40px;

    }


    .sand-casting-intro {

        font-size: 14px;

    }


    .sand-casting-content {

        gap: 30px;

    }


    .sand-feature {

        grid-template-columns: 1fr;

    }


    /* Image first for both rows */

    .sand-feature-one .sand-feature-image {

        order: 1;

    }


    .sand-feature-one .sand-feature-content {

        order: 2;

    }


    .sand-feature-two .sand-feature-image {

        order: 1;

    }


    .sand-feature-two .sand-feature-content {

        order: 2;

    }


    .sand-feature-image {

        min-height: 300px;

    }


    .sand-feature-content {

        padding: 35px 30px 40px;

    }


    .sand-feature-content h3 {

        font-size: 28px;

    }


    .sand-feature-one {

        border-left: 0;

        border-top: 4px solid var(--primary);

    }


    .sand-feature-two {

        border-right: 0;

        border-top: 4px solid var(--primary);

    }


    .sand-background-pattern {

        display: none;

    }

}


/* =========================================================
   32. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .sand-casting-section {

        padding: 60px 0;

    }


    .sand-casting-title {

        font-size: 40px;

    }


    .sand-feature-image {

        min-height: 240px;

    }


    .sand-feature-number {

        top: 15px;

        left: 15px;

        width: 50px;

        height: 50px;

        font-size: 11px;

    }


    .sand-feature-content {

        padding: 30px 22px 35px;

    }


    .sand-feature-label {

        font-size: 9px;

        letter-spacing: 1.5px;

    }


    .sand-feature-content h3 {

        font-size: 25px;

    }


    .sand-feature-content p {

        font-size: 13px;

        line-height: 1.7;

    }

}

/* =========================================================
   FIRE PROTECTION PRODUCT GALLERY
   Product images displayed below feature content
   ========================================================= */


/* =========================================================
   01. PRODUCT GALLERY
   Four product images in one row.
   ========================================================= */

.fire-product-gallery {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    align-items: center;

    gap: 15px;

    width: 100%;

    margin-top: 28px;

}


/* =========================================================
   02. PRODUCT IMAGE WRAPPER
   ========================================================= */

.fire-product-image {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 105px;

    padding: 8px;

    background-color: #ffffff;

    overflow: hidden;

}


/* =========================================================
   03. PRODUCT IMAGE
   ========================================================= */

.fire-product-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;

    transition:
        transform 0.35s ease;

}


/* =========================================================
   04. PRODUCT IMAGE HOVER
   ========================================================= */

.fire-product-image:hover img {

    transform: scale(1.08);

}


/* =========================================================
   05. PRODUCT IMAGE BOTTOM ACCENT
   ========================================================= */

.fire-product-image::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 28px;

    height: 3px;

    background-color: var(--primary);

}


/* =========================================================
   06. PRODUCT IMAGE RED ACCENT
   ========================================================= */

.fire-product-image::before {

    content: "";

    position: absolute;

    left: 32px;

    bottom: 0;

    width: 8px;

    height: 3px;

    background-color: var(--danger);

}


/* =========================================================
   07. TABLET
   ========================================================= */

@media (max-width: 900px) {

    .fire-product-gallery {

        gap: 10px;

    }


    .fire-product-image {

        height: 90px;

    }

}


/* =========================================================
   08. MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .fire-product-gallery {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;

        margin-top: 25px;

    }


    .fire-product-image {

        height: 110px;

    }

}


/* =========================================================
   09. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .fire-product-gallery {

        gap: 8px;

    }


    .fire-product-image {

        height: 90px;

        padding: 5px;

    }

}

/* =========================================================
   SECTION 12: PLUMBING & DRAINAGE
   Plumbing and drainage product showcase
   ========================================================= */


/* =========================================================
   01. PLUMBING SECTION
   ========================================================= */

.plumbing-section {

    position: relative;

    width: 100%;

    padding: 100px 0 110px;

    background-color: #f7f8f9;

    overflow: hidden;

}


/* =========================================================
   02. PLUMBING HEADER
   ========================================================= */

.plumbing-header {

    position: relative;

    z-index: 2;

    max-width: 800px;

    margin: 0 auto 55px;

    text-align: center;

}


/* =========================================================
   03. PLUMBING EYEBROW
   ========================================================= */

.plumbing-eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-bottom: 16px;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


/* =========================================================
   04. EYEBROW LINES
   ========================================================= */

.plumbing-eyebrow span {

    width: 35px;

    height: 2px;

    background-color: var(--danger);

}


/* =========================================================
   05. PLUMBING TITLE
   ========================================================= */

.plumbing-title {

    margin: 0;

    color: var(--primary-dark);

    font-size: clamp(38px, 4.5vw, 58px);

    font-weight: 400;

    line-height: 1.1;

    letter-spacing: -1px;

}


/* =========================================================
   06. TITLE ACCENT
   ========================================================= */

.plumbing-title span {

    color: var(--primary);

    font-weight: 800;

}


/* =========================================================
   07. PLUMBING INTRO
   ========================================================= */

.plumbing-intro {

    max-width: 680px;

    margin: 20px auto 0;

    color: #666666;

    font-size: 14px;

    line-height: 1.75;

}


/* =========================================================
   08. PRODUCT GRID
   Three products per row.
   ========================================================= */

.plumbing-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 30px;

}


/* =========================================================
   09. PRODUCT CARD
   ========================================================= */

.plumbing-card {

    position: relative;

    background-color: var(--white);

    border: 1px solid #e3e6e9;

    overflow: hidden;

    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.055);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


/* =========================================================
   10. PRODUCT CARD HOVER
   ========================================================= */

.plumbing-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.12);

}


/* =========================================================
   11. PRODUCT IMAGE WRAPPER
   ========================================================= */

.plumbing-card-image {

    position: relative;

    width: 100%;

    height: 260px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background-color: #ffffff;

    overflow: hidden;

}


/* =========================================================
   12. PRODUCT IMAGE
   ========================================================= */

.plumbing-card-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;

    transition:
        transform 0.45s ease;

}


/* =========================================================
   13. IMAGE HOVER
   ========================================================= */

.plumbing-card:hover .plumbing-card-image img {

    transform: scale(1.07);

}


/* =========================================================
   14. PRODUCT NUMBER
   ========================================================= */

.plumbing-number {

    position: absolute;

    top: 15px;

    left: 15px;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    background-color: var(--primary);

    color: var(--white);

    font-size: 10px;

    font-weight: 800;

}


/* =========================================================
   15. PRODUCT NUMBER RED DETAIL
   ========================================================= */

.plumbing-number::after {

    content: "";

    position: absolute;

    right: -5px;

    bottom: -5px;

    width: 12px;

    height: 12px;

    background-color: var(--danger);

}


/* =========================================================
   16. PRODUCT TITLE
   ========================================================= */

.plumbing-card h3 {

    position: relative;

    margin: 0;

    padding: 20px 22px 22px;

    border-top: 1px solid #e8e8e8;

    color: var(--primary-dark);

    font-size: 18px;

    font-weight: 800;

    line-height: 1.3;

    text-transform: uppercase;

}


/* =========================================================
   17. PRODUCT TITLE ACCENT
   ========================================================= */

.plumbing-card h3::before {

    content: "";

    display: inline-block;

    width: 25px;

    height: 3px;

    margin-right: 9px;

    vertical-align: middle;

    background-color: var(--primary);

}


/* =========================================================
   18. CARD TOP INDUSTRIAL ACCENT
   ========================================================= */

.plumbing-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    z-index: 3;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(90deg,
            var(--primary) 0%,
            var(--primary) 78%,
            var(--danger) 78%,
            var(--danger) 100%);

}


/* =========================================================
   19. DECORATIVE BACKGROUND PATTERN
   ========================================================= */

.plumbing-pattern {

    position: absolute;

    right: -100px;

    bottom: -100px;

    z-index: 1;

    display: grid;

    grid-template-columns:
        repeat(3, 70px);

    gap: 12px;

    opacity: 0.055;

    transform: rotate(45deg);

    pointer-events: none;

}


/* =========================================================
   20. PATTERN BLOCKS
   ========================================================= */

.plumbing-pattern span {

    width: 70px;

    height: 70px;

    border: 5px solid var(--primary);

}


/* =========================================================
   21. TABLET
   Two products per row.
   ========================================================= */

@media (max-width: 900px) {

    .plumbing-section {

        padding: 80px 0 85px;

    }


    .plumbing-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 25px;

    }


    .plumbing-card-image {

        height: 250px;

    }

}


/* =========================================================
   22. MOBILE
   One product per row.
   ========================================================= */

@media (max-width: 600px) {

    .plumbing-section {

        padding: 65px 0 70px;

    }


    .plumbing-header {

        margin-bottom: 35px;

    }


    .plumbing-grid {

        grid-template-columns: 1fr;

        gap: 22px;

    }


    .plumbing-card-image {

        height: 280px;

    }


    .plumbing-card h3 {

        font-size: 16px;

    }

}


/* =========================================================
   23. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .plumbing-card-image {

        height: 240px;

        padding: 15px;

    }


    .plumbing-number {

        width: 34px;

        height: 34px;

        top: 12px;

        left: 12px;

    }


    .plumbing-card h3 {

        padding: 17px 18px;

        font-size: 14px;

    }


    .plumbing-pattern {

        display: none;

    }

}

/* =========================================================
   CONTACT PAGE
   Industrial Contact Page Styling
   ========================================================= */


/* =========================================================
   01. CONTACT PAGE
   Main page wrapper.
   ========================================================= */

.contact-page {

    width: 100%;

    background-color: #f7f8f9;

}


/* =========================================================
   02. CONTACT PAGE HERO
   Page title banner.
   ========================================================= */

.contact-page-hero {

    position: relative;

    width: 100%;

    min-height: 360px;

    display: flex;

    align-items: center;

    background-color: var(--primary-dark);

    overflow: hidden;

}


/* =========================================================
   03. HERO DECORATIVE BACKGROUND
   ========================================================= */

.contact-page-hero::before {

    content: "";

    position: absolute;

    top: -180px;

    right: -100px;

    width: 500px;

    height: 500px;

    border: 75px solid rgba(0, 97, 172, 0.18);

    transform: rotate(45deg);

    pointer-events: none;

}


/* =========================================================
   04. HERO RED ACCENT
   ========================================================= */

.contact-page-hero::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 30%;

    height: 5px;

    background-color: var(--danger);

}


/* =========================================================
   05. HERO CONTENT
   ========================================================= */

.contact-page-hero-content {

    position: relative;

    z-index: 2;

    max-width: 760px;

    padding: 75px 0;

}


/* =========================================================
   06. HERO EYEBROW
   ========================================================= */

.contact-page-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: #63b4ed;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


/* =========================================================
   07. HERO EYEBROW LINE
   ========================================================= */

.contact-page-eyebrow span {

    width: 40px;

    height: 2px;

    background-color: var(--danger);

}


/* =========================================================
   08. HERO HEADING
   ========================================================= */

.contact-page-hero h1 {

    margin: 0;

    color: var(--white);

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -1.5px;

}


/* =========================================================
   09. HERO HEADING ACCENT
   ========================================================= */

.contact-page-hero h1 span {

    color: #63b4ed;

    font-weight: 800;

}


/* =========================================================
   10. HERO DESCRIPTION
   ========================================================= */

.contact-page-hero p {

    max-width: 650px;

    margin: 22px 0 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;

    line-height: 1.75;

}


/* =========================================================
   11. CONTACT MAIN SECTION
   ========================================================= */

.contact-page-section {

    position: relative;

    width: 100%;

    padding: 100px 0;

    background-color: #f7f8f9;

}


/* =========================================================
   12. CONTACT GRID
   Two-column layout.
   ========================================================= */

.contact-page-grid {

    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 80px;

    align-items: start;

}


/* =========================================================
   13. CONTACT INFORMATION
   ========================================================= */

.contact-page-info {

    padding-top: 15px;

}


/* =========================================================
   14. CONTACT LABEL
   ========================================================= */

.contact-page-label {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


/* =========================================================
   15. CONTACT LABEL LINE
   ========================================================= */

.contact-page-label::before {

    content: "";

    width: 35px;

    height: 2px;

    background-color: var(--danger);

}


/* =========================================================
   16. CONTACT INFORMATION HEADING
   ========================================================= */

.contact-page-info h2 {

    margin: 0;

    color: var(--primary-dark);

    font-size: clamp(38px, 4vw, 52px);

    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -1px;

}


/* =========================================================
   17. CONTACT INFORMATION HEADING ACCENT
   ========================================================= */

.contact-page-info h2 span {

    display: block;

    color: var(--primary);

    font-weight: 800;

}


/* =========================================================
   18. CONTACT DESCRIPTION
   ========================================================= */

.contact-page-description {

    max-width: 500px;

    margin: 22px 0 40px;

    color: #666666;

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   19. CONTACT INFO ITEM
   ========================================================= */

.contact-info-item {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 25px;

}


/* =========================================================
   20. CONTACT INFO ICON
   ========================================================= */

.contact-info-icon {

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    background-color: var(--primary);

    color: var(--white);

    font-size: 12px;

    font-weight: 800;

}


/* =========================================================
   21. CONTACT INFO TEXT LABEL
   ========================================================= */

.contact-info-item span {

    display: block;

    margin-bottom: 5px;

    color: var(--primary);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


/* =========================================================
   22. CONTACT INFO PARAGRAPH
   ========================================================= */

.contact-info-item p {

    max-width: 350px;

    margin: 0;

    color: #555555;

    font-size: 13px;

    line-height: 1.6;

}


/* =========================================================
   23. CONTACT INFO LINKS
   ========================================================= */

.contact-info-item a {

    color: var(--primary-dark);

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.25s ease;

}


.contact-info-item a:hover {

    color: var(--primary);

}


/* =========================================================
   24. CONTACT FORM WRAPPER
   ========================================================= */

.contact-page-form-wrapper {

    position: relative;

    padding: 45px;

    background-color: var(--white);

    border: 1px solid #e1e5e8;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.07);

}


/* =========================================================
   25. FORM TOP ACCENT
   ========================================================= */

.contact-page-form-wrapper::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background:
        linear-gradient(90deg,
            var(--primary) 0%,
            var(--primary) 75%,
            var(--danger) 75%,
            var(--danger) 100%);

}


/* =========================================================
   26. FORM HEADER
   ========================================================= */

.contact-form-header {

    margin-bottom: 30px;

}


/* =========================================================
   27. FORM HEADER LABEL
   ========================================================= */

.contact-form-header span {

    display: block;

    margin-bottom: 9px;

    color: var(--primary);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


/* =========================================================
   28. FORM HEADER HEADING
   ========================================================= */

.contact-form-header h2 {

    margin: 0;

    color: var(--primary-dark);

    font-size: 26px;

    font-weight: 800;

    line-height: 1.2;

}


/* =========================================================
   29. CONTACT FORM
   Two-column form layout.
   ========================================================= */

.contact-page-form {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;

}


/* =========================================================
   30. FORM GROUP
   ========================================================= */

.contact-form-group {

    min-width: 0;

}


/* =========================================================
   31. FULL WIDTH FORM GROUP
   ========================================================= */

.contact-form-full {

    grid-column: 1 / -1;

}


/* =========================================================
   32. FORM LABEL
   ========================================================= */

.contact-form-group label {

    display: block;

    margin-bottom: 8px;

    color: var(--primary-dark);

    font-size: 11px;

    font-weight: 800;

}


/* =========================================================
   33. FORM INPUT
   ========================================================= */

.contact-form-group input,
.contact-form-group textarea {

    display: block;

    width: 100%;

    border: 1px solid #dfe3e6;

    border-radius: 0;

    outline: none;

    background-color: #fafbfc;

    color: var(--primary-dark);

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;

}


/* =========================================================
   34. INPUT PADDING
   ========================================================= */

.contact-form-group input {

    height: 50px;

    padding: 0 15px;

}


/* =========================================================
   35. TEXTAREA
   ========================================================= */

.contact-form-group textarea {

    min-height: 145px;

    padding: 15px;

    resize: vertical;

    line-height: 1.6;

}


/* =========================================================
   36. FORM PLACEHOLDER
   ========================================================= */

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {

    color: #999999;

}


/* =========================================================
   37. FORM FOCUS
   ========================================================= */

.contact-form-group input:focus,
.contact-form-group textarea:focus {

    border-color: var(--primary);

    background-color: var(--white);

    box-shadow:
        0 0 0 3px rgba(0, 97, 172, 0.08);

}


/* =========================================================
   38. SUBMIT AREA
   ========================================================= */

.contact-form-submit {

    display: flex;

    align-items: center;

}


/* =========================================================
   39. SUBMIT BUTTON
   ========================================================= */

.contact-submit-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    min-width: 190px;

    height: 55px;

    padding: 0 25px;

    border: 0;

    border-radius: 0;

    outline: none;

    cursor: pointer;

    background-color: var(--danger);

    color: var(--white);

    font-family: inherit;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;

}


/* =========================================================
   40. SUBMIT BUTTON HOVER
   ========================================================= */

.contact-submit-button:hover {

    background-color: var(--primary);

    transform: translateY(-3px);

}


/* =========================================================
   41. SUBMIT ARROW
   ========================================================= */

.contact-submit-button span {

    font-size: 19px;

    line-height: 1;

    transition:
        transform 0.25s ease;

}


.contact-submit-button:hover span {

    transform: translateX(5px);

}


/* =========================================================
   42. MAP SECTION
   ========================================================= */
/* =========================================================
   CONTACT MAP SECTION
   Responsive Google Maps section
   ========================================================= */

.contact-map-section {

    width: 100%;

    padding: 0 0 100px;

    background-color: #f7f8f9;

}


/* =========================================================
   MAP WRAPPER
   Main map container.
   ========================================================= */

.contact-map-wrapper {

    position: relative;

    width: 100%;

    background-color: var(--white);

    border: 1px solid #e1e5e8;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.07);

    overflow: hidden;

}


/* =========================================================
   MAP TOP ACCENT
   ========================================================= */

.contact-map-wrapper::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    z-index: 3;

    width: 100%;

    height: 4px;

    background:
        linear-gradient(90deg,
            var(--primary) 0%,
            var(--primary) 75%,
            var(--danger) 75%,
            var(--danger) 100%);

}


/* =========================================================
   MAP HEADER
   ========================================================= */

.contact-map-header {

    padding: 35px 40px 25px;

    background-color: var(--white);

}


/* =========================================================
   MAP HEADER LABEL
   ========================================================= */

.contact-map-header span {

    display: block;

    margin-bottom: 8px;

    color: var(--primary);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


/* =========================================================
   MAP HEADER TITLE
   ========================================================= */

.contact-map-header h2 {

    margin: 0;

    color: var(--primary-dark);

    font-size: 30px;

    font-weight: 800;

    line-height: 1.2;

}


/* =========================================================
   GOOGLE MAP CONTAINER
   Responsive aspect ratio.
   ========================================================= */

.contact-map {

    position: relative;

    width: 100%;

    aspect-ratio: 21 / 9;

    min-height: 350px;

    overflow: hidden;

}


/* =========================================================
   GOOGLE MAP IFRAME
   ========================================================= */

.contact-map iframe {

    display: block;

    width: 100%;

    height: 100%;

    border: 0;

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .contact-map-section {

        padding-bottom: 80px;

    }


    .contact-map-header {

        padding: 30px;

    }


    .contact-map {

        aspect-ratio: 16 / 8;

        min-height: 320px;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .contact-map-section {

        padding-bottom: 60px;

    }


    .contact-map-header {

        padding: 25px 20px 20px;

    }


    .contact-map-header h2 {

        font-size: 25px;

    }


    .contact-map {

        aspect-ratio: 4 / 3;

        min-height: 300px;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .contact-map-header {

        padding: 22px 17px 18px;

    }


    .contact-map-header h2 {

        font-size: 23px;

    }


    .contact-map {

        aspect-ratio: 1 / 1;

        min-height: 280px;

    }

}

/* =========================================================
   49. TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .contact-page-grid {

        gap: 45px;

    }


    .contact-page-form-wrapper {

        padding: 35px;

    }

}


/* =========================================================
   50. MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .contact-page-hero {

        min-height: auto;

    }


    .contact-page-hero-content {

        padding: 65px 0;

    }


    .contact-page-section {

        padding: 70px 0;

    }


    .contact-page-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .contact-page-info {

        padding-top: 0;

    }


    .contact-page-form-wrapper {

        padding: 30px 25px;

    }



}


/* =========================================================
   51. SMALL MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .contact-page-hero-content {

        padding: 55px 0;

    }


    .contact-page-hero h1 {

        font-size: 42px;

    }


    .contact-page-hero p {

        font-size: 14px;

    }


    .contact-page-section {

        padding: 60px 0;

    }


    .contact-page-info h2 {

        font-size: 38px;

    }


    .contact-page-form-wrapper {

        padding: 30px 20px;

    }


    .contact-page-form {

        grid-template-columns: 1fr;

        gap: 18px;

    }


    .contact-form-full {

        grid-column: auto;

    }


    .contact-form-submit {

        width: 100%;

    }


    .contact-submit-button {

        width: 100%;

    }




}


/* =========================================================
   52. EXTRA SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .contact-page-hero h1 {

        font-size: 36px;

    }


    .contact-page-form-wrapper {

        padding: 25px 17px;

    }

}