/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
/*    --primary-blue: #003366;*/
    --secondary-blue: #00509E;
    --accent-red: #D22B2B;
    --light-blue: #E6F0FF;
    --dark-gray: #003366;
    --medium-gray: #666666;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-red);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #B22222;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

    .btn-secondary:hover {
        background-color: #003366;
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
        border: 2px solid #003366;
    }

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 24px !important;
    font-size: 0.95rem !important;
}

.btn-full {
    width: 100%;
}

.highlight {
    color: var(--accent-red);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    padding: 0;
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    min-height: 70px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    margin-left: 40px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-blue);
    line-height: 1;
    margin: 0;
}

.logo-subtext {
    font-size: 0.8rem;
    color: var(--accent-red);
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-gray);
    transition: var(--transition);
    position: relative;
    font-size: 1rem;
    padding: 5px 0;
}

.nav-link:hover,
/*.nav-link.active*/ {
    color: var(--accent-red);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-red);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 5px;
}

/* Dropdown base */
.nav-item {
    position: relative;
    list-style: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    list-style: none;
}

/* Show on hover */
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

/* Links */
.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: #1f2f57;
    text-decoration: none;
    font-size: 14px;
}

    .dropdown-menu li a:hover {
        background: #f1f5f9;
        color: #e63946;
    }

/* ===== HERO SECTION WITH CLEAR VIDEO ===== */
.hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 1;
}

.video-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Light overlay for text readability */
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 30px;
    background: transparent;
    padding: 40px 30px 30px 30px;
    border-radius: 10px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-list {
    list-style: none;
    margin: 20px 0 30px;
}

.about-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.about-list i {
    color: var(--accent-red);
    margin-right: 10px;
    font-size: 1.2rem;
}

.about-image {
    height: 400px;
    background-color: var(--light-blue);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-blue);
    width: 100%;
    height: 100%;
    position: relative;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder span {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    font-weight: 600;
}

/* ===== INFRASTRUCTURE SECTION WITH IMAGES ===== */
.infrastructure {
    background-color: var(--light-gray);
}

.machinery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.machine-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.machine-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.machine-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.machine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.machine-card:hover .machine-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 51, 102, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    cursor: pointer;
}

.machine-card:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    color: rgb(210, 43, 43);
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: var(--transition);
}

.machine-card:hover .image-overlay i {
    transform: scale(1);
}

.machine-card h3 {
    color: var(--primary-blue);
    margin: 20px 20px 10px;
    font-size: 1.4rem;
}

.machine-card > p {
    color: var(--medium-gray);
    margin: 0 20px 15px;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.machine-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 20px 20px;
    border-top: 1px solid var(--light-gray);
    background-color: rgba(230, 240, 255, 0.3);
}

.machine-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--secondary-blue);
    font-weight: 500;
}

.machine-specs i {
    color: var(--accent-red);
    font-size: 0.9rem;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-modal:hover {
    background-color: var(--accent-red);
    transform: rotate(90deg);
}

#modalImage {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.modal-caption {
    padding: 20px;
    background-color: var(--white);
}

.modal-caption h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.modal-caption p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ===== INDUSTRIES SECTION ===== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.industry-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.industry-image {
    height: 180px;
    background-color: var(--light-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-blue);
    position: relative;
}

.industry-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.7;
}

.wind-energy::before {
    background-image: url('https://images.unsplash.com/photo-1562519990-50eb51e282b2?q=80&w=1332&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.boiler::before {
    background-image: url('https://plus.unsplash.com/premium_photo-1664392017626-010b484507f4?q=80&w=757&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.oil-gas::before {
    background-image: url('https://plus.unsplash.com/premium_photo-1682148780224-8de53fe4b224?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.railway::before {
    background-image: url('https://plus.unsplash.com/premium_photo-1661901800743-0a90a14d7f44?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.industrial-valves::before {
    background-image: url('https://plus.unsplash.com/premium_photo-1682146608393-30f525641b36?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.heavy-machinery::before {
    background-image: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?q=80&w=1332&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.industry-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-blue);
}

.industry-card p {
    padding: 0 20px 20px;
    color: var(--medium-gray);
}

/* ===== WHY US SECTION ===== */
.why-us {
    /*--primary-blue: #003366;*/
    background-color: #003366;
    color: var(--white);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition);
}

.benefit-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.benefit-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.benefit-card p {
    opacity: 0.9;
}

/* ===== GALLERY SECTION ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--light-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary-blue);
    transition: var(--transition);
    position: relative;
}

.gallery-item:hover .gallery-placeholder {
    background-color: var(--primary-blue);
    color: var(--white);
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

.gallery-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.gallery-placeholder span {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    font-weight: 600;

}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications {
    background-color: var(--light-gray);
}

.certifications-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 50px auto 0;
    max-width: 1400px;
    flex-wrap: nowrap;
    overflow: visible;
    padding: 15px 30px;
}

/* Individual Certificate Box - Increased size */
.certification-box {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px 20px;
    width: 230px; /* Increased from 200px */
    height: 260px; /* Increased from 220px */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--light-blue);
    transition: var(--transition);
    text-decoration: none;
    color: var(--dark-gray);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    box-sizing: border-box;
    box-shadow: var(--shadow);
}

.certification-box:hover {
    background-color: var(--white);
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-red);
    z-index: 10;
}

/* Icon - Increased size */
.cert-icon {
    font-size: 3rem; /* Increased from 2.5rem */
    color: var(--accent-red);
    margin-bottom: 20px; /* Increased from 15px */
    transition: all 0.3s ease;
    height: 60px; /* Increased from 50px */
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-box:hover .cert-icon {
    transform: scale(1.15);
    color: #B22222;
}

/* Certificate Name - Adjusted for larger box */
.cert-name {
    font-weight: 700;
    font-size: 1.1rem; /* Increased from 1rem */
    text-align: center;
    margin-bottom: 10px; /* Increased from 8px */
    line-height: 1.3;
    height: 55px; /* Increased from 45px */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    color: var(--primary-blue);
}

/* Description - Adjusted for larger box */
.cert-desc {
    font-size: 0.7rem; /* Increased from 0.8rem */
    font-weight: 700;
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: 20px; /* Increased from 15px */
    line-height: 1.4;
    height: 45px; /* Increased from 40px */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
}

/* PDF indicator - Adjusted for larger box */
.pdf-indicator {
    font-size: 0.85rem; /* Increased from 0.75rem */
    color: var(--white);
    background-color: var(--accent-red);
    padding: 6px 15px; /* Increased from 5px 12px */
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px; /* Increased from 5px */
    transition: all 0.3s ease;
    font-weight: 600;
    border: 1px solid var(--accent-red);
}

.pdf-indicator i {
    font-size: 0.95rem; /* Increased from 0.85rem */
    color: var(--white);
}

.certification-box:hover .pdf-indicator {
    background-color: #003366 ;
    border-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* Customer Logo*/
.trusted-section {
    text-align: center;
    padding: 40px 0;
    background: #fff;
}

    .trusted-section h2 {
        /* font-weight: 700; */
        margin-bottom: 40px;
        color: #003366;
    }

/* OUTER WRAPPER */
.logo-slider {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

/* TRACK (2  DUPLICATE FOR INFINITE) */
.logo-track {
    display: inline-flex;
    animation: scroll 20s linear infinite;
}

/* LOGO BOXES (EQUAL SIZE) */
.logo-box {
    width: 220px;
    height: 120px;
    margin-right: 40px;
    /*border: 1px solid #ddd;*/
    border-radius: 12px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: 0.3s;
}

    .logo-box img {
        max-width: 100%;
        max-height: 80px;
        object-fit: contain;
        opacity: 0.85;
        transition: 0.3s;
    }

    /* HOVER EFFECT */
    .logo-box:hover {
        transform: scale(1.05);
        border-color: #bbb;
    }

    .logo-box img:hover {
        opacity: 1;
    }

/* TRUE INFINITE LOOP KEYFRAMES */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
    /* move half because track is duplicated */
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .logo-box {
        width: 150px;
        height: 90px;
        padding: 10px;
        margin-right: 20px;
    }

        .logo-box img {
            max-height: 60px;
        }
}

/* ===== CTA SECTION ===== */
.cta-fabrication {
    background: linear-gradient(135deg, #0b1c2d, #102a44);
    padding: 80px 20px;
    color: #fff;
    margin-bottom: 60px;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto 35px;
    line-height: 1.6;
    color: #d1d9e6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Primary Button */
.button-primary {
    background: #B22222;
    color: #fff;
    padding: 14px 34px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

    .button-primary:hover {
        background: #d83434;
        transform: translateY(-2px);
    }

/* Outline Button */
.button-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 34px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

    .button-outline:hover {
        background: #fff;
        color: #102a44;
    }

/* Responsive */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }
}


#contact {
    display: none !important;
}


/* ===== CONTACT SECTION ===== */
/*.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--accent-red);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.contact-form {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
}

.contact-form h3 {
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(0, 51, 102, 0.1);
}*/

/* FOOTER BASE */
.footer {
    background: #043466;
    color: #fff;
    padding: 60px 80px;
    font-family: Montserrat, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    font-size: 10px;
}

.footer-col h2 {
    font-size: 15px;
}
/* HEADINGS */
.footer-col h2,
.footer-col h3 {
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-col h3 {
    font-size: 18px;
}

.footer-col p {
    margin-bottom: 20px;
    margin-top: -9px;
    color: #d0d7e8;
    font-size: 10px;
}

/* LISTS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            color: #d0d7e8;
            text-decoration: none;
            transition: 0.3s;
            font-size: 12px;
        }

            .footer-col ul li a:hover {
                color: #fff;
            }

/* CONTACT INFO ICON FIX */
.Footer-info li {
    display: flex;
    align-items: center;
}

.Footer-info i {
    margin-right: 10px;
    color: #fff;
}

/* SOCIAL ICONS ROUND EFFECT */
.footer-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 15px;
    margin-right: 12px;
    text-decoration: none;
    transition: 0.3s ease;
    color: #fff !important;
}

    .footer-icons a i {
        color: #fff !important;
        font-size: 18px;
    }

    .footer-icons a:hover {
        background: #e60000; /* circle turns red on hover */
        transform: translateY(-3px);
    }

/* COPYRIGHT */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #1e4f83;
    text-align: center;
    color: #cdd6e5;
    font-size: 14px;
    margin-bottom: -35px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1400px) {
    .certifications-container {
        gap: 25px;
        padding: 15px 40px;
    }
    
    .certification-box {
        width: 220px;
        height: 250px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .certifications-container {
        gap: 20px;
        padding: 15px 30px;
    }
    
    .certification-box {
        width: 210px;
        height: 240px;
        padding: 25px 18px;
    }
    
    .cert-icon {
        font-size: 2.8rem;
    }
    
    .cert-name {
        font-size: 1.05rem;
        height: 50px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .certifications-container {
        gap: 18px;
        padding: 15px 20px;
    }
    
    .certification-box {
        width: 190px;
        height: 230px;
        padding: 25px 15px;
    }
    
    .cert-icon {
        font-size: 2.6rem;
        height: 55px;
    }
    
    .cert-name {
        font-size: 1rem;
        height: 48px;
    }
    
    .cert-desc {
        font-size: 0.85rem;
        height: 42px;
    }
}

/* Tablet - Show all 5 boxes with horizontal scroll if needed */
@media (min-width: 768px) and (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--white);
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
        gap: 20px;
        align-items: flex-start;
    }
    
    .nav-menu.show {
        left: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero {
        padding-top: 140px;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 20px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .machinery-grid,
    .industries-grid,
    .benefits-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certifications-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 15px 20px;
        justify-content: center;
        gap: 15px;
    }
    
    .certification-box {
        width: 180px;
        height: 220px;
        padding: 20px 15px;
        flex-shrink: 0;
    }
    
    .cert-icon {
        font-size: 2.2rem;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .cert-name {
        font-size: 0.95rem;
        height: 45px;
    }
    
    .cert-desc {
        font-size: 0.8rem;
        height: 40px;
        margin-bottom: 15px;
    }
    
    .pdf-indicator {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .machinery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .machine-card {
        margin: 0 auto;
    }

    .machine-image {
        height: 200px;
    }

    .specs-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile Landscape - Show all 5 boxes with scroll */
@media (min-width: 576px) and (max-width: 767px) {
    .section {
        padding: 60px 0;
    }
    
    .hero {
        min-height: 85vh;
        padding-top: 130px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        padding: 15px;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .certifications-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 15px 15px;
        gap: 12px;
        justify-content: flex-start;
    }
    
    .certification-box {
        width: 170px;
        height: 210px;
        padding: 20px 12px;
        flex-shrink: 0;
    }
    
    .cert-icon {
        font-size: 2rem;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .cert-name {
        font-size: 0.9rem;
        height: 42px;
    }
    
    .cert-desc {
        font-size: 0.75rem;
        height: 38px;
        margin-bottom: 12px;
    }
    
    .pdf-indicator {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

@media (max-width: 767px) {

    .machinery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .machine-card {
        margin: 0 auto;
    }

    .machine-image {
        height: 200px;
    }

    .specs-container {
        grid-template-columns: 1fr; /* single column */
        gap: 20px;
        width: 100%;
        padding: 0 20px;
    }

    .spec-heading {
        font-size: 24px;
        padding: 0 20px;
    }

    .specs-list li {
        font-size: 14px;
    }
}

/* Mobile Portrait - Scroll to see all 5 */
@media (max-width: 575px) {
    .hero {
        min-height: 80vh;
        padding-top: 120px;
        padding-bottom: 50px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 15px;
    }
    
    .certifications-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 15px 15px;
        gap: 10px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .certification-box {
        width: 160px;
        height: 200px;
        padding: 18px 10px;
        flex-shrink: 0;
    }
    
    .cert-icon {
        font-size: 1.8rem;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .cert-name {
        font-size: 0.85rem;
        height: 38px;
    }
    
    .cert-desc {
        font-size: 0.7rem;
        height: 35px;
        margin-bottom: 10px;
    }
    
    .pdf-indicator {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
}

/* Hide scrollbar but keep functionality */
.certifications-container::-webkit-scrollbar {
    height: 6px;
    background: rgba(0, 51, 102, 0.1);
    border-radius: 3px;
}

.certifications-container::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 3px;
}

.certifications-container::-webkit-scrollbar-thumb:hover {
    background: #B22222;
}

/* Header responsive adjustments */
@media (max-width: 992px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
    
    .btn-sm {
        padding: 8px 20px !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
        min-height: 65px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-subtext {
        font-size: 0.7rem;
    }
}

/* Video fallback styles */
@media (max-width: 768px) {
    .hero {
        background: var(--primary-blue);
    }
    
    .video-background {
        display: block;
    }
    
    .hero-content {
        text-shadow: none;
    }
}

/* Ensure video covers properly on all devices */
.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* =========================
   Contact Page Hero Banner
========================= */
.contact-hero {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    margin: 40px 0 80px;
    /* background image comes from CSS or JS */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
}

    /* Dark overlay */
    .contact-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
    }

    /* Keep content above overlay */
    .contact-hero .container {
        position: relative;
        z-index: 2;
    }

    /* Heading */
    .contact-hero h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    /* Subtitle */
    .contact-hero p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.95;
        line-height: 1.6;
    }

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 90px 20px;
    }

        .contact-hero h1 {
            font-size: 34px;
        }

        .contact-hero p {
            font-size: 16px;
        }
}

/* Main Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Contact Form */
.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

    .contact-form h2 {
        color: #2c3e50;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--accent-red);
    }

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #2c3e50;
    }

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border 0.3s;
}

    .form-control:focus {
        border-color: #3498db;
        outline: none;
    }

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--accent-red);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

    .submit-btn:hover {
        background-color: #B22222;
    }

/* Contact Info */
.contact-info {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

    .contact-info h2 {
        color: #2c3e50;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--accent-red);
    }

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    background-color: #f0f7ff;
    color: var(--accent-red);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 20px;
}

.info-text h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.info-text p {
    color: #666;
}

/* Social Media */
.social-links {
    margin-top: 40px;
}

    .social-links h3 {
        color: #2c3e50;
        margin-bottom: 15px;
    }

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: #f0f7ff;
    color: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}

    .social-icon:hover {
        background-color: #3498db;
        color: white;
        transform: translateY(-3px);
    }

/* Map Placeholder */
.map-container {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

    .map-container iframe {
        width: 100%;
        height: 100%;
    }

/* Success Message */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    display: none;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}



/* Services page*/

/* HERO SECTION */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* adjust opacity as needed */
    z-index: 2;
}

/* Text Container */
.hero-content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    color: #fff;
}

    /* Heading */
    .hero-content h1 {
        font-size: 48px;
        font-weight: 600;
        margin-bottom: 20px;
        opacity: 0;
        animation: fadeInUp 1s ease-out forwards;
        animation-delay: 0.3s;
    }

    /* Paragraph */
    .hero-content p {
        max-width: 650px;
        font-size: 18px;
        line-height: 1.7;
        color: #e6e6e6;
        opacity: 0;
        animation: fadeInUp 1s ease-out forwards;
        animation-delay: 0.6s;
    }

/* Fade-In Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-video-section {
        height: 450px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .hero-video-section {
        height: 380px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px;
    }
}
/* Section Spacing */
.two-column-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Container */
.two-column-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Text Styling */
.column h2 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #222;
}

.column p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #444;
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .column h2 {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .container {
        width: 92%;
    }

    .column p {
        font-size: 15px;
    }
}

/* Section Background */
.specs-section {
    background: #071839; /* dark blue like your screenshot */
    padding: 70px 0;
    color: #fff;
}

/* specs-container */
.specs-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

/* Titles */
.spec-heading {
    font-size: 40px;
    margin-top: 1px;
    font-weight: 600;
    text-align: center;
}

/* Titles */
.spec-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Bullet List */
.spec-list {
    list-style: none;
    padding: 0;
}

    .spec-list li {
        font-size: 16px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .spec-list i {
        color: #d9534f; /* red accent arrows */
        font-size: 14px;
    }

/* Icon + Text Rows */
.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 16px;
}

.spec-icon {
    font-size: 35px;
    color: #fff;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .spec-item {
        justify-content: center;
    }

    .spec-list li {
        justify-content: center;
    }
}

/* Section Wrapper */
.capabilities {
    padding: 80px 0;
    background: #fff;
}

.capabilities-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Titles */
.capabilities-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 16px;
    color: #555;
}

/* Capability Item Layout */
.capability-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 80px;
}

/* Reverse for 2nd item */
.capability-item--reverse {
    flex-direction: row-reverse;
}

/* Text Content */
.capability-content {
    flex: 1;
}

.capability-title {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 700;
}

.capability-subtitle {
    font-size: 18px;
    color: #d35400;
    font-weight: 600;
    margin-bottom: 12px;
}

.capability-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* Images */
.capability-image {
    flex: 1;
    text-align: center;
}

    .capability-image img {
        width: 100%;
        max-width: 500px;
        height: auto;
        object-fit: contain;
    }

/* Responsive Fix */
@media (max-width: 768px) {
    .capability-item,
    .capability-item--reverse {
        flex-direction: column;
        text-align: center;
    }

    .capability-content {
        text-align: center;
    }

    .capability-image img {
        max-width: 100%;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://media.istockphoto.com/id/1185871218/photo/welder-works-in-metal-construction-construction-and-processing-of-steel-components.jpg?s=2048x2048&w=is&k=20&c=CCgPyWQn6bE22HqEAC_UYu7lJ8gP2lNKCk_W-DB2-K0=');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #e74c3c;
}

    .cta-button:hover {
        background-color: transparent;
        border-color: white;
    }

.contact-btn {
    display: inline-block;
    background: #e63946;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    transition: background 0.3s ease;
    font-weight: 600;
}

    .contact-btn:hover {
        background: #c1121f;
    }



/* Solution page */
.solution {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    overflow: hidden;
    color: #fff;
    font-family: Arial, sans-serif;
}

.solution-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    object-fit: cover;
    z-index: 1;
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}

.solution-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; /* Bigger width */
    max-width: 900px; /* Looks premium */
    text-align: center;
    z-index: 3;
}

    .solution-content h1 {
        font-size: 46px; /* Bigger heading */
        font-weight: 700;
        margin-bottom: 20px;
        color: #fff;
        text-align: center;
    }

    .solution-content p {
        font-size: 18px;
        line-height: 1.8;
        color: #fff;
        text-align: center;
    }

/* Intro Section */
.two-column-section {
    width: 90%;
    margin: auto;
    padding: 80px 0;
    margin-top: -50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    font-family: Arial, sans-serif;
    background: #ffffff;
}

/* Text Column */
.content-box h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.content-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
}

/* Red Highlight Text */
.highlight {
    color: #d63e3e;
    font-weight: 600;
}

/* Responsive */
@media(max-width: 900px) {
    .two-column-section {
        grid-template-columns: 1fr;
    }
}

/* Section */
.process-section {
    padding: 70px 0;
    background: #f8f9fa;
    font-family: Montserrat, sans-serif;
    text-align: center;
}

/* Title */
.process-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #e14141;
}

/* Grid */
.process-grid {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Process Box */
.process-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0px 0px 0px rgba(0,0,0,0.1);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
    border: 1px solid #E14141;
}

    /* Hover animation */
    .process-box:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0px 15px 25px rgba(0,0,0,0.15);
        background: #ffffff;
    }

    /* Icon */
    .process-box .icon {
        font-size: 38px;
        color: #e14141;
        margin-bottom: 18px;
        transition: 0.3s ease;
    }

    /* Icon hover color */
    .process-box:hover .icon {
        color: #1c4ceb;
    }

    /* Title */
    .process-box h3 {
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #333;
    }

    /* Text */
    .process-box p {
        font-size: 15px;
        color: #555;
        line-height: 1.6;
    }

/* Responsive */
@media(max-width: 900px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Expertise-Section */
.expertise-section {
    position: relative;
    padding: 90px 0;
    color: #fff;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

/* Background Image */
.expertise-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/DesignExpertise.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Dark Overlay */
.expertise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 40, 0.7); /* deep dark blue overlay */
    z-index: 2;
}

/* Content Area */
.expertise-content {
    position: relative;
    z-index: 3;
    width: 80%;
    margin: auto;
    text-align: center;
}

    /* Heading */
    .expertise-content h2 {
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 50px;
    }

/* 2 Column Layout */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    text-align: left;
}

    /* Lists */
    .expertise-grid ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .expertise-grid ul li {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.7;
            display: flex;
            align-items: flex-start;
        }

/* Arrow Icon */
.arrow {
    color: #d63e3e; /* red arrow like screenshot */
    font-size: 22px;
    margin-right: 10px;
    font-weight: bold;
    line-height: 1;
}

/* Responsive */
@media(max-width: 900px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-content {
        width: 90%;
    }
}

/* CTA SECTION WRAPPER */
.CTA-section {
    position: relative;
    background: url('images/bg-fade.jpg') center/cover no-repeat;
    padding: 120px 0;
    color: #fff;
}

/* Dark Blue Transparent Overlay */
.CTA-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 22, 58, 0.85);
    z-index: 1;
}

/* Content Layout */
.CTA-container {
    position: relative;
    z-index: 2;
    width: 80%;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* Left Side Text */
.CTA-content h1 {
    font-size: 25px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}

.CTA-content p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 30px;
}

/* CTA BUTTON */
.CTA-btn {
    display: inline-block;
    background: #d33;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

    .CTA-btn i {
        margin-left: 8px;
    }

    .CTA-btn:hover {
        background: #b82a2a;
    }

/* Right Side Video */
.CTA-video video {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}


/* About page*/
/* About Section Wrapper */
.About {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* Background Video */
.About-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Overlay */
.About-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}

/* Center Content */
.About-content {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    text-align: center;
    z-index: 3;
}

    .About-content h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .About-content p {
        font-size: 17px;
        line-height: 1.8;
    }

/* Responsive */
@media(max-width: 768px) {
    .About-content {
        width: 90%;
    }

        .About-content h1 {
            font-size: 28px;
        }

    .top-bar {
        flex-direction: column;
        gap: 10px;
    }

    .logo-box {
        top: 100px;
    }
}

/* SECTION WRAPPER */
.service-intro-section {
    padding: 60px 8%;
    background: #fff;
}

/* MAIN HEADING PART */
.intro-content {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

    .intro-content h2 {
        font-size: 40px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #555;
    }

    .intro-content p {
        font-size: 17px;
        line-height: 1.7;
        color: #555;
    }

/* GRID LAYOUT */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* SERVICE BOXES */
.service-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #c2361e;
}

.service-box p {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* BUTTON STYLE (Outlined) */
.service-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #c2361e;
    color: #c2361e;
    text-decoration: none;
    font-size: 15px;
    border-radius: 5px;
    transition: 0.3s ease;
}

    .service-btn:hover {
        background: #c2361e;
        color: #fff;
    }

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .intro-content h2 {
        font-size: 30px;
    }
}

/* SECTION WRAPPER */
.mvv-section {
    padding: 60px 8%;
    background: #fff;
}

/* INTRO */
.mvv-intro {
    max-width: 1000px;
    margin: 0 auto 50px;
}

    .mvv-intro h2 {
        font-size: 36px;
        font-weight: 600;
        color: #444;
        margin-bottom: 20px;
    }

    .mvv-intro p {
        font-size: 17px;
        line-height: 1.7;
        color: #555;
    }

/* GRID */
.mvv-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

/* HEADINGS */
.mvv-block h3,
.mvv-right h3 {
    color: #c2361e;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* TEXT */
.mvv-block p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 35px;
}

.values-list {
    list-style: none;
    padding: 0;
}

    .values-list li {
        font-size: 16px;
        color: #444;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .values-list strong {
        color: #c2361e;
        font-weight: 600;
    }

/* ------------------------- */
/* SOFT ANIMATION */
/* ------------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mvv-intro h2 {
        font-size: 30px;
    }
}

/* SECTION */
.stats-row-section {
    padding: 40px 5%;
    background: #f7f7f7;
}

/* ONE LINE */
.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: nowrap;
}

/* STAT ITEM */
.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

/* SOLID RED CIRCLE */
.icon-circle {
    width: 70px;
    height: 70px;
    background: #c2361e; /* SOLID RED */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    /* ICON (WHITE) */
    .icon-circle img {
        width: 40px;
        filter: brightness(0) invert(1);
        opacity: 1;
    }

/* TEXT */
.stat-info h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #c2361e;
}

.stat-info h2 span {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    color: #c2361e;
}

.stat-info p {
    margin: 3px 0 0;
    font-size: 14px;
    color: #555;
    line-height: 1.3;
}

/* SECTION BACKGROUND */
.video-feature-section {
    background: #dce1e6; /* light grey like screenshot */
    padding: 60px 5%;
}

/* MAIN FLEX CONTAINER */
.video-feature-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT SIDE */
.video-feature-left {
    flex: 1;
}

    .video-feature-left h2 {
        font-size: 36px;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 20px;
        color: #333;
    }

    .video-feature-left p {
        font-size: 16px;
        line-height: 1.6;
        color: #444;
        margin-bottom: 25px;
    }
    /*About CTA Button */
    .cta-btns {
    padding: 10px 22px;
    background: transparent;
    border: 1px solid #c2361e;
    border-radius: 6px;
    text-decoration: none;
    color: #c2361e;
    font-size: 15px;
    transition: 0.3s ease;
    font-weight: 600;
}

.cta-btns:hover {
    background: #00246C;
    border: 1px solid #c4c4c4;
    border-radius: 6px;
    color: #fff;
}

/* RED BUTTON */
.cta-btn {
    background: #c2361e;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 6px;
    display: inline-block;
    transition: 0.3s;
}

    .cta-btn:hover {
        background: #a52b18;
    }

/* RIGHT VIDEO */
.video-feature-right {
    flex: 1;
}

    .video-feature-right video {
        width: 100%;
        max-width: 600px;
        border-radius: 5px;
    }

/* RESPONSIVE */
@media (max-width: 1000px) {
    .video-feature-container {
        flex-direction: column;
        text-align: center;
    }

    .video-feature-left {
        max-width: 600px;
        margin: 0 auto;
    }

    .video-feature-right video {
        max-width: 100%;
    }
}


/* How We Work Page*/
/* Hero Section Wrapper */
.how-we-banner {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    color: #fff;
    e}

/* Background Video */
.how-we-banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Overlay */
.how-we-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}

/* Center Content */
.how-we-banner-content {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    text-align: center;
    z-index: 3;
  }

    .how-we-banner-content h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 20px;
        }

    .how-we-banner-content p {
        font-size: 17px;
        line-height: 1.8;
    }

/* Responsive */
@media(max-width: 768px) {
    .how-we-banner-content {
        width: 90%;
    }

        .how-we-banner-content h1 {
            font-size: 28px;
        }

    .top-bar {
        flex-direction: column;
        gap: 10px;
    }
}

/* Main Section */
.how-we-work {
    padding: 60px 0 40px;
    
}

.hww-container {
    width: 92%;
    max-width: 1150px;
    margin: 0 auto;
}

/* Titles */
.hww-title {
    font-size: 32px;
    font-weight: 600;
    color: #242424;
    margin-bottom: 10px;
    /*margin-left: -40px;*/
}

.hww-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin-bottom: 40px;
    line-height: 1.6;
    /*margin-left: -40px;*/
}

/* Layout Row */
.hww-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 100px;
    gap: 50px;
    /*margin-left: -40px;*/
}

.hww-left {
    flex: 1;
    max-width: 650px;
    /*margin-left: -150px;*/
}
/* Heading */

.hww-heading {
    color: #d62828;
    font-size: 26px;
    margin-bottom: 10px;
}
/* Grey Line Box */

.hww-line {
    border-left: 2px solid #e5e5e5;
    padding-left: 20px;
    margin-top: 5px;
}

.hww-text {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 620px;
   }
/* Buttons */

.hww-buttons {
    margin-top: 10px;
}

.hww-btn {
    background: #d62828;
    color: #fff;
    padding: 9px 20px;
    display: inline-block;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
    margin-right: 8px;
}

.hww-btn-outline {
    padding: 8px 18px;
    display: inline-block;
    font-size: 14px;
    border: 1px solid #aaa;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
}

    .hww-btn-outline:hover {
        background: #333;
        color: #fff;
    }
/* Video & Image */

.hww-video, .hww-right img {
    /*width: 480px;*/
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    margin-left: 140px;
}
/* Responsive */

@media (max-width: 850px) {
    .hww-row {
        flex-direction: column;
    }

    .hww-video, .hww-right img {
        width: 100%;
        margin-top: 20px;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

/* Background video */
.cta-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    animation: fadeInVideo 1.4s ease forwards;
}

/* Dark overlay */
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 32, 41, 0.72);
    z-index: 2;
}

/* Text Content */
.cta-content {
    position: relative;
    z-index: 3;
    animation: fadeInText 1.6s ease forwards;
    opacity: 0;
}

    .cta-content h2 {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .cta-content p {
        font-size: 16px;
        margin-bottom: 25px;
        opacity: 0.9;
    }

/* CTA Button */
.cta-btn {
    padding: 10px 22px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    transition: 0.3s ease;
}

    .cta-btn span {
        font-size: 16px;
        margin-left: 4px;
    }

    .cta-btn:hover {
        background: #ffffff;
        color: #000;
    }

/* Animations */
@keyframes fadeInVideo {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        height: 300px;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    .cta-content p {
        font-size: 14px;
    }
}

/* Wrapper to allow left vertical label */
.v-wrapper {
    display: grid;
    grid-template-columns: 120px 1fr 1fr;
    align-items: stretch;
    gap: 40px;
    }

/* Left vertical label block */
.v-left {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Vertical label text */
.vertical-tag {
    writing-mode: vertical-rl;
    transform: rotate(180deg) translateX(40px);   /* RIGHT → LEFT */
    font-size: 42px;
    font-weight: 700;
    color: #7a8ed8;
    letter-spacing: 2px;
    opacity: 0;
    transition: 0.9s ease;
    margin-left: -220px;
}

.vertical-tag.show {
    opacity: 1;
    transform: rotate(180deg) translateX(0);      /* End position */
}


/* Careers Page*/

/* Main section */
.sustain-hero {
    width: 100%;
    padding: 80px 100px;
    background: #073c59; /* Dark blue bg */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Left text */
.sustain-text h1 {
    font-size: 40px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.4;
}

    .sustain-text h1 span {
        font-weight: 700;
    }

/* Right circular image container */
.sustain-image-box {
    position: relative;
    width: 430px;
    height: 430px;
}

    /* Circular image */
    .sustain-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        position: relative;
        z-index: 2;
    }

.career-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 60px 80px;
    gap: 50px;
    background: #fafafa;
}

/* LEFT CONTENT */
.career-left {
    width: 65%;
}

    .career-left h1 {
        font-size: 38px;
        color: #222;
        margin-bottom: 20px;
    }

    .career-left h2 {
        font-size: 26px;
        color: #c62828;
        margin: 35px 0 10px;
    }

    .career-left p {
        font-size: 16px;
        line-height: 1.7;
        color: #444;
        margin-bottom: 15px;
    }

    .career-left a {
        color: #c62828;
        text-decoration: none;
        font-weight: bold;
    }

/* RIGHT SIDEBAR CARD */
.career-right {
    width: 32%;
}

/* Image full width & rounded */
.career-img-box {
    width: 100%;
    height: 800px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

    .career-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Titles */
.career-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #333;
}

.no-vacancy {
    color: #c62828;
    margin-bottom: 20px;
}

/* Button */
.career-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #c62828;
    color: #FD1300;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
}

    .career-btn:hover {
        background: #B22222;
        color: #fff;
    }

/* Outer Wrapper */
.help-section {
    width: 100%;
    background: #e8e8e8;
    padding: 50px 60px;
    position: relative;
}

/* Flex row */
.help-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* LEFT IMAGE + ARC */
.help-image-wrapper {
    position: relative;
    width: 170px;
    height: 170px;
    animation: fadeIn 1.2s ease forwards;
}

    .help-image-wrapper img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
    }

/* Animated Arc */
.help-arc {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 10px solid #0f3e5a;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
    top: -18px;
    left: -18px;
    transform: rotate(25deg);
    opacity: 0;
    animation: arcFade 1.4s ease 0.3s forwards;
}

/* CENTER TEXT */
.help-center h2 {
    font-size: 36px;
    color: #0f3e5a;
    font-weight: 300;
    opacity: 0;
    animation: slideUp 1s ease 0.4s forwards;
}

    .help-center h2 strong {
        font-weight: 700;
    }

/* RIGHT BUTTON AREA */
.help-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Solid Button */
/*.btn-primary {
    background: #FD1300;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}*/

    /* Hover effect */
    .btn-primary:hover {
        background: #B22222;
        transform: translateY(-3px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.25);
    }

/* Outline Button */
.btn-outline {
    border: 1px solid #FD1300;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    color: #0f3e5a;
    transition: 0.3s ease;
}

    /* Hover animation */
    .btn-outline:hover {
        background: #B22222;
        color: #fff;
        transform: translateY(-3px);
    }

/* Bottom bar */
.bottom-bar {
    width: 180px;
    height: 12px;
    background: #0f3e5a;
    position: absolute;
    bottom: 20px;
    right: 80px;
    opacity: 0;
    animation: slideRight 1s ease 0.6s forwards;
}

/* ============================= */
/*     ANIMATIONS                */
/* ============================= */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes arcFade {
    from {
        opacity: 0;
        transform: rotate(0deg) scale(0.9);
    }

    to {
        opacity: 1;
        transform: rotate(25deg) scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================= */
/*     RESPONSIVE DESIGN        */
/* ============================= */

@media (max-width: 992px) {
    .help-inner {
        flex-direction: column;
        text-align: center;
    }

    .help-right {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .bottom-bar {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 600px) {
    .help-section {
        padding: 40px 20px;
    }

    .help-center h2 {
        font-size: 28px;
    }

    .help-image-wrapper {
        width: 130px;
        height: 130px;
    }

    .btn-primary, .btn-outline {
        padding: 10px 22px;
        font-size: 14px;
    }
}


/* Full Section */
.joinus-section {
    position: relative;
    width: 101%;
    height: 380px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Video */
.joinus-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeInVideo 1.5s ease forwards;
}

/* Dark Overlay */
.joinus-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 22, 52, 0.86); /* deep navy overlay like screenshot */
    backdrop-filter: blur(1px);
}

/* Center Content */
.joinus-content {
    position: relative;
    text-align: center;
    color: #ffffff;
    animation: fadeUp 1.2s ease forwards;
}

    .joinus-content h1 {
        font-size: 42px;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .joinus-content p {
        font-size: 16px;
        margin-bottom: 12px;
        opacity: 0.9;
    }

.roles {
    font-size: 22px;
    letter-spacing: 1px;
    margin: 10px 0 20px;
    font-weight: 600;
}

    .roles span {
        color: #d43d3d; /* red slash like screenshot */
    }

/* Button */
.joinus-btn {
    display: inline-block;
    padding: 10px 28px;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
}

    .joinus-btn:hover {
        background: #ffffff;
        color: #B22222;
        transform: translateY(-3px);
    }

/* ======================= */
/* ANIMATIONS */
/* ======================= */

@keyframes fadeInVideo {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================= */
/* RESPONSIVE */
/* ======================= */

@media (max-width: 768px) {
    .joinus-section {
        height: 420px;
        padding: 30px;
    }

    .joinus-content h1 {
        font-size: 32px;
    }

    .roles {
        font-size: 18px;
    }
/** homepage about section **/
    .about-content {
        display: block;
    }

    .about-text {
        text-align: left; /* remove center alignment */
    }

        .about-text p {
            font-size: 15px;
            line-height: 1.6;
        }

    .about-list {
        padding-left: 0;
    }

        .about-list li {
            align-items: flex-start; /* align icon top */
            font-size: 14px;
            line-height: 1.5;
        }

        .about-list i {
            margin-top: 4px; /* align check icon */
        }

    .btn.btn-primary {
        display: inline-block;
        margin-top: 15px;
        padding: 10px 18px;
        font-size: 14px;
    }

    .about-image {
        margin-top: 30px;
        height: 300px;
    }

/** homepage gallery section **/
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item,
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
    }

/** Homepage banner **/
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: 10vh;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 22px;
    }

/** Career page **/
    .sustain-hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px 20px 40px;
        min-height: auto;
    }

    .sustain-text h1 {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 25px;
        margin-top: 50px;
        text-align: center;
    }

        .sustain-text h1 span {
            display: block;
            margin-top: 8px;
            font-size: 20px;
        }

    .sustain-image-box {
        width: 100%;
        display: flex;
        justify-content: center;
    }

        .sustain-image-box img {
            width: 100%;
            max-width: 390px;
            height: auto;
            border-radius: 50px; /* softer modern shape */
        }

    /* Optional: hide decorative arc on mobile */
    .white-arc {
        display: none;
    }

    .career-wrapper {
        flex-direction: column; /* stack vertically */
        padding: 40px 20px; /* reduce side padding */
        gap: 30px;
    }

    .career-left,
    .career-right {
        width: 100%; /* full width */
    }

        .career-left h1 {
            font-size: 26px;
        }

        .career-left h2 {
            font-size: 20px;
        }

        .career-left p {
            font-size: 15px;
        }

    .career-img-box {
        height: auto; /* remove fixed 800px height */
    }

        .career-img-box img {
            height: auto;
            border-radius: 10px;
        }

    .help-section {
        padding: 40px 20px;
        text-align: center;
    }

    .help-inner {
        flex-direction: column; /* stack vertically */
        align-items: center;
        gap: 30px;
    }

    /* Image smaller & centered */
    .help-image-wrapper {
        width: 130px;
        height: 130px;
    }

    .help-arc {
        width: 150px;
        height: 150px;
        border-width: 8px;
        top: -12px;
        left: -12px;
    }

    /* Text resize */
    .help-center h2 {
        font-size: 24px;
    }

    /* Buttons in row instead of column */
    .help-right {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    .btn-outline {
        padding: 10px 18px;
        font-size: 14px;
    }

    /* Move bottom bar to center */
    .bottom-bar {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 20px auto 0;
    }
}


/* ================= MOBILE Responsive ================= */
@media (max-width: 992px) {

.hamburger {
   display: block;
   z-index: 1100;
}

.nav-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  flex-direction: column;
  padding: 80px 25px 30px;
  gap: 20px;
  transition: 0.4s ease;
  box-shadow: 2px 0 20px rgba(0,0,0,0.15);
  z-index: 1050;
  align-items: flex-start;
  text-align: left;
}

.nav-menu.active {
      left: 0;
  }

  .nav-link {
      width: 100%;
      padding: 12px 0;
      font-size: 18px;
  }

.btn.btn-primary.btn-sm {
  width: 100%;
  text-align: center;
}

/* Dropdown mobile style */
.dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 15px;
    display: none;
}

.nav-item.active .dropdown-menu {
   display: block;
}

.logo {
  margin-left: 10px;
}

/** Mobile Footer **/
.footer {
   padding: 50px 20px; /* remove side overflow */
}

footer-container {
  grid-template-columns: 1fr 1fr; /* 2 columns on tablet */
   gap: 30px;
}

/** About us page**/
    .stats-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .stat-item {
        width: 48%;
        justify-content: flex-start;
    }

    .icon-circle {
        width: 55px;
        height: 55px;
    }

        .icon-circle img {
            width: 28px;
        }

    .stat-info h2 {
        font-size: 20px;
    }

    .stat-info p {
        font-size: 13px;
    }

/** Homepage gallery section **/
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 300px;
    }

}

@media (max-width: 600px) {
.footer-container {
   grid-template-columns: 1fr;  1 column on mobile 
   text-align: left;
 }

.footer-col {
   margin-bottom: 30px;
}

.footer-bottom {
   font-size: 12px;
   margin-bottom: 0;
}

.footer-icons {
   margin-top: 10px;
  }

/*About us page */
    .stat-item {
        width: 100%;
    }
}

/**About us page ipad landsacpe & potrait **/
@media (max-width: 992px) and (min-width: 769px) {

    .stats-row {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 20px;
    }

    .stat-item {
        width: auto;
        flex: 1;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

        .icon-circle img {
            width: 30px;
        }

    .stat-info h2 {
        font-size: 22px;
    }

    .stat-info p {
        font-size: 13px;
    }
}

/**Homepage about section ipad **/
@media (max-width: 769px) {
    .about-content {
        grid-template-columns: 1fr; /* Stack */
        gap: 40px;
    }

    .about-text {
        order: 1;
    }

    .about-image {
        order: 2;
        height: 350px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 14px;
    }
}

/** carrer page banner Ipad responsive **/
@media (min-width: 769px) and (max-width: 1024px) {
    .sustain-hero {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 500px;
    }

    .sustain-text {
        width: 55%;
    }

        .sustain-text h1 {
            font-size: 34px;
            line-height: 1.3;
        }

            .sustain-text h1 span {
                font-size: 28px;
            }

    .sustain-image-box {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

        .sustain-image-box img {
            width: 320px;
            height: 320px;
            object-fit: cover;
        }

/** Header **/
    .logo img {
        height: 30px;
        width: auto;
    }

    .logo-subtext {
        font-size: 10px;
    }

    .navbar {
        padding: 12px 20px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
    }

    .btn.btn-primary.btn-sm {
        padding: 8px 14px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {

    /* CTA-video */
    .CTA-container {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 0 20px;
        gap: 30px;
        text-align: left;
    }

    .CTA-section {
        padding: 60px 0;
    }

    .CTA-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .CTA-content p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
    }

    .CTA-btn {
        font-size: 16px;
        padding: 12px 20px;
    }

    .CTA-video video {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 767px) {

    .specs-section {
        padding: 50px 0;
    }

    .spec-heading {
        font-size: 22px;
        padding: 0 20px;
    }

    .specs-container {
        grid-template-columns: 1fr; /* single column */
        gap: 30px;
        width: 100%;
        padding: 0 20px;
    }

    .specs-list li {
        font-size: 14px;
    }
}

/* ===== MOBILE HARD RESET FOR HOW WE WORK ===== */
@media (max-width: 767px) {

    .how-we-work * {
        margin-left: 0 !important;
    }

    .hww-container {
        width: 100% !important;
        padding: 0 20px !important;
    }

    .hww-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        margin-bottom: 50px !important;
    }

    .hww-left,
    .hww-right {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hww-line {
        border-left: none !important;
        padding-left: 0 !important;
    }

    .v-left {
        display: none !important;
    }

    .hww-video,
    .hww-right img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}

@media (max-width: 767px) {

    .specs-section {
        padding: 50px 0;
    }

    .spec-heading {
        font-size: 22px;
        padding: 0 20px;
        text-align: left;
    }

    .specs-container {
        width: 100%;
        padding: 0 20px;
        grid-template-columns: 1fr; /* single column */
        gap: 25px;
    }

    .spec-box {
        width: 100%;
    }

    .specs-list {
        padding-left: 0;
    }

        .specs-list.li {
            font-size: 18px;
            padding-left: -60px;
        }
}