/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #7b191d;
    --dark-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-dark: #333333;
    --overlay-dark: rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    backdrop-filter: none;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    flex-shrink: 0;
}

.logo-link {
    display: block;
}

.logo {
    height: 60px;
    width: auto;
    display: block;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    background-color: var(--dark-bg);
    min-height: 50vh;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Page Hero Section (for subpages) */
.page-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

/* Gradient transition for What We Do page */
.what-we-do .page-hero-overlay {
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.8) 70%,
        rgba(26, 26, 26, 0.95) 90%,
        var(--dark-bg) 100%
    );
}

.what-we-do .page-hero {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Gradient transition for How We Do It and Client Portfolio pages */
.how-we-do-it-page .page-hero-overlay,
.client-portfolio-page .page-hero-overlay {
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.8) 70%,
        rgba(26, 26, 26, 0.95) 90%,
        var(--dark-bg) 100%
    );
}

.how-we-do-it-page .page-hero,
.client-portfolio-page .page-hero {
    padding-bottom: 0;
    margin-bottom: 0;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.page-hero-left {
    flex: 1;
}

.page-hero-right {
    flex: 1;
}

.page-number {
    font-size: 8rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}

.page-title {
    font-size: 4rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.page-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.what-we-do-description {
    font-size: 1.6rem;
    margin-top: 3.5rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-side-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 2rem;
}

.section-heading {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Service Offerings */
.service-offerings {
    margin-top: 3rem;
}

.service-offerings h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.service-offerings h4 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.service-offerings p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Service Offerings Section - Full Width */
.service-offerings-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
    width: 100%;
}

.service-offerings-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-offerings-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-offerings-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.service-offerings-subtitle {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-offerings-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-offerings-list li {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
    opacity: 0.9;
}

.service-offerings-list li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-offerings-list li strong {
    color: var(--text-light);
    font-weight: 600;
}

/* Recruitment Areas */
.recruitment-areas {
    padding: 4rem 0;
    background-color: var(--dark-bg);
    margin-top: -1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.recruitment-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.recruitment-box {
    background-color: var(--primary-color);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recruitment-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.recruitment-box h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.recruitment-box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-top: 1rem;
    text-align: left;
}

/* Industries Section */
.industries-section {
    margin-top: 4rem;
}

.industries-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.industry-column {
    flex: 1;
}

.industry-list {
    list-style: none;
    padding: 0;
}

.industry-list li {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.industry-list li::before {
    content: '▪';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Next Generation Technology Section - Dark Background */
.next-generation-tech-section {
    position: relative;
    padding: 4rem 0 5rem 0;
    background: var(--dark-bg);
    overflow: hidden;
}

.next-generation-tech-section .container {
    position: relative;
    z-index: 1;
}

.next-generation-tech-section .section-title {
    color: var(--text-light);
    text-align: center;
}

.next-generation-tech-section .section-description {
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Technology Grid Section */
.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.technology-column {
    flex: 1;
}

.technology-list {
    list-style: none;
    padding: 0;
}

.technology-list li {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.next-generation-tech-section .technology-list li {
    color: var(--text-light);
    font-weight: 600;
}

.next-generation-tech-section .technology-grid {
    background: rgba(0, 0, 0, 0.3);
    padding: 2.5rem 3rem;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.technology-list li::before {
    content: '▪';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Sectors We Serve (white section override) */
.sectors-we-serve-section {
    position: relative;
    padding: 4rem 0 5rem 0;
    background: #f5f5f5;
    overflow: hidden;
}

.sectors-we-serve-section::before {
    content: "";
    position: absolute;
    inset: -50%;
    background: linear-gradient(120deg,
        rgba(123, 25, 29, 0.12),
        rgba(255, 255, 255, 0.9),
        rgba(0, 0, 0, 0.04)
    );
    opacity: 0.75;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    animation: sectorsGlow 18s ease-in-out infinite alternate;
}

@keyframes sectorsGlow {
    0% {
        transform: translate3d(-10%, -5%, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(5%, 5%, 0) rotate(1deg);
    }
    100% {
        transform: translate3d(12%, -2%, 0) rotate(-1deg);
    }
}

.sectors-we-serve-section .container {
    position: relative;
    z-index: 1;
}

.sectors-header {
    text-align: center;
    margin-bottom: 2rem;
}

.page-number-small {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
    display: block;
    margin-bottom: 0.75rem;
}

.sectors-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.sectors-intro {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 900px;
    line-height: 1.8;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.sectors-we-serve-section .industry-list li {
    color: var(--text-dark);
    font-weight: 600;
}

.sectors-we-serve-section .industries-grid {
    background: rgba(255, 255, 255, 0.92);
    padding: 2.5rem 3rem;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.sectors-outro {
    margin-top: 3rem;
    font-size: 1.05rem;
    color: var(--text-dark);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Full-width image section between recruitment and sectors */
.sectors-image-section {
    padding: 0;
    background-color: #000000;
    overflow: hidden;
}

.sectors-image {
    width: 100%;
    height: auto;
    display: block;
}

.sectors-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Value Proposition */
.value-proposition {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

/* Process Video Section */
.process-video-section {
    padding: 0;
    background-color: var(--dark-bg);
}

.process-video-wrapper {
    width: 100%;
    margin: 0;
}

.process-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Recruitment Process Section */
.recruitment-process-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.recruitment-process-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-number {
    font-size: 8rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.1);
    line-height: 1;
    flex-shrink: 0;
}

.process-title {
    font-size: 4rem;
    font-weight: bold;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
}

.recruitment-process-image {
    width: 100%;
    margin-top: 2rem;
}

.process-flowchart {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* How We Do It Bottom Section */
.how-we-do-it-bottom {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

.bottom-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: stretch;
}

.blue-box {
    background-color: var(--primary-color);
    padding: 3rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.blue-box-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.bottom-text-content {
    padding: 1rem 0;
}

.bottom-heading {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.bottom-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content .section-title {
    text-align: left;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.about-content .section-title:first-child {
    margin-top: 0;
}

.about-content .section-text {
    margin-bottom: 2rem;
}

/* We Help Clients Section */
.we-help-clients-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

.we-help-clients-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

.help-clients-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.help-client-box {
    background-color: var(--primary-color);
    padding: 2.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-client-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.help-client-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Intermediate Text Section */
.intermediate-text-section {
    padding: 3rem 0;
    background-color: var(--dark-bg);
}

.intermediate-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* The Company We Keep Section */
.company-we-keep-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

/* Client Portfolio */
.client-portfolio {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-logo-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-height: 120px;
}

.client-logo-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.client-logo {
    max-width: 100%;
    height: auto;
    max-height: 75px;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease;
}

.client-logo-item:hover .client-logo {
    filter: grayscale(0%) brightness(1);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    padding: 2rem 0;
}

.contact-details {
    margin-top: 2rem;
}

.contact-details p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-details strong {
    color: var(--primary-color);
}

.contact-form-container {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #a01a2e;
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

/* Homepage Sections */
.our-story-section {
    padding: 6rem 0;
    background-color: #f5f5f5;
}

.our-story-three-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-end;
}

.story-column-left {
    max-width: 100%;
}

.story-column-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.4);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title-large {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.story-content {
    max-width: 100%;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.mission-box,
.vision-box {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.mission-title,
.vision-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.mission-text,
.vision-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
}

/* Customer Commitment Section with Background Image */
.customer-commitment-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    overflow: hidden;
}

.customer-commitment-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('images/overlay-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.customer-commitment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.customer-commitment-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.customer-commitment-section .section-number {
    color: rgba(255, 255, 255, 0.4);
}

.customer-commitment-section .section-title-large {
    color: var(--text-light);
}

.commitment-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    max-width: 100%;
}

.leadership-section {
    padding: 6rem 0;
    background-color: #f5f5f5;
}

.leadership-section .section-number {
    color: rgba(0, 0, 0, 0.4);
}

.leadership-section .section-title-large {
    color: var(--text-dark);
}

.leadership-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
    max-width: 800px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.leader-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.leader-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.leader-title {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
}

.closing-statement-section {
    position: relative;
    padding: 10rem 0;
    background-color: #f5f5f5;
    text-align: center;
    overflow: hidden;
}

.closing-statement-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/overlay4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 1;
    z-index: 1;
}

.closing-statement-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.closing-statement-section .container {
    position: relative;
    z-index: 3;
}

.closing-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Error Pages Styles */
.error-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2a2a 100%);
    overflow: hidden;
}

.error-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(123, 25, 29, 0.03) 10px,
            rgba(123, 25, 29, 0.03) 20px
        );
    pointer-events: none;
}

.error-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    animation: fadeInUp 0.8s ease;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.error-message {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.error-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.error-link:hover {
    background-color: #a01a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 25, 29, 0.3);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Responsive Error Pages */
@media (max-width: 768px) {
    .error-code {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-message {
        font-size: 1.1rem;
    }
    
    .error-container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .error-code {
        font-size: 4rem;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .error-message {
        font-size: 1rem;
    }
    
    .error-link {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(to bottom, #2a2a2a, #000000);
    padding: 4rem 0 2rem;
    margin-top: 0;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        );
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.footer-locations-list {
    list-style: none;
    padding: 0;
}

.footer-locations-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.social-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-direction: row;
}

.social-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-indent: -9999px;
    overflow: hidden;
}

.social-link.facebook {
    background-color: #1877f2;
}

.social-link.twitter {
    background-color: #1da1f2;
}

.social-link.youtube {
    background-color: #ff0000;
}

.social-link:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.social-link::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.social-link.facebook::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}

.social-link.twitter::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M23.953 4.57a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 00-8.384 4.482C7.69 8.095 4.067 6.13 1.64 3.162a4.822 4.822 0 00-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 01-2.228-.616v.06a4.923 4.923 0 003.946 4.827 4.996 4.996 0 01-2.212.085 4.936 4.936 0 004.604 3.417 9.867 9.867 0 01-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 007.557 2.209c9.053 0 13.998-7.496 13.998-13.985 0-.21 0-.42-.015-.63A9.935 9.935 0 0024 4.59z'/%3E%3C/svg%3E");
}

.social-link.youtube::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E");
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-copyright {
    margin-bottom: 1.5rem;
}

.footer-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.footer-logo-link {
    display: inline-block;
    position: relative;
    transition: opacity 0.3s ease;
    width: 150px;
    height: auto;
}

.footer-logo {
    display: block;
    width: 150px;
    height: auto;
    transition: opacity 1.5s ease;
}

.footer-logo-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: auto;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.footer-logo-link:hover .footer-logo {
    opacity: 0;
}

.footer-logo-link:hover .footer-logo-hover {
    opacity: 1;
}

/* Get In Touch Hero Section */
.get-in-touch-hero {
    position: relative;
    width: 100%;
    min-height: auto;
    padding-top: 100px;
    overflow: hidden;
}

.get-in-touch-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.get-in-touch-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.get-in-touch-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.get-in-touch-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
    animation: fadeIn 1s ease;
}

.get-in-touch-hero-left {
    text-align: left;
}

.get-in-touch-title {
    font-size: 5rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.2s both;
}

.get-in-touch-email {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
}

.get-in-touch-email::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--text-light);
    transition: width 0.5s ease;
}

.get-in-touch-email:hover {
    color: var(--text-light);
}

.get-in-touch-email:hover::after {
    width: 100%;
}

/* USA Locations Section inside Hero */
.usa-locations-in-hero {
    position: relative;
    z-index: 3;
    padding: 4rem 0;
    animation: fadeIn 1s ease 0.6s both;
}

.usa-locations-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.location-item {
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.8s ease both;
}

.location-item:nth-child(1) { animation-delay: 0.8s; }
.location-item:nth-child(2) { animation-delay: 0.9s; }
.location-item:nth-child(3) { animation-delay: 1s; }
.location-item:nth-child(4) { animation-delay: 1.1s; }
.location-item:nth-child(5) { animation-delay: 1.2s; }
.location-item:nth-child(6) { animation-delay: 1.3s; }
.location-item:nth-child(7) { animation-delay: 1.4s; }
.location-item:nth-child(8) { animation-delay: 1.5s; }

.location-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.location-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.location-image-wrapper:hover .location-image {
    transform: scale(1.05);
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.location-image-wrapper:hover .location-overlay {
    opacity: 1;
}

.location-phone {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: color 0.3s ease;
}

.location-phone:hover {
    color: var(--primary-color);
}

.location-name {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* International Projects Section */
.international-projects-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
    animation: fadeIn 1s ease 1.6s both;
}

.international-projects-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: left;
}

.international-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.international-location-item {
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.8s ease both;
}

.international-location-item:nth-child(1) { animation-delay: 1.7s; }
.international-location-item:nth-child(2) { animation-delay: 1.8s; }
.international-location-item:nth-child(3) { animation-delay: 1.9s; }

.international-location-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.international-location-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.international-location-image-wrapper:hover .international-location-image {
    transform: scale(1.05);
}

.international-location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.international-location-image-wrapper:hover .international-location-overlay {
    opacity: 1;
}

.international-location-email {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: color 0.3s ease;
}

.international-location-email:hover {
    color: var(--primary-color);
}

.international-location-name {
    font-size: 1.1rem;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
    font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0 6rem 0;
    background-color: #f5f5f5;
    animation: fadeIn 1s ease 2s both;
}

.contact-form-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    animation: fadeInUp 0.8s ease 2.1s both;
}

.contact-form-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 2.2s both;
}

.contact-form-new {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 2.3s both;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-row-full {
    margin-bottom: 2rem;
}

.form-group-new {
    display: flex;
    flex-direction: column;
}

.form-group-new label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group-new input,
.form-group-new textarea {
    padding: 0.75rem 0;
    border: none;
    border-bottom: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--text-dark);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group-new input:focus,
.form-group-new textarea:focus {
    border-bottom-color: var(--primary-color);
}

.form-group-new textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.submit-button-new {
    padding: 1rem 3rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.submit-button-new:hover {
    background-color: #5d1216;
    transform: translateY(-2px);
}

.submit-button-new:active {
    transform: translateY(0);
}

/* Form Messages */
.form-messages {
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: center;
}

.form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    animation: fadeInUp 0.5s ease;
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        flex-wrap: wrap;
    }

    .nav-list {
        gap: 1rem;
    }

    .nav-list a {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav.active {
        max-height: 100vh;
    }

    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        display: block;
        width: 100%;
        padding: 1rem 0;
        font-size: 1.1rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .get-in-touch-hero {
        display: flex;
        flex-direction: column;
    }

    .get-in-touch-hero-background {
        position: relative;
        height: auto;
    }

    .get-in-touch-hero-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: top;
        display: block;
    }

    .get-in-touch-hero-overlay {
        display: none;
    }

    .get-in-touch-hero-content {
        position: relative;
        background-color: #000000;
        padding: 3rem 2rem 0 2rem;
        z-index: 3;
    }

    .get-in-touch-hero-left {
        text-align: center;
    }

    .usa-locations-in-hero {
        background-color: #000000;
        padding: 0 2rem 4rem 2rem;
        margin-top: 50px;
    }

    .page-hero {
        display: flex;
        flex-direction: column;
    }

    .page-hero-background {
        position: relative;
        height: auto;
    }

    .page-hero-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: top;
        display: block;
    }

    .page-hero-overlay {
        display: none;
    }

    .page-hero-content {
        position: relative;
        background-color: #000000;
        padding: 3rem 2rem;
        z-index: 3;
    }

    .page-hero-left,
    .page-hero-right {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column-title {
        text-align: center;
    }

    .footer-locations-list {
        text-align: center;
    }

    .social-links {
        flex-direction: row;
        justify-content: center;
    }

    .page-hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-number {
        font-size: 5rem;
    }

    .service-offerings-section {
        padding: 3rem 0;
    }

    .service-offerings-section .container {
        padding: 0 1.5rem;
    }

    .service-offerings-title {
        font-size: 2rem;
    }

    .service-offerings-intro {
        font-size: 1.1rem;
    }

    .service-offerings-subtitle {
        font-size: 1.5rem;
    }

    .service-offerings-list li {
        font-size: 1rem;
    }

    .recruitment-boxes {
        grid-template-columns: 1fr;
    }

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

    .next-generation-tech-section {
        padding: 3rem 0;
    }

    .next-generation-tech-section .technology-grid {
        padding: 2rem 1.5rem;
    }

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

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

    .client-logos-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .help-clients-boxes {
        grid-template-columns: 1fr;
    }

    .we-help-clients-title {
        font-size: 2rem;
    }

    .recruitment-process-header {
        flex-direction: column;
        gap: 1rem;
    }

    .process-number {
        font-size: 5rem;
    }

    .process-title {
        font-size: 2.5rem;
    }

    .bottom-content-grid {
        grid-template-columns: 1fr;
    }

    .blue-box {
        min-height: auto;
    }

    .blue-box-text {
        font-size: 1.2rem;
    }

    .our-story-three-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .section-title-large {
        font-size: 2rem;
    }

    .story-text,
    .commitment-text {
        font-size: 1.1rem;
    }

    .closing-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }

    .logo {
        height: 40px;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-number {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .next-generation-tech-section {
        padding: 2rem 0;
    }

    .next-generation-tech-section .technology-grid {
        padding: 1.5rem 1rem;
    }

    .service-offerings-section {
        padding: 2rem 0;
    }

    .service-offerings-section .container {
        padding: 0 1rem;
    }

    .service-offerings-title {
        font-size: 1.75rem;
    }

    .service-offerings-intro {
        font-size: 1rem;
    }

    .service-offerings-subtitle {
        font-size: 1.3rem;
    }

    .service-offerings-list li {
        font-size: 0.95rem;
    }

    .client-logos-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .get-in-touch-title {
        font-size: 3rem;
    }

    .get-in-touch-email {
        font-size: 1.2rem;
    }

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

    .usa-locations-title {
        font-size: 2rem;
    }

    .international-locations-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form-title {
        font-size: 2rem;
    }

    .contact-form-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .get-in-touch-hero {
        display: flex;
        flex-direction: column;
        padding-top: 80px;
    }

    .get-in-touch-hero-background {
        position: relative;
        height: auto;
    }

    .get-in-touch-hero-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: top;
        display: block;
    }

    .get-in-touch-hero-overlay {
        display: none;
    }

    .get-in-touch-hero-content {
        position: relative;
        background-color: #000000;
        padding: 3rem 2rem 0 2rem;
        z-index: 3;
    }

    .get-in-touch-hero-left {
        text-align: center;
    }

    .usa-locations-in-hero {
        background-color: #000000;
        padding: 0 2rem 4rem 2rem;
        margin-top: 50px;
    }

    .get-in-touch-title {
        font-size: 2.5rem;
    }

    .contact-form-title {
        font-size: 1.5rem;
    }

    .contact-form-description {
        font-size: 0.9rem;
    }

    .help-clients-boxes {
        grid-template-columns: 1fr;
    }

    .we-help-clients-title {
        font-size: 1.5rem;
    }

    .intermediate-text {
        font-size: 1rem;
    }

    .process-number {
        font-size: 4rem;
    }

    .process-title {
        font-size: 2rem;
    }

    .blue-box-text {
        font-size: 1rem;
    }

    .bottom-heading {
        font-size: 1.5rem;
    }
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cookie-notice.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-notice-content {
    padding: 1.5rem;
}

.cookie-notice-text {
    margin-bottom: 1rem;
}

.cookie-notice-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.cookie-notice-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-notice-text a:hover {
    color: #5d1216;
}

.cookie-notice-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cookie-btn-accept {
    background-color: var(--primary-color);
    color: #ffffff;
    flex: 1;
    min-width: 100px;
}

.cookie-btn-accept:hover {
    background-color: #5d1216;
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background-color: #f5f5f5;
    color: var(--text-dark);
    border: 1px solid #e0e0e0;
    flex: 1;
    min-width: 100px;
}

.cookie-btn-decline:hover {
    background-color: #e8e8e8;
}

@media (max-width: 768px) {
    .cookie-notice {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .cookie-notice-content {
        padding: 1.2rem;
    }
    
    .cookie-notice-text p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cookie-notice {
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }
    
    .cookie-notice-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Leadership Message Section */
.leadership-message-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    padding: 0;
    overflow: hidden;
    margin: 0;
}

.leadership-message-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.leadership-message-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leadership-message-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.leadership-message-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.leadership-message-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.leadership-message-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.leadership-message-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    max-width: 100%;
}

.leadership-message-pdf-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.leadership-message-pdf-link {
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.leadership-message-pdf-link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.leadership-message-pdf-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive styles */
@media (max-width: 768px) {
    .leadership-message-section {
        min-height: 500px;
    }
    
    .leadership-message-content {
        padding: 3rem 1.5rem;
        gap: 2rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .leadership-message-left,
    .leadership-message-right {
        flex: 1;
        width: 100%;
    }
    
    .leadership-message-right {
        justify-content: flex-start;
    }
    
    .leadership-message-pdf-container {
        justify-content: flex-start;
    }
    
    .leadership-message-title {
        font-size: 2.5rem;
    }
    
    .leadership-message-pdf-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .leadership-message-title {
        font-size: 2rem;
    }
    
    .leadership-message-content {
        padding: 2rem 1rem;
    }
}


/* Specialized Recruitment Solutions Section */
.specialized-recruitment-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
    width: 100%;
}

.specialized-recruitment-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.specialized-recruitment-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.specialized-recruitment-intro {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.specialized-recruitment-subtitle {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-align: center;
}

.specialized-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.specialized-service-box {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.specialized-service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 48px;
    height: 48px;
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design for Specialized Services */
@media (max-width: 768px) {
    .specialized-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .specialized-service-box {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-icon {
        align-self: center;
    }
    
    .specialized-recruitment-title {
        font-size: 2rem;
    }
    
    .specialized-recruitment-intro {
        font-size: 1.1rem;
    }
    
    .specialized-recruitment-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .specialized-recruitment-section {
        padding: 3rem 0;
    }
    
    .specialized-recruitment-section .container {
        padding: 0 1rem;
    }
    
    .specialized-recruitment-title {
        font-size: 1.75rem;
    }
    
    .specialized-recruitment-intro {
        font-size: 1rem;
    }
    
    .specialized-recruitment-subtitle {
        font-size: 1.3rem;
    }
    
    .specialized-service-box {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
}
/* Insights & Perspectives Section */
.insights-perspectives-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    padding: 6rem 0;
    background-color: #f5f5f5;
    overflow: hidden;
}

.insights-perspectives-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.insights-header {
    text-align: center;
    margin-bottom: 4rem;
}

.insights-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.insights-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.insights-tagline {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.7;
    font-style: italic;
    margin: 0;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: center;
}

.insights-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.insights-pdf-link {
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.insights-pdf-link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.insights-pdf-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive styles for Insights & Perspectives */
@media (max-width: 768px) {
    .insights-perspectives-section {
        min-height: 500px;
        padding: 4rem 0;
    }
    
    .insights-perspectives-content {
        padding: 0 1.5rem;
    }
    
    .insights-header {
        margin-bottom: 3rem;
    }
    
    .insights-title {
        font-size: 2.5rem;
    }
    
    .insights-subtitle {
        font-size: 1.5rem;
    }
    
    .insights-tagline {
        font-size: 1rem;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .insights-pdf-image {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .insights-title {
        font-size: 2rem;
    }
    
    .insights-subtitle {
        font-size: 1.3rem;
    }
    
    .insights-perspectives-content {
        padding: 0 1rem;
    }
}