/* general */

/* fonts

font-family: "outfit", sans-serif;
font-weight: 300;
font-style: normal;

font-family: "outfit", sans-serif;
font-weight: 300;
font-style: italic;

font-family: "outfit", sans-serif;
font-weight: 400;
font-style: normal;

font-family: "outfit", sans-serif;
font-weight: 400;
font-style: italic;

font-family: "outfit", sans-serif;
font-weight: 500;
font-style: italic;

font-family: "outfit", sans-serif;
font-weight: 500;
font-style: italic;

font-family: "outfit", sans-serif;
font-weight: 800;
font-style: italic;

font-family: "outfit", sans-serif;
font-weight: 800;
font-style: italic;
*/

:root {
    --primary-red: #E52217;
    --text-dark: #212121;
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s ease;
}

@font-face {
    font-family: 'Outfit';
    src: url('/_resources/fonts/outfit-300.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('/_resources/fonts/outfit-800.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Outfit', 
                 -apple-system, 
                 BlinkMacSystemFont, 
                 'Segoe UI', 
                 'Roboto', 
                 'Helvetica Neue', 
                 Arial, 
                 sans-serif;
    font-weight: 300;
    padding-top: 87px; /* Space for fixed menu */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}


html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 87px; /* Accounts for fixed menu */
}



/* Menu */
    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 7%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 3px solid rgba(0, 0, 0, 0.9);
        z-index: 99;
        transition: all 0.3s ease;
    }

    .menu .logo {
        height: 54px;
        width: auto;
    }

    .menu .nav-links {
        display: flex;
        list-style: none;
        gap: 48px;
        margin-left: auto; /* Push to the right */
        margin-right: 0;
    }

    .menu .nav-links a {
        text-decoration: none;
        color: #222;
        font-weight: 800;
        font-size: 16px;
        position: relative;
        transition: opacity 0.3s ease;
    }

    .menu .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #E52217;
        transition: width 0.3s ease;
    }

    .menu .nav-links a:hover {
        color: #E52217;
    }

    .menu .nav-links a:active {
        color: #E52217;
    }

    .menu .nav-links a:hover::after {
        width: 100%;
    }

    .menu .nav-links .contact-link {
        color: #E52217;
    }

    .menu .nav-links .contact-link:hover {
        color: #222;
    }

    .menu .nav-links .contact-link:active {
        color: #222;
    }

    .menu .nav-links .contact-link::after {
        background-color: #222; 
    }

    .menu .cta-button span {
        display: block;
    }


    /* Mobile Menu */
    .menu .burger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
    }

    .menu .burger span {
        width: 25px;
        height: 3px;
        background-color: #222;
        margin: 3px 0;
        transition: 0.3s;
        transform: skew(0deg);
    }

    .menu .burger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .menu .burger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Mobile styles */

    @media (max-width: 1024px) {
        .menu .nav-links {
            gap: 24px;
        }

        .menu .nav-links a {
            font-size: 16px;
        }

        .menu .logo {
            height: 44px;
            width: auto;
        }
    }

    @media (max-width: 768px) {
        .menu .nav-links {
            position: fixed;
            top: 75px;
            right: -100%;
            width: 80%;
            height: auto;
            background-color: white;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding: 60px 0;
            gap: 50px;
            box-shadow: -5px 0 10px rgba(0, 0, 0, 0.15);
            transition: right 0.3s ease;
            margin-left: 0; /* Reset desktop right alignment */
            margin-right: 0;
        }

        .menu .nav-links.active {
            right: 0;
        }

        .menu .nav-links a {
            font-size: 24px;
            padding: 8px 0;
            border-bottom: 3px solid #222; /* Dark border for regular links */
            width: 200px;
            text-align: center;
        }

        .menu .nav-links a::after {
            display: none;
        }

        .menu .nav-links .contact-link {
            color: #E52217 !important; /* Red text */
            border-bottom: 3px solid #E52217 !important; /* Red border */
        }
        .menu .nav-links .contact-link:hover {
            color: #222 !important; /* Red text */
            border-bottom: 3px solid #222 !important; /* Red border */
        }
        .menu .nav-links .contact-link:active {
            color: #222 !important; /* Red text */
            border-bottom: 3px solid #222 !important; /* Red border */
        }

        .menu .burger {
            display: flex;
        }
    }






/* Container Component */
    .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 7%;
    width: 100%;
}



/* Hero Section */
.hero {
    height: 95vh;
    background-image: url('/_resources/img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    padding-top: 0;
    margin-top: -20px;
    margin-bottom: 0;
}

.hero-title {
    font-size: 6rem;
    color: white;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: block;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeSlideIn 1s ease-out forwards;
}

.hero-line:nth-child(2) {
    animation-delay: 0.3s;
}

.red-dot {
    color: #E52217;
}

.hero-subtitle {
    color: white;
    max-width: 48ch;
    padding: 0;
    margin: 60px 0 0 0;
    text-align: left;
    font-size: 1.6rem; /* 30% of 6rem */
    font-weight: 300;
    opacity: 1;
    line-height: 1.4;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive hero text */
@media (max-width: 1366px) {
    .hero-title {
        font-size: 5rem;
    }
    .hero-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 90vh;
        padding-left: 38px;
        padding-right: 30px;
    }
    
    .hero-title {
        font-size: 4rem;
    }

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }    
}





/* UPDATED HEXAGON SECTION - SVG VERSION */
.whatwedo-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hexagon-bg {
    position: absolute;
    left: 0;
    top: -65%; /* Crop top */
    width: 75%;
    height: 200%; /* Crop bottom */
    background-image: url('/_resources/img/hexagon-red-flat.svg');
    background-size: contain; /* Maintains aspect ratio */
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.whatwedo-section .container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.whatwedo-section h2 {
    color: white;
    font-size: 5.5rem;
    font-weight: 800;
    margin: 0;
    padding-left: 10%;
    flex: 0 0 60%;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.whatwedo-section p {
    color: #212121;
    font-size: 1.1rem;
    line-height: 1.4;
    text-align: right; 
    max-width: 240px;
    margin: 0 0 0 auto; 
    align-self: flex-end; 
}

.hexagon-bg.contain {
    background-size: contain;
}

.hexagon-svg.contain {
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .whatwedo-section h2 {
        font-size: 5rem;
        padding-left: 8%;
        margin-bottom: 40px;
    }
    
    .whatwedo-section p {
        font-size: 1rem;
        max-width: 250px;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .whatwedo-section {
        height: 400px;
    }
    
    .whatwedo-section .container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .hexagon-bg,
    .hexagon-svg {
        width: 120%;
        left: -10%;
        top: -60%;
        height: 220%;
    }
    
    .whatwedo-section h2 {
        font-size: 3rem;
        padding-left: 0%;
        flex: none;
    }
    
    .whatwedo-section p {
        text-align: center;
        font-size: 0.95rem;
        max-width: 100%;
        color: white;
    }
}

@media (max-width: 480px) {
    .whatwedo-section {
        height: 250px;
    }
    
    .whatwedo-section .container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .hexagon-bg,
    .hexagon-svg {
        width: 120%;
        left: -10%;
        top: -64%;
        height: 220%;
    }
    
    .whatwedo-section h2 {
        font-size: 2.2rem;
        padding-left: 0;
        margin-bottom: 1rem;
        flex: none;
    }
    
    .whatwedo-section p {
        text-align: center;
        max-width: 100%;
        padding-right: 0;
        color: white; /* White text on mobile for better readability */
    }
}





/* Our Services Section */
.services-section {
    padding-top: 60px;
}

.services-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #212121;
    text-align: left;
    margin-bottom: 60px;
    font-family: "Outfit", sans-serif;
}

.services-category {
    margin-bottom: 60px;
}

.services-category h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #E52217;
    margin-bottom: 30px;
    font-family: "Outfit", sans-serif;
}

.services-grid {
    display: grid;
    gap: 0;
}

.services-grid.general {
    grid-template-columns: 1fr 1fr;
}

.services-grid.automotive {
    grid-template-columns: repeat(4, 1fr);
}

.service-box {
    border: 1px solid #CACACA; 
    background-color: white;
    padding: 40px 30px 30px 30px;
    position: relative;
    min-height: 180px;
    display: flex;
    align-items: flex-end;
}

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
}

.service-box h4 {
    color: #212121;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0;  
    font-family: "Outfit", sans-serif;
}

.services-grid.general .service-box:first-child {
    border-right: none;
}

.services-grid.automotive .service-box:not(:last-child) {
    border-right: none;
}


/* Responsive Design */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 5%;
    }

    .services-section h2 {
        font-size: 2rem;
    }

    .services-grid.general {
        grid-template-columns: 1fr;
    }

    .services-grid.automotive {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid.general .service-box:first-child {
    border-right: 1px solid #CACACA;
    }

    .services-grid.automotive .service-box:not(:last-child) {
    border-right: 1px solid #CACACA;
    }
}

@media (max-width: 480px) {
    .services-section h2 {
        font-size: 2rem;
    }

    .services-grid.automotive {
        grid-template-columns: 1fr;
    }

    .service-box {
        padding: 30px 20px 20px 20px;
        min-height: 140px;
    }

    .service-icon {
        width: 28px;
        height: 28px;
    }

    .service-box h4 {
        font-size: 1rem;
    }
        .services-grid.general .service-box:first-child {
    border-right: 1px solid #CACACA;
    }

    .services-grid.automotive .service-box:not(:last-child) {
    border-right: 1px solid #CACACA;
    }
}





/* Cardess Section */
.cardess-section {
    padding-top: 2em;
    background-color: white;
    text-align: center;
}

.cardess-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 50px 0;
    gap: 30px;
}

.header-line {
    flex: 1;
    height: 1px;
    background-color: #CACACA;
}

.cardess-logo {
    width: 40%;
    height: auto;
    min-width: 150px;
    max-width: 500px;
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.cardess-description {
    font-size: 1rem;
    color: #212121;
    text-align: center;
    margin: 0 auto 50px auto; /* Add 7% margin */
    max-width: 60ch;
    line-height: 1.6;
    font-family: "Outfit", sans-serif;
}

.cardess-cta {
    display: inline-block;
    position: relative;
    margin: 0 7% 60px 7%;
    text-decoration: none;
    transition: transform 0.3s ease;
    background-color: #E52217;
    color: white;
    padding: 16px 24px;
    transform: skew(-15deg);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: "Outfit", sans-serif;
}

.cardess-cta:hover {
    transform: skew(-15deg) translateY(-2px);
    background-color: #c41e14;
}

.cta-text {
    transform: skew(15deg);
    display: block;
}

.cardess-image {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    padding: 0 7%;
}

.full-width-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.bsfz-seal {
    min-width: 30%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.bsfz-description {
    font-size: 1rem;
    color: #212121;
    text-align: center;
    margin: 80px auto 0 auto; /* Add 7% margin */
    max-width: 60ch;
    line-height: 1.6;
    font-family: "Outfit", sans-serif;
    
}

.bsfz-link {
    color: #E52217;
    text-decoration: none;
    transition: color 0.3s ease;
}
.bsfz-link:hover {
    color: #c41e14;
    text-decoration: underline;
}
.cardess-bsfz a {
    display: block;
    transition: transform 0.3s ease;
}
.cardess-bsfz a:hover {
    transform: scale(1.05);
}

/* Update responsive margins */
@media (max-width: 768px) {
    .cardess-header {
        margin: 0 0 40px 0;
    }

    .cardess-description {
        margin: 0 0 40px 0;
    }

    .cardess-cta {
        margin: 0 5% 40px 5%;
    }

    .cardess-image {
        padding: 0 5%;
        max-width: none;
        width: 100%;
    }

    .full-width-image {
        width: 100%;
        height: auto;
    }
}





/* Trusted By Section */
.trusted-section {
    margin-top: 0;
    margin-bottom: 100px;
    background-color: white;
}

.trusted-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #212121;
    text-align: left;
    margin-bottom: 30px;
    font-family: "Outfit", sans-serif;
}

.trusted-subtitle {
    font-size: 1rem;
    color: #212121;
    text-align: left;
    margin-bottom: 60px;
    font-family: "Outfit", sans-serif;
    max-width: 70ch;
    margin-left: 0;
    margin-right: auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background-color: #fff;
    border-radius: 8px;
    min-height: 120px;
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.client-logo:hover img {
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trusted-section {
        padding: 60px 5%;
    }

    .trusted-section h2 {
        font-size: 2.5rem;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .trusted-section h2 {
        font-size: 2rem;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .client-logo {
        min-height: 100px;
        padding: 15px;
    }

    .client-logo img {
        max-height: 60px;
    }
}






/* Projects Slider*/

.projects-section {
    background-color: white;
    margin-bottom: 120px;
}

.projects-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #212121;
    text-align: left;
    margin-bottom: 30px;
    font-family: "Outfit", sans-serif;
}

.projects-subtitle {
    font-size: 1rem;
    color: #212121;
    text-align: left;
    margin: 0 auto 50px 0;
    max-width: 60ch;
    line-height: 1.6;
    font-family: "Outfit", sans-serif;
}

.slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding-left: 0;
}

.slider input {
    display: none;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%; /* 3 slides = 300% */
}

.slide {
    width: 80%;
    margin-right: 2%; /* Small gap between slides */
    flex-shrink: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: pointer;
}

.slider .project-box {
    background-color: #f0f0f0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.slider .project-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slider .project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .project-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.slider .detail-group {
    margin-bottom: 24px;
}

.slider .detail-group:last-child {
    margin-bottom: 0;
}

.slider .detail-label {
    font-weight: 800;
    margin: 0 0 5px 0;
    font-family: "Outfit", sans-serif;
    color: #212121;
    font-size: 1rem;
}

.slider .detail-value {
    margin: 0 0 5px 0;
    font-family: "Outfit", sans-serif;
    color: #212121;
    font-size: 1rem;
    line-height: 1.4;
}

.slider .detail-value:last-child {
    margin-bottom: 0;
}

/* Hover effect for non-active slides */
.slide:not(.active) .project-box:hover {
    transform: scale(1.02);
}

/* Slider transitions */
#slide1:checked ~ .slides { transform: translateX(0); }
#slide2:checked ~ .slides { transform: translateX(-82%); }
#slide3:checked ~ .slides { transform: translateX(-164%); }

/* Navigation dots */
.navigation {
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
}

.navigation label {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.navigation label:hover {
    background: #999;
}

#slide1:checked ~ .navigation label[for="slide1"],
#slide2:checked ~ .navigation label[for="slide2"],
#slide3:checked ~ .navigation label[for="slide3"] {
    background: #333;
}

/* Visual indication for partially visible slides */
.slide:not(:first-child) {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.slide:not(:first-child):hover {
    opacity: 1;
}

/* Responsive adjustments for slider */
@media (max-width: 768px) {
    .slider {
        padding-left: 1%;
    }
    
    .slide {
        width: 85%;
        margin-right: 1%;
        padding: 10px;
    }
    
    .slider .project-box {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .slider .project-details {
        padding: 30px;
    }
    
    #slide2:checked ~ .slides { transform: translateX(-86%); }
    #slide3:checked ~ .slides { transform: translateX(-172%); }
}

@media (max-width: 480px) {
    .slide {
        width: 90%;
        padding: 5px;
    }
    
    .slider .project-details {
        padding: 20px;
    }
    
    .slider .detail-group {
        margin-bottom: 12px;
    }
    
    #slide2:checked ~ .slides { transform: translateX(-92%); }
    #slide3:checked ~ .slides { transform: translateX(-184%); }
}









/* Who We Are Section */
.whoweare-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}
.hexagon2-bg {
    position: absolute;
    left: 0;
    top: 0; 
    width: 72%;
    height: 200%; /* Crop bottom */
    background-image: url('/_resources/img/hexagon-red-point.svg');
    background-size: contain; /* Maintains aspect ratio */
    background-repeat: no-repeat;
    background-position: center top;
    z-index: 1;
}

.whoweare-section .container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
}

.whoweare-section h2 {
    color: white;
    font-size: 5.5rem;
    font-weight: 800;
    margin: 0;
    padding-top: 15%;
    padding-bottom: 0;
    padding-left: 8%;
    flex: 0 0 auto; 
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    max-width: 12ch;
    align-self: flex-end; 
}

.whoweare-section p {
    color: #212121;
    font-size: 1.1rem;
    line-height: 1.4;
    text-align: right; 
    max-width: 240px;
    margin: 0;
    padding-right: 2rem;
    padding-bottom: 0; /* Bottom padding for spacing */
    align-self: flex-end; /* Bottom aligned */
    flex: 0 0 35%; /* Give text container defined space */
}   

.hexagon2-bg.contain {
    background-size: contain;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .whoweare-section h2 {
        font-size: 5rem;
        padding-top: 25%;
        padding-left: 6%;
        max-width: 8ch;
    }
    
    .whoweare-section p {
        font-size: 1rem;
        max-width: 220px;
        padding-right: 1rem;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .whoweare-section {
        height: 400px;
    }
    
    .whoweare-section .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .hexagon2-bg {
        width: 100%;
        left: 0%;
        top: 0%;
        height: 220%;
        background-position: center top;
    }
    
    .whoweare-section h2 {
        font-size: 4rem;
        padding: 15% 0 0 0; /* Reset padding */
        margin-bottom: 2rem;
        flex: none;
        align-self: center;
        max-width: none;
    }
    
    .whoweare-section p {
        text-align: center;
        font-size: 1.1rem;
        max-width: none;
        color: white;
    }
}

@media (max-width: 480px) {
    .whoweare-section {
        height: 300px;
    }
    
    .whoweare-section .container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .hexagon2-bg,
    .hexagon2-svg {
        width: 120%;
        left: -10%;
        right: auto;
        top: 0;
        height: 200%;
    }
    
    .whoweare-section h2 {
        font-size: 3rem;
        padding-left: 0;
        margin-bottom: 1rem;
        flex: none;
    }
    
    .whoweare-section p {
        text-align: center;
        max-width: 100%;
        padding-right: 0;
        color: white; 
    }
}



/* Our Global Presence Section */
.global-presence-section {
    background-image: url('/_resources/img/global-presence-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.global-presence-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.global-content {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 7%;
}

.global-presence-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-family: "Outfit", sans-serif;
}

.global-subtitle {
    font-size: 1.2rem;
    color: white;
    text-align: center;
    margin: 0 auto 60px auto;
    max-width: 800px;
    line-height: 1.6;
    font-family: "Outfit", sans-serif;
}

.global-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    align-items: flex-start;
}

.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.global-map {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 3em;
}

.location-item {
    display: flex;
    align-content: center;
    justify-content: space-between;
    color: white;
    font-family: "Outfit", sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
}

.location-name {
    font-weight: 800;
    text-align: left;
}

.location-date {
    font-weight: 300;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .global-content {
        padding: 0 5%;
    }

    .global-presence-section h2 {
        font-size: 2.5rem;
    }

    .global-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .global-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .locations-list {
        padding-left: 0;
        gap: 12px;
    }

    .location-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .global-presence-section {
        padding: 60px 0;
    }

    .global-presence-section h2 {
        font-size: 2rem;
    }

    .global-subtitle {
        font-size: 1rem;
    }

    .locations-list {
        gap: 10px;
    }

    .location-item {
        font-size: 0.85rem;
    }
}





/* Our Partners Section */
.partners-section {
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 28%; /* Adjust position as needed */
    left: -10%;
    right: -10%;
    height: 33%; /* Adjust height as needed */
    background-color: white;
    transform: rotate(-10deg);
    z-index: 1;
}

.partners-section > * {
    position: relative;
    z-index: 2;
}

.partners-container {
    max-width: 1600px;
    margin: 0 auto;
}

.partners-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #212121;
    text-align: left;
    margin-bottom: 30px;
    font-family: "Outfit", sans-serif;
}

.partners-subtitle {
    font-size: 1.2rem;
    color: #212121;
    text-align: left;
    margin: 0 0 50px 0;
    max-width: 800px;
    line-height: 1.6;
    font-family: "Outfit", sans-serif;
}

.core-partners-title {
    font-size: 2rem;
    font-weight: 800;
    color: #E52217;
    text-align: left;
    margin-bottom: 40px;
    font-family: "Outfit", sans-serif;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.partner-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 8px;
    min-height: 100px;
}

.partner-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.featured-partner {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    width: 50%;
    margin: 0 auto;
    min-height: 200px;
}

.featured-partner img {
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-section {
        padding: 60px 5%;
    }

    .partners-section h2 {
        font-size: 2.5rem;
    }

    .partners-subtitle {
        font-size: 1.1rem;
    }

    .core-partners-title {
        font-size: 1.3rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .partners-image {
        width: 50%;
        padding: 30px;
    }

    .featured-partner {
        margin-top: 80px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .partners-section h2 {
        font-size: 2rem;
    }

    .partners-subtitle {
        font-size: 1rem;
    }

    .core-partners-title {
        font-size: 1.2rem;
    }

    .featured-partner {
        width: 80%;
        padding: 20px;
    }

    .partner-image {
        padding: 30px;
        min-height: 100px;
    }

    .featured-partner {
        min-height: 150px;
    }
}





/* Other Partners Section */

.other-partners-section {
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
    
}

.other-partners-title {
    font-size: 2rem;
    font-weight: 800;
    color: #212121;
    text-align: left;
    font-family: "Outfit", sans-serif;
}

.others-partners-container {
    max-width: 1400px;
    
}

.other-partners-grid {
    list-style: none;
    margin: 0;
    padding: 3rem 0;
    display: grid;
    gap: 1px;
    margin: 0 auto;
}

/* Responsive grid */
.other-partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

@media (max-width: 640px) {
    .other-partners-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 1rem;
    }
}

@media (min-width: 1200px) {
    .other-partners-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

.hex-grid_item {
    background: white;
    transition: all 0.2s ease;
}

.hex-grid_item:hover {
    z-index: 1;
    position: relative;
}

.hex-grid_content {
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    transition: all 0.2s ease;
}

.hex-grid_item:hover .hex-grid_content {
    transform: scale(1.02);
}

.hex-grid_content img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.hex-grid_item:hover .hex-grid_content img {
    opacity: 1;
    transform: scale(1.05);
}

/* Add subtle animation on load */
.hex-grid_item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hex-grid_item:nth-child(1) { animation-delay: 0.1s; }
.hex-grid_item:nth-child(2) { animation-delay: 0.2s; }
.hex-grid_item:nth-child(3) { animation-delay: 0.3s; }
.hex-grid_item:nth-child(4) { animation-delay: 0.4s; }
.hex-grid_item:nth-child(5) { animation-delay: 0.5s; }
.hex-grid_item:nth-child(6) { animation-delay: 0.6s; }
.hex-grid_item:nth-child(7) { animation-delay: 0.7s; }
.hex-grid_item:nth-child(8) { animation-delay: 0.8s; }
.hex-grid_item:nth-child(n+9) { animation-delay: 0.9s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Contact Section */
.contact-section {
    padding-top: 60px;
    background-color: white;
}

.contact-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #212121;
    text-align: left;
    margin-bottom: 80px;
    font-family: "Outfit", sans-serif;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-subtitle {
    font-size: 1.5rem;
    font-weight: 800;
    color: #E52217;
    text-align: left;
    margin-bottom: 20px;
    font-family: "Outfit", sans-serif;
}

.email-address {
    color: #666666;
    font-size: 1rem;
    margin: 10px 0;
    font-family: "Outfit", sans-serif;
    text-align: left;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-location-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.contact-location-name {
    font-weight: 800;
    color: #212121;
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    font-family: "Outfit", sans-serif;
}

.location-detail {
    color: #666666;
    font-size: 0.9rem;
    margin: 5px 0;
    font-family: "Outfit", sans-serif;
    line-height: 1.3;
}

.location-blank {
    height: 10px;
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 5%;
    }

    .contact-section h2 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .contact-section h2 {
        font-size: 2rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-subtitle {
        font-size: 1.2rem;
    }

    .location-detail {
        font-size: 0.85rem;
    }
}




/* Footer */
.footer {
    background-color: #080808;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.logo-white {
    width: auto;
    height: 48px;
}

.footer-images {
    display: flex;
    align-items: center;
    gap: 60px;
}

.footer-images a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-images a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-images a:active {
    transform: translateY(-1px);
}

.footer-images a:hover .footer-img {
    filter: brightness(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-img {
    height: auto;
    max-height: 48px; /* Adjust based on your logo height */
    transition: opacity 0.6s ease;
}

.footer-img:hover {
    opacity: 0.5;
}


.footer-line {
    width: 100%;
    height: 1px;
    background-color: #4d4d4d;
    margin-top: 60px;
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

    .footer-copyright p {
    color: #9B9B9B;
    font-size: 12px;
    margin: 0;
    font-family: "Outfit", sans-serif;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    font-family: "Outfit", sans-serif;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 20px 5%;
    }

    .footer-top {
        gap: 20px;
        margin-bottom: 20px;
    }

    .logo-white {
        width: auto;
        height: 40px;
    }

    .footer-images {
        gap: 30px;
    }

    .footer-img {
        max-height: 40px;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        align-items: center;
    }

    .logo-white {
        width: auto;
        height: 30px;
    }

    .footer-images {
        gap: 20px;
    }

    .footer-img {
        max-height: 30px;
    }

    .footer-links {
        gap: 15px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-copyright p {
        font-size: 10px;
    }
}