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

:root {
    --primary-blue: #00aaff;
    --dark-navy: #03445B;
    --light-blue-bg: #f8fbff;
    --text-color: #333;
    --text-light: #555;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Prevent horizontal overflow (remove X scrollbar) */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

header {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
    /* Establish positioning context for mega menu */
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 180px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    white-space: nowrap;
}

.dropdown-menu ul li a {
    color: #fff;
}

.nav-links li a {
    text-decoration: none;
    font-size: 16px;
    color: #334155;
    transition: 0.3s;
    display: inline-block;
}

.nav-links li a:hover {
    color: #0ea5e9;
}

.dropdown {
    position: relative;
    /* Changed from static to relative for scoped positioning */
}

/* Redesigned Services Dropdown */
.dropdown-menu {
    position: absolute;
    top: 247%;
    left: 0;
    width: 340px;
    background: #ffffff;
    padding: 0;
    list-style: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    /* Controlled by JS */
    z-index: 1000;
    border-radius: 4px;
    border-top: 3px solid #00aaff;
    /* Teal/Blue highlight line */
}

/* Only show when display: block is set by JS */
.dropdown-menu[style*="display: block"] {
    display: block !important;
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu ul li {
    margin: 0;
    padding: 0;
}

.dropdown-menu ul li a {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    /* Dark text */
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    /* Subtle divider */
    transition: all 0.2s ease;
}

.dropdown-menu ul li:last-child a {
    border-bottom: none;
}

/* Hover Effect */
.dropdown-menu ul li a:hover {
    background-color: #f8fbff;
    /* Very light blue bg */
    color: #00aaff;
    /* Blue text on hover */
    padding-left: 25px;
    /* Subtle slide effect */
}

/* Mega menu styles removal/override */
.mega-column {
    display: none;
    /* Ensure old classes don't interfere if present */
}

/* Mobile responsive */
.menu-icon {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* Mobile */
@media (min-width: 1024px)and (max-width: 1439px) {
    .navbar {
        padding: 0 30px;
    }

    .dropdown-menu {
        padding: 30px;
    }
}

@media (max-width: 1023px) {

    .navbar {
        padding: 15px 30px;
    }

    .menu-icon {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 75px;
        right: 0;
        width: 100%;
        background: linear-gradient(to bottom, #0f172a, #1e293b);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        display: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 15px 0;
        font-size: 18px;
        color: #ffffff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links li a:hover {
        background: rgba(255, 255, 255, 0.05);
        color: #38bdf8;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        box-shadow: none;
        display: none;
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
        background: rgba(0, 0, 0, 0.2);
        border-top: none;
    }

    .dropdown-menu[style*="display: block"] {
        display: grid !important;
    }

    .mega-column {
        padding: 20px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mega-column h3 {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 16px;
        color: #38bdf8;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
    }

    .mega-column ul {
        text-align: left;
    }

    .mega-column li {
        padding: 8px 0;
        font-size: 14px;
        color: #cbd5e1;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: auto;
        text-align: left;
    }

    .mega-column li:hover {
        color: #fff;
        transform: translateX(5px);
        background: transparent;
    }

    /* Center the Services dropdown title and caret in mobile menu */
    .dropdown-title {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: 100%;
        padding: 12px 0;
    }

    .dropdown-title a {
        display: inline-block;
        color: #ffffff !important;
        font-size: 18px;
        padding: 0;
    }

    .dropdown-title i {
        color: #ffffff !important;
        font-size: 12px;
        transition: transform 0.3s;
        margin-left: 6px;
    }
}

/* Banner  */

.banner {
    width: 100%;
    height: 500px;
    /* Background moved to slides */
    background-color: #0f172a;
    display: flex;
    align-items: center;
    padding-left: 150px;
    color: white;
    position: relative;
    overflow: hidden;
}

.banner-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    border-radius: 50%;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
}

.banner h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.banner p {
    margin-top: 10px;
    font-size: 22px;
}

.banner-buttons {
    margin-top: 25px;
    display: flex;
    gap: 20px;
}

.banner_btn {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.approach-card {
    background: #ffffff;
    padding: 30px 28px;
    border-radius: 14px;
    border: 1px solid #f1f5f9;
    text-align: left;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(2,6,23,0.06);
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(2,6,23,0.08);
    border-color: transparent;
}

.approach-card h3 {
    font-size: 1.2rem;
    color: #06202a;
    margin-bottom: 12px;
    font-weight: 700;
}

.approach-card p {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.7;
    flex: 1;
}

@media (max-width: 767px) {
    .banner {
        padding: 40px;
        text-align: left;
        height: auto;
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .banner h1 {
        font-size: 32px;
    }

    .banner p {
        font-size: 18px;
    }

    .banner-buttons {
        flex-direction: column;
        width: 200px;
    }
}

/* Overview */
.overview {
    padding: 80px 150px;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

.overview-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.overview-left {
    flex: 1;
}

.overview-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

.overview-left p {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 15px;
}

.overview-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.overview-right img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    object-fit: cover;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
    .overview {
        padding: 60px 80px;
    }
}

@media (max-width: 767px) {
    .overview {
        padding: 40px 30px;
    }

    .overview-container {
        flex-direction: column;
        text-align: center;
    }

    .overview-right img {
        max-width: 350px;
    }
}


/* Footer */

.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 150px 40px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-section a {
    text-decoration: none;
    color: #94a3b8;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
    font-size: 14px;
}

/* ---------- RESPONSIVE ---------- */

/* 1024px screens */
@media (max-width: 1024px) {
    .footer {
        padding: 50px 80px;
    }

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

/* 768px screens */
@media (max-width: 767px) {
    .footer {
        padding: 40px 30px;
    }

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


/* Contact Us Section */
.contact-us-section {
    padding: 60px 20px;
    background-color: #f8fbff;
    color: #333;
    font-family: Arial, sans-serif;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #001f3f;
    margin-bottom: 15px;
}

.contact-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    line-height: 1.6;
}

/* Global Presence */
.global-presence {
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: center;
}

.global-presence h3 {
    font-size: 2rem;
    color: #001f3f;
    margin-bottom: 30px;
}

.presence-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.presence-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    width: 45%;
    min-width: 300px;
    display: flex;
    gap: 20px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.card-icon {
    font-size: 2rem;
    color: #3498db;
    background: #eef6fc;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.card-content h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #001f3f;
}

.hub-type {
    color: #3498db;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-footer {
    background: #f0f8ff;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #333;
    text-align: center;
}

.expansion-banner {
    background: #eef6fc;
    padding: 30px;
    border-radius: 8px;
    max-width: 95%;
    margin: 0 auto;
}

.expansion-banner h4 {
    color: #001f3f;
    margin-bottom: 10px;
}

.expansion-banner p {
    color: #555;
    font-size: 0.9rem;
}

/* Get in Touch */
.get-in-touch-container {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    background: #fff;
    padding: 0;
}

.get-in-touch-left {
    flex: 1;
    min-width: 300px;
}

.get-in-touch-left h3 {
    font-size: 1.8rem;
    color: #001f3f;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: #eef6fc;
    color: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
}

.contact-item p {
    color: #666;
    font-size: 0.9rem;
}

.expect-box {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    background: #fff;
}

.expect-box h4 {
    margin-bottom: 15px;
    color: #001f3f;
}

.expect-box ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.expect-box ul li {
    margin-bottom: 10px;
    color: #555;
    font-size: 0.9rem;
}

.get-in-touch-right {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.get-in-touch-right h3 {
    font-size: 1.5rem;
    color: #001f3f;
    margin-bottom: 25px;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #333;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #3498db;
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #00aaff;
    /* Bright blue button */
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #008ecc;
}

/* Trusted Partnership */
.trusted-partnership {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 40px;
}

.trusted-partnership h3 {
    font-size: 1.8rem;
    color: #001f3f;
    margin-bottom: 20px;
}

.trusted-partnership p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Legacy button styles */
.legacy-btn{display:inline-flex;align-items:center;gap:10px;padding:10px 18px;background:var(--primary-blue);color:#fff;border-radius:8px;text-decoration:none;font-weight:700;transition:background .2s ease,transform .15s ease}
.legacy-btn:hover{background:#008ecc}
.legacy-btn-icon{width:16px;height:16px;transition:transform .18s ease;display:inline-block;flex-shrink:0}
.legacy-btn .legacy-btn-icon path{transition:stroke 0.18s ease}
.legacy-btn:hover .legacy-btn-icon{transform:translateX(6px)}

@media (max-width: 767px) {
    .presence-card {
        width: 100%;
    }

    .get-in-touch-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* Thought Leadership Page Styles */

.tl-hero {
    padding: 120px 20px;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('images/Avionics-Engineering-Services.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.tl-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.tl-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    font-weight: 700;
}

.tl-hero p {
    font-size: 1.1rem;
    color: #e2e8f0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-navy);
    margin-bottom: 50px;
    font-weight: 700;
}

/* Featured Articles */
/* ========================================
   THOUGHT LEADERSHIP - FEATURED ARTICLES
   ======================================== */

.featured-articles {
    padding: 80px 150px;
    background: var(--hsb-light-bg);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.article-category {
    font-size: 0.78rem;
    color: var(--hsb-teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    display: block;
}

.article-card {
    background: #ffffff;
    border: 1px solid var(--hsb-border);
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--hsb-shadow);
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0);
    transition:
        transform 0.25s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.3s ease;
}

/* Spotlight glow */
.article-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        300px circle at var(--x, 0px) var(--y, 0px),
        rgba(0, 79, 105, 0.06),
        transparent 65%
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.article-card:hover {
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-8px);
    border-color: rgba(0, 79, 105, 0.35);
    box-shadow:
        0 20px 40px -10px rgba(0, 79, 105, 0.12),
        var(--hsb-shadow),
        0 0 0 1px rgba(0, 79, 105, 0.05);
}

.article-card:hover::before {
    opacity: 1;
}

.article-icon {
    width: 52px;
    height: 52px;
    background: var(--hsb-light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hsb-teal);
    font-size: 1.4rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.article-card:hover .article-icon {
    background: linear-gradient(135deg, var(--hsb-teal) 0%, var(--hsb-teal-hover) 100%);
    color: #ffffff;
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 79, 105, 0.25);
}

.article-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.article-content h3 {
    font-size: 1.3rem;
    color: var(--hsb-dark-text);
    margin-bottom: 12px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.article-card:hover .article-content h3 {
    color: var(--hsb-teal);
}

.article-content p {
    font-size: 0.95rem;
    color: var(--hsb-body-text);
    line-height: 1.65;
    margin-bottom: 20px;
}

.key-topics {
    position: relative;
    z-index: 2;
}

.key-topics h4 {
    font-size: 0.9rem;
    color: var(--hsb-teal);
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.key-topics ul {
    padding-left: 18px;
}

.key-topics ul li {
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* New Index Page Sections */

.convergence {
    padding: 100px 20px;
    background: #f8fbff;
    text-align: center;
}

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

.convergence h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #00556b;
    margin-bottom: 24px;
    line-height: 1.25;
    font-weight: 700;
}

.convergence p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    font-weight: 400;
}

/* Why Choose Glidepath */
.why-choose {
    padding: 100px 20px;
    background: #ffffff;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-container h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #00556b;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.why-item {
    background: #ffffff;
    padding: 28px 30px;
    border-radius: 14px;
    border: 1px solid #f1f5f9;
    text-align: left;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(2,6,23,0.06);
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(2,6,23,0.08);
    border-color: transparent;
}

.why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e0f7ff 0%, #ecf8ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #00aaff;
    font-size: 1.6rem;
}

.why-item h3 {
    font-size: 1.25rem;
    color: #00556b;
    margin-bottom: 14px;
    font-weight: 700;
}

.why-item h3 {
    font-size: 1.2rem;
    color: #06202a;
    margin-bottom: 12px;
    font-weight: 700;
}
.why-item p {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.75;
    flex: 1;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #00556b;
    margin-bottom: 36px;
    font-weight: 700;
}

.mission-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.85;
    margin-bottom: 24px;
    font-weight: 400;
}

/* Our Approach */
.our-approach {
    padding: 100px 20px;
    background: #f9faff;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #00556b;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.approach-card {
    background: #ffffff;
    padding: 30px 28px;
    border-radius: 14px;
    border: 1px solid #f1f5f9;
    text-align: left;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(2,6,23,0.06);
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(2,6,23,0.08);
    border-color: transparent;
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(2,6,23,0.08);
    border-color: transparent;
}
.approach-card h3 {
    font-size: 1.2rem;
    color: #06202a;
    margin-bottom: 12px;
    font-weight: 700;
}
.approach-card p {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.7;
    flex: 1;
}

@media (max-width: 1024px) {
    .why-choose,
    .our-approach {
        padding: 60px 80px;
    }

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

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

@media (max-width: 767px) {

    .why-choose,
    .our-approach {
        padding: 40px 30px;
    }

    .why-choose-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .convergence h2 {
        font-size: 2rem;
    }
}

.key-topics h4 {
    font-size: 0.9rem;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.key-topics ul {
    padding-left: 20px;
}

.key-topics ul li {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

/* Industry Insights */
/* ========================================
   THOUGHT LEADERSHIP - INDUSTRY INSIGHTS
   ======================================== */

.industry-insights {
    padding: 100px 150px;
    background: #ffffff;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.insight-card {
    background: var(--hsb-light-bg);
    padding: 36px 32px;
    border-radius: 16px;
    border: 1px solid var(--hsb-border);
    box-shadow: var(--hsb-shadow);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0);
    transition:
        transform 0.25s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.3s ease;
}

.insight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        300px circle at var(--x, 0px) var(--y, 0px),
        rgba(0, 79, 105, 0.07),
        transparent 65%
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.insight-card:hover {
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-8px);
    border-color: rgba(0, 79, 105, 0.35);
    box-shadow:
        0 20px 40px -10px rgba(0, 79, 105, 0.12),
        var(--hsb-shadow),
        0 0 0 1px rgba(0, 79, 105, 0.05);
}

.insight-card:hover::before {
    opacity: 1;
}

.insight-card h3 {
    font-size: 1.25rem;
    color: var(--hsb-dark-text);
    margin-bottom: 14px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.insight-card:hover h3 {
    color: var(--hsb-teal);
}

.insight-card p {
    font-size: 0.975rem;
    color: var(--hsb-body-text);
    line-height: 1.65;
    position: relative;
    z-index: 2;
}

/* Careers - Life at HSB testimonial and Apply image layout */
.life-at-hsb-section {
    padding: 60px 20px;
    background: transparent;
}

.life-at-hsb-container {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(90deg, #004b5a 0%, #006273 100%);
    color: #fff;
    padding: 36px 48px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.testimonial-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

.testimonial-avatar img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.12);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.testimonial-content blockquote {
    background: #ffffff;
    color: #06202a;
    padding: 22px 26px;
    border-radius: 8px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 820px;
}

.testimonial-author h4 {
    margin-top: 12px;
    color: #ffffff;
    font-weight: 700;
}

.testimonial-author span {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.testimonial-nav {
    margin-top: 18px;
    display: flex;
    gap: 12px;
}

.testimonial-nav-btn {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
}

/* Apply Section layout */
.careers-apply-section {
    padding: 60px 20px 100px 20px;
}


.careers-apply-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.apply-left { flex: 0 0 420px; }
.apply-right { flex: 1; position: relative; display: flex; align-items: stretch; justify-content: flex-end; }

.apply-image-card {
    width: 100%;
    max-width: none;
    height: 100%;
    border-radius: 18px 0 0 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(2,6,23,0.18);
    position: relative;
    z-index: 2;
}

.apply-image-card img { display: block; width: 100%; height: 100%; object-fit: cover; }

.apply-bg-block {
    position: absolute;
    right: -10%;
    top: 8%;
    width: 260px;
    height: 340px;
    background: linear-gradient(180deg,#0ea5e9,#004b5a);
    border-radius: 12px;
    transform: rotate(-6deg);
    z-index: 1;
    box-shadow: 0 20px 50px rgba(2,6,23,0.12);
}

.file-upload-wrapper {
    position: relative;
    display: block;
    background: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px dashed #e6edf3;
    color: #334155;
    width: 100%;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.form-submit-btn {
    background: #06202a;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 700;
}

/* Form controls */
.apply-left h2 {
    color: var(--primary-blue);
    margin-bottom: 6px;
}
.form-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.apply-form {
    width: 100%;
}

.form-row-double {
    display: flex;
    gap: 12px;
}

.form-group { margin-bottom: 12px; flex: 1; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e6edf3;
    border-radius: 4px;
    background: #fff;
    font-size: 0.95rem;
    color: #0f172a;
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 18px 0;
}

.checkbox-group input[type="checkbox"] { width: 16px; height: 16px; }

.form-submit-btn { width: 140px; }

.apply-image-card { border-radius: 18px; overflow: hidden; }

.apply-image-card img { display: block; width: 100%; height: auto; }

@media (max-width: 900px) {
    .apply-left { flex: 1 1 auto; }
    .form-row-double { flex-direction: column; }
    .careers-apply-container { align-items: stretch; }
}

@media (max-width: 900px) {
    .careers-apply-container { flex-direction: column-reverse; gap: 24px; }
    .apply-bg-block { display: none; }
    .life-at-hsb-container { padding: 28px; border-radius: 12px; }
    .testimonial-wrapper { flex-direction: column; text-align: center; }
    .testimonial-avatar img { margin: 0 auto; }
}


/* Why Rooted in TÃƒÂ¼rkiye */
.why-turkiye-section {
    padding: 80px 150px;
    background: #ffffff;
}

.why-turkiye-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.why-turkiye-left {
    flex: 1;
}

.why-turkiye-left h2 {
    font-size: 32px;
    color: var(--dark-navy);
    margin-bottom: 18px;
    font-weight: 700;
}

.why-turkiye-left p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 1rem;
}

.why-turkiye-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-turkiye-right svg {
    max-width: 480px;
    width: 100%;
    height: auto;
}



@media (max-width: 1024px) {
    .why-turkiye-container,
    .founders-journey-inner {
        padding-left: 40px;
        padding-right: 40px;
    }

    .why-turkiye-section {
        padding: 60px 40px;
    }

    /* Stack the why-turkiye columns on tablet and smaller */
    .why-turkiye-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .why-turkiye-left, .why-turkiye-right {
        width: 100%;
    }

    .why-turkiye-right svg {
        max-width: 420px;
        margin: 0 auto;
    }

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

    .founders-teal-panel {
        display: none;
    }

    .founders-journey-layout h2 {
        color: var(--dark-navy);
        margin-left: 0;
    }
    /* .commitment-content h2 {
    font-size: 2.8rem;
    color: var(--hsb-teal);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 24px;
} */
}

.commitment-content h2 {
    font-size: 2.8rem;
    color: var(--hsb-teal);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 24px;
}

@media (max-width: 479px) {
    /* Remove left/right spacing on very small screens so text spans full width */
    .why-turkiye-section { padding: 40px 0; }
    .why-turkiye-container { padding-left: 0; padding-right: 0; }
    .why-turkiye-left h2 { font-size: 22px; }
    .why-turkiye-left p { font-size: 14px; }
    .why-turkiye-right svg { max-width: 320px; }
}


/* Commitment Section */
/* ========================================
   THOUGHT LEADERSHIP - COMMITMENT SECTION
   ======================================== */

.commitment-section {
    padding: 100px 150px;
    background: var(--hsb-light-bg);
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitment-content h2 {
    font-size: 1.8rem;
    color: var(--hsb-teal);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 24px;
}

.commitment-content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--hsb-teal), var(--hsb-teal-hover));
    border-radius: 2px;
}

.commitment-content p {
    font-size: 1rem;
    color: var(--hsb-body-text);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* ========================================
   THOUGHT LEADERSHIP - STAY UPDATED BANNER
   ======================================== */

.stay-updated-banner {
    background: linear-gradient(135deg, var(--hsb-teal) 0%, var(--hsb-teal-hover) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stay-updated-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stay-updated-banner h2 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

/* Responsive for TL Page */
@media (max-width: 1024px) {

    .featured-articles,
    .industry-insights,
    .commitment-section {
        padding: 60px 40px;
    }

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

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

@media (max-width: 767px) {

    .featured-articles,
    .industry-insights,
    .commitment-section {
        padding: 60px 20px;
    }

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

    .stay-updated-banner h2 {
        font-size: 2rem;
    }
}

/* Careers Hero */
.careers-hero {
    width: 100%;
    height: 500px;
    background: url('./images/Avionics-Engineering-Services-1.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-left: 150px;
    color: white;
    position: relative;

}

.careers-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.careers-hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
}

.careers-hero h1 {
    font-size: 3rem;
    line-height: 1.6;
}

.careers-hero p {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
}

/* Why Glidepath */
.why-mach {
    padding: 0 150px 80px 150px;
    background: #fff;
}

.why-mach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid #f0f4f8;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #e0f2fe;
    background: linear-gradient(to bottom, #ffffff, #f0f9ff);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

/* Pulsing ring effect for benefit cards */
.benefit-icon::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid #0ea5e9;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.5);
}

.benefit-card:hover .benefit-icon::before {
    opacity: 0.6;
    transform: scale(1.2);
    animation: pulse-ring 1.5s infinite;
}

.benefit-card:hover h3 {
    color: #0ea5e9;
    transform: translateY(-2px);
}

.benefit-card h3 {
    font-size: 1.1rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Career Opportunities */
.career-opportunities {
    padding: 80px 150px;
    background: #f8fbff;
    text-align: center;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-light);
    line-height: 1.6;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.job-card {
    background: #fff;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.job-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.job-card-content {
    padding: 30px;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #e0f2fe;
}

.job-card:hover img {
    transform: scale(1.05);
}

.job-card h3 {
    font-size: 1.2rem;
    color: var(--dark-navy);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.job-card:hover h3 {
    color: var(--primary-blue);
}

.job-tag {
    display: inline-block;
    background: #eef6fc;
    color: var(--primary-blue);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.job-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Career Progression */
.career-progression {
    padding: 80px 150px;
    background: #fff;
}

.progression-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.progression-step {
    background: #f8fbff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.progression-step h3 {
    font-size: 1.2rem;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.progression-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Our Culture */
.our-culture {
    padding: 0 150px 80px 150px;
    background: #fff;
    text-align: center;
}

.culture-content {
    max-width: 800px;
    margin: 0 auto;
}

.culture-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive for Careers Page */
@media (max-width: 1024px) {

    .why-mach,
    .career-opportunities,
    .career-progression,
    .our-culture {
        padding: 60px 80px;
    }

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

@media (max-width: 767px) {

    .why-mach,
    .career-opportunities,
    .career-progression,
    .our-culture {
        padding: 40px 30px;
    }

    .why-mach-grid,
    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .careers-hero {
        padding-left: 40px;
    }


    .careers-hero h1 {
        font-size: 2.2rem;
    }
}

/* About Hero */
.about-hero {
    padding: 120px 20px;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('./images/front\ page\ header.png');
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

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

.about-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.1rem;
    color: #e2e8f0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

/* Our Story */
.our-story {
    padding: 0 150px 80px 150px;
    background: #fff;
    text-align: center;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Core Values */
.core-values {
    padding: 80px 150px;
    background: #f8fbff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15), 0 0 0 1px rgba(14, 165, 233, 0.1);
    background: linear-gradient(135deg, #f8fbff 0%, #e6f7ff 100%);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

/* Pulsing ring effect for values grid */
.value-icon::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid #0ea5e9;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.value-card:hover .value-icon {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.5);
}

.value-card:hover .value-icon::before {
    opacity: 0.6;
    transform: scale(1.2);
    animation: pulse-ring 1.5s infinite;
}

.value-card:hover h3 {
    color: #0ea5e9;
    transform: translateY(-2px);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* About Expertise */
.about-expertise {
    padding: 80px 150px;
    background: #fff;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.expertise-column h3 {
    font-size: 1.3rem;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.expertise-column ul {
    padding-left: 20px;
}

.expertise-column ul li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Responsive for About Us */
@media (max-width: 1024px) {

    .our-story,
    .core-values,
    .about-expertise {
        padding: 60px 80px;
    }

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

@media (max-width: 767px) {

    .our-story,
    .core-values,
    .about-expertise {
        padding: 0 30px 40px 30px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }
}

/* Contact Hero */
.contact-hero {
    padding: 120px 20px;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('images/Our_project_CH47.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
}

/* ========================================
   CONTACT PAGE - GLOBAL PRESENCE
   ======================================== */

.global-presence-page {
    padding: 80px 150px;
    background: var(--hsb-light-bg);
    text-align: center;
}

.presence-cards-page {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.presence-card-page {
    background: #ffffff;
    border: 1px solid var(--hsb-border);
    border-radius: 16px;
    padding: 36px 32px;
    width: 45%;
    min-width: 300px;
    display: flex;
    gap: 24px;
    text-align: left;
    box-shadow: var(--hsb-shadow);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0);
    transition:
        transform 0.25s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.3s ease;
}

.presence-card-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        300px circle at var(--x, 0px) var(--y, 0px),
        rgba(0, 79, 105, 0.06),
        transparent 65%
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.presence-card-page:hover {
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-8px);
    border-color: rgba(0, 79, 105, 0.35);
    box-shadow:
        0 20px 40px -10px rgba(0, 79, 105, 0.12),
        var(--hsb-shadow),
        0 0 0 1px rgba(0, 79, 105, 0.05);
}

.presence-card-page:hover::before {
    opacity: 1;
}

.card-icon-page {
    width: 56px;
    height: 56px;
    background: var(--hsb-light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hsb-teal);
    font-size: 1.4rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.presence-card-page:hover .card-icon-page {
    background: linear-gradient(135deg, var(--hsb-teal) 0%, var(--hsb-teal-hover) 100%);
    color: #ffffff;
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 79, 105, 0.25);
}

.presence-card-page:hover h3 {
    color: var(--hsb-teal);
}

.card-content-page {
    position: relative;
    z-index: 2;
    flex: 1;
}

.card-content-page h3 {
    font-size: 1.3rem;
    color: var(--hsb-dark-text);
    margin-bottom: 6px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.hub-type-page {
    display: block;
    color: var(--hsb-teal);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.card-content-page p {
    font-size: 0.95rem;
    color: var(--hsb-body-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-footer-page {
    background: var(--hsb-light-bg);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--hsb-body-text);
    text-align: center;
    font-weight: 600;
}

.expansion-banner-page {
    background: #ffffff;
    border: 1px solid var(--hsb-border);
    padding: 32px;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--hsb-shadow);
}

.expansion-banner-page h3 {
    color: var(--hsb-teal);
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}

.expansion-banner-page p {
    color: var(--hsb-body-text);
    font-size: 0.975rem;
    line-height: 1.6;
}

/* ========================================
   CONTACT PAGE - GET IN TOUCH
   ======================================== */

.get-in-touch-page {
    padding: 100px 150px;
    background: #ffffff;
}

.get-in-touch-container-page {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.get-in-touch-left-page {
    flex: 1;
}

.get-in-touch-left-page h2 {
    font-size: 2.2rem;
    color: var(--hsb-teal);
    margin-bottom: 32px;
    font-weight: 800;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 20px;
}

.get-in-touch-left-page h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--hsb-teal), var(--hsb-teal-hover));
    border-radius: 2px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--hsb-border);
    background: var(--hsb-light-bg);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
    border-color: rgba(0, 79, 105, 0.35);
    box-shadow: 0 8px 24px -6px rgba(0, 79, 105, 0.1);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--hsb-light-bg);
    border: 1px solid var(--hsb-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hsb-teal);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.contact-info-item:hover .info-icon {
    background: linear-gradient(135deg, var(--hsb-teal) 0%, var(--hsb-teal-hover) 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(0, 79, 105, 0.25);
}

.contact-info-item:hover strong {
    color: var(--hsb-teal);
    transition: color 0.3s ease;
}

.contact-info-item strong {
    display: block;
    color: var(--hsb-dark-text);
    margin-bottom: 4px;
    font-weight: 700;
    font-size: 0.95rem;
}

.contact-info-item a {
    color: var(--hsb-teal);
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
}

.contact-info-item a:hover {
    opacity: 0.8;
}

.contact-info-item p {
    color: var(--hsb-body-text);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.expect-box-page {
    border: 1px solid var(--hsb-border);
    padding: 28px 32px;
    border-radius: 16px;
    margin-top: 28px;
    background: var(--hsb-light-bg);
}

.expect-box-page h4 {
    margin-bottom: 14px;
    color: var(--hsb-teal);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.expect-box-page ul {
    padding-left: 18px;
}

.expect-box-page ul li {
    font-size: 0.95rem;
    color: var(--hsb-body-text);
    margin-bottom: 10px;
    line-height: 1.5;
}

.get-in-touch-right-page {
    flex: 1;
    background: var(--hsb-light-bg);
    padding: 44px 40px;
    border-radius: 20px;
    box-shadow: var(--hsb-shadow);
    border: 1px solid var(--hsb-border);
}

.get-in-touch-right-page h2 {
    font-size: 2rem;
    color: var(--hsb-teal);
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 18px;
}

.get-in-touch-right-page h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--hsb-teal), var(--hsb-teal-hover));
    border-radius: 2px;
}

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

.contact-form-page label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--hsb-dark-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-form-page input,
.contact-form-page textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--hsb-border);
    border-radius: 10px;
    font-size: 0.975rem;
    color: var(--hsb-dark-text);
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-page input:focus,
.contact-form-page textarea:focus {
    border-color: var(--hsb-teal);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 79, 105, 0.08);
}

.submit-btn-page {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--hsb-teal) 0%, var(--hsb-teal-hover) 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 20px rgba(0, 79, 105, 0.3);
}

.submit-btn-page:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 79, 105, 0.35);
}

/* ========================================
   CONTACT PAGE - PARTNERSHIP SECTION
   ======================================== */

.partnership-section {
    padding: 100px 150px;
    background: linear-gradient(135deg, var(--hsb-teal) 0%, var(--hsb-teal-hover) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partnership-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 50%, rgba(255,255,255,0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(255,255,255,0.04) 0%, transparent 40%);
    pointer-events: none;
}

.partnership-section .section-title {
    color: #ffffff !important;
    position: relative;
    z-index: 1;
}

.partnership-section .section-title::after {
    background: rgba(255, 255, 255, 0.5) !important;
}

.partnership-section p {
    max-width: 860px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Responsive for Contact Page */
@media (max-width: 1024px) {

    .global-presence-page,
    .get-in-touch-page,
    .partnership-section {
        padding: 60px 40px;
    }

    .presence-card-page {
        width: 100%;
    }

    .get-in-touch-container-page {
        flex-direction: column;
    }
}

@media (max-width: 767px) {

    .global-presence-page,
    .get-in-touch-page,
    .partnership-section {
        padding: 60px 20px;
    }

    .get-in-touch-right-page {
        padding: 32px 24px;
    }
}

/* Convergence Section */
.convergence {
    padding: 100px 20px;
    background: #f8fbff;
    text-align: center;
}

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

.convergence h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #00556b;
    margin-bottom: 24px;
    line-height: 1.25;
    font-weight: 700;
}

.convergence p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    font-weight: 400;
}

/* Why Choose Glidepath */
.why-choose {
    padding: 100px 20px;
    background: #ffffff;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-container h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #00556b;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.why-item {
    background: #ffffff;
    padding: 28px 30px;
    border-radius: 14px;
    border: 1px solid #f1f5f9;
    text-align: left;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(2,6,23,0.06);
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(2,6,23,0.08);
    border-color: transparent;
}

.why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e0f7ff 0%, #ecf8ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #00aaff;
    font-size: 1.6rem;
}

.why-item h3 {
    font-size: 1.2rem;
    color: #06202a;
    margin-bottom: 12px;
    font-weight: 700;
}

.why-item p {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.75;
    flex: 1;
}

/* Our Mission */
.our-mission {
    padding: 100px 20px;
    background: #ffffff;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #00556b;
    margin-bottom: 36px;
    font-weight: 700;
}

.mission-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.85;
    margin-bottom: 24px;
    font-weight: 400;
}

/* Our Approach */
.our-approach {
    padding: 100px 20px;
    background: #f9faff;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #00556b;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.approach-card {
    background: #ffffff;
    padding: 30px 28px;
    border-radius: 14px;
    border: 1px solid #f1f5f9;
    text-align: left;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(2,6,23,0.06);
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(2,6,23,0.08);
    border-color: transparent;
}

.approach-card h3 {
    font-size: 1.2rem;
    color: #06202a;
    margin-bottom: 12px;
    font-weight: 700;
}

.approach-card p {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.7;
    flex: 1;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(2,6,23,0.08);
    border-color: transparent;
}

.why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e0f7ff 0%, #ecf8ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #00aaff;
    font-size: 1.6rem;
}

.why-item h3 {
    font-size: 1.2rem;
    color: #06202a;
    margin-bottom: 12px;
    font-weight: 700;
}

.why-item p {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.75;
    flex: 1;
}

/* Our Mission */
.our-mission {
    padding: 100px 20px;
    background: #ffffff;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #00556b;
    margin-bottom: 36px;
    font-weight: 700;
}

.mission-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.85;
    margin-bottom: 24px;
    font-weight: 400;
}

/* Our Approach */
.our-approach {
    padding: 100px 20px;
    background: #f9faff;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #00556b;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.approach-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid #e8eef8;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.approach-card:hover {
    border-color: #00aaff;
    box-shadow: 0 12px 32px rgba(0, 170, 255, 0.12);
    transform: translateY(-4px);
}

.approach-card h3 {
    font-size: 1.3rem;
    color: #00556b;
    margin-bottom: 16px;
    font-weight: 700;
}

.approach-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.75;
    flex: 1;
}

/* Responsive for New Sections */
@media (max-width: 1024px) {

    .why-choose,
    .our-approach {
        padding: 60px 80px;
    }

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

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

@media (max-width: 767px) {

    .why-choose,
    .our-approach {
        padding: 40px 30px;
    }

    .why-choose-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .convergence h2 {
        font-size: 2rem;
    }
}

/* Services Hero */
.services-hero {
    padding: 80px 20px;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('images/istockphoto.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-hero p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 80px 150px;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #f8fbff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #00aaff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: #fff;
    border-left-color: #0077cc;
    border-color: #e2e8f0;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00aaff;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 170, 255, 0.1);
}

.service-card:hover .service-icon {
    background: #00aaff;
    color: #fff;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 170, 255, 0.2);
}

.service-card h3 {
    font-size: 1.4rem;
    color: #001f3f;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    font-weight: 700;
}

.service-card:hover h3 {
    color: #00aaff;
}

.service-card p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.service-features li {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    transition: color 0.3s ease;
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #00aaff;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.9rem;
}

.service-card:hover .service-features li {
    color: #334155;
}

/* End-to-End Solutions */
.end-to-end-solutions {
    padding: 80px 150px;
    background: #f8fbff;
    text-align: center;
}

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

.solutions-content h2 {
    font-size: 2rem;
    color: #001f3f;
    margin-bottom: 30px;
}

.solutions-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

/* Responsive for Services Page */
@media (max-width: 1024px) {

    .services-section,
    .end-to-end-solutions {
        padding: 60px 80px;
    }

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

@media (max-width: 767px) {

    .services-section,
    .end-to-end-solutions {
        padding: 40px 30px;
    }

    .services-hero h1 {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 30px;
    }
}

/* Capabilities Hero */
.capabilities-hero {
    padding: 80px 20px;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('images/jets.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.capabilities-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.capabilities-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.capabilities-hero p {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.6;
}

/* Section Icon */
.section-icon {
    width: 60px;
    height: 60px;
    background: #eef6fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00aaff;
    font-size: 1.8rem;
    margin: 0 auto 30px;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Certification Standards Section *//* ========================================
   CERTIFICATION STANDARDS EXPERTISE - PREMIUM LIGHT DESIGN
   ======================================== */

.cert-standards-section {
    position: relative;
    padding: 100px 20px;
    background: #ffffff; /* White background to alternate with light gray sections */
    color: var(--hsb-dark-text);
}

.cert-standards-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(340px, 380px) 1fr;
    gap: 48px;
    align-items: start;
}

.cert-info-panel {
    position: sticky;
    top: 10px;
    height: fit-content;
    z-index: 40;
}

.cert-panel-content {
    background: var(--hsb-light-bg, #F4F6F7); /* Use theme light gray bg */
    border: 1px solid var(--hsb-border, #e2e8f0); /* Theme border */
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: var(--hsb-shadow, 0 10px 30px rgba(15, 23, 42, 0.06));
}

.cert-panel-icon {
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hsb-teal, #004F69);
    font-size: 1.6rem;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 79, 105, 0.08);
}

.cert-panel-content h2 {
    margin: 0 0 20px;
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: 1.15;
    color: var(--hsb-teal); /* Brand teal heading */
    font-weight: 800;
}

.cert-panel-content p {
    margin: 0 0 28px;
    color: var(--hsb-body-text);
    line-height: 1.7;
    font-size: 0.975rem;
    width: 100%;
}

@media (max-width: 1023px) {
    .cert-info-panel {
        position: static;
        top: auto;
        z-index: auto;
        margin-bottom: 20px;
    }
    .cert-standards-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.cert-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cert-panel-list li {
    position: relative;
    padding-left: 28px;
    color: var(--hsb-body-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cert-panel-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--hsb-teal);
}

.cert-cards-scroll {
    width: 100%;
    overflow: visible;
}

.cert-cards-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* â”€â”€ Initial hidden state: each child slides in from its side â”€â”€ */
.cert-card {
    position: relative;
    display: flex;
    gap: 30px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    scroll-snap-align: start;
    flex: 0 0 auto;
    align-items: stretch;
    overflow: visible;
}

.cert-card:nth-child(even) {
    flex-direction: row-reverse;
}

/* Each child piece */
.cert-card .cert-card-media,
.cert-card .cert-card-copy {
    opacity: 1;
}

/* Odd card  â€“ media comes from LEFT, copy from RIGHT */
.cert-card:nth-child(odd) .cert-card-media  { transform: none; }
.cert-card:nth-child(odd) .cert-card-copy   { transform: none; }

/* Even card â€“ media comes from RIGHT, copy from LEFT */
.cert-card:nth-child(even) .cert-card-media { transform: none; }
.cert-card:nth-child(even) .cert-card-copy  { transform: none; }

/* Revealed state added by JS */
.cert-card .cert-card-media.revealed,
.cert-card .cert-card-copy.revealed {
    opacity: 1;
    transform: translateX(0) scale(1);
    transition:
        opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stagger: copy appears slightly after media */
.cert-card .cert-card-copy.revealed {
    transition-delay: 0.15s;
}

/* â”€â”€ IMAGE BOX â”€â”€ */
.cert-card-media {
    position: relative;
    flex: 1;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    z-index: 0;
    cursor: pointer;
}

.cert-card-media:hover,
.cert-card-media:active {
    transform: translateY(-10px) scale(1.01) !important;
    box-shadow: 0 24px 48px -12px rgba(0, 79, 105, 0.22);
    transition:
        transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.35s ease !important;
}

.cert-card-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 79, 105, 0.08) 0%, rgba(0, 0, 0, 0.28) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cert-card-media:hover::before {
    opacity: 0.6;
}


/* Tool Fluency Section */
.tool-fluency-section {
    padding: 80px 150px;
    background: #f8fbff;
    text-align: center;
}

.tool-fluency-container h2 {
    font-size: 2rem;
    color: #001f3f;
    margin-bottom: 20px;
}

.tool-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-category {
    text-align: left;
}

.tool-category h3 {
    font-size: 1.1rem;
    color: #001f3f;
    margin-bottom: 15px;
}

.tool-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tool-category ul li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.tool-category ul li::before {
    content: '';
    color: #00aaff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Systems Knowledge Section */
.systems-knowledge-section {
    padding: 80px 150px;
    background: #fff;
    text-align: center;
}

.systems-knowledge-container h2 {
    font-size: 2rem;
    color: #001f3f;
    margin-bottom: 20px;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.system-card {
    background: #f8fbff;
    padding: 25px 20px;
    border-radius: 8px;
    text-align: left;
}

.system-card h3 {
    font-size: 1.1rem;
    color: #001f3f;
    margin-bottom: 8px;
}

.system-card p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

/* Capabilities Assurance Section */
.capabilities-assurance {
    padding: 80px 150px;
    background: #00aaff;
    text-align: center;
}

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

.assurance-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
}

.assurance-content p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive for Capabilities Page */
@media (max-width: 1024px) {

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

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

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

@media (max-width: 767px) {

    .capabilities-hero h1 {
        font-size: 2.2rem;
    }

    .cert-standards-grid,
    .tool-categories-grid,
    .systems-grid {
        grid-template-columns: 1fr;
    }
}

/* Case Studies Hero */
.case-studies-hero {
    padding: 80px 20px;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('images/aerospacecasestudy.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.case-studies-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.case-studies-hero h1 {
    font-size: 3rem;
    /* color: #001f3f; */
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.case-studies-hero p {
    font-size: 1.1rem;
    /* color: #555; */
    color: #ffffff;
    line-height: 1.6;
}

.case-studies-section {
    padding: 80px 150px;
    background: #fff;
}

.case-studies-container {
    max-width: 1000px;
    margin: 0 auto;
}

.case-study-card {
    background: #f8fbff;
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 50px;
    border-left: 4px solid #00aaff;
}

.case-study-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00aaff;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.case-study-card h2 {
    font-size: 1.8rem;
    color: #001f3f;
    margin-bottom: 30px;
}

.case-study-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.case-section h3 {
    font-size: 1.2rem;
    color: #001f3f;
    margin-bottom: 15px;
}

.case-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.result-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.result-item i {
    color: #00aaff;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.result-item span {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.case-section.impact {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    border-left: 3px solid #00aaff;
}

/* Proven Track Record */
.proven-track-record {
    padding: 80px 150px;
    background: #f8fbff;
    text-align: center;
}

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

.track-record-content h2 {
    font-size: 2rem;
    color: #001f3f;
    margin-bottom: 30px;
}

.track-record-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

/* Industries Hero */
.industries-hero {
    padding: 80px 20px;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('images/Our_project_CH47.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.industries-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.industries-hero h1 {
    font-size: 3rem;
    /* color: #001f3f; */
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.industries-hero p {
    font-size: 1.1rem;
    /* color: #555; */
    color: #ffffff;
    line-height: 1.6;
}

/* Industries Section */
.industries-section {
    padding: 80px 150px;
    background: #fff;
}

.industries-container {
    max-width: 1000px;
    margin: 0 auto;
}

.industry-block {
    background: #f8fbff;
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00aaff;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.industry-block h2 {
    font-size: 1.8rem;
    color: #001f3f;
    margin-bottom: 20px;
}

.industry-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.industry-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.detail-column h3 {
    font-size: 1.1rem;
    color: #001f3f;
    margin-bottom: 15px;
}

.detail-column ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.detail-column ul li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
}

.industry-standards {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
}

.industry-standards h4 {
    font-size: 1rem;
    color: #001f3f;
    margin-bottom: 10px;
}

.industry-standards p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

/* Multi-Domain Excellence */
.multi-domain-excellence {
    padding: 80px 150px;
    background: #f8fbff;
}

.excellence-content {
    max-width: 1000px;
    margin: 0 auto;
}

.excellence-content h2 {
    font-size: 2rem;
    color: #001f3f;
    margin-bottom: 50px;
    text-align: center;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.excellence-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.excellence-card h3 {
    font-size: 1.2rem;
    color: #001f3f;
    margin-bottom: 15px;
}

.excellence-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Versatile Partner */
.versatile-partner {
    padding: 80px 150px;
    background: #00aaff;
    text-align: center;
}

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

.partner-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
}

.partner-content p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.8;
}

/* Responsive for Case Studies and Industries Pages */
@media (max-width: 1024px) {

    .case-studies-section,
    .industries-section,
    .proven-track-record,
    .multi-domain-excellence,
    .versatile-partner {
        padding: 60px 80px;
    }

    .results-grid,
    .industry-details,
    .excellence-grid {
        grid-template-columns: 1fr;
    }
}

/* Removed old unified override and static card disables to enable premium interactive animations */

.industry-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00aaff;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.industry-block h2 {
    font-size: 1.8rem;
    color: #001f3f;
    margin-bottom: 20px;
}

.industry-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.industry-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.detail-column h3 {
    font-size: 1.1rem;
    color: #001f3f;
    margin-bottom: 15px;
}

.detail-column ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.detail-column ul li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
}

.industry-standards {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
}

.industry-standards h4 {
    font-size: 1rem;
    color: #001f3f;
    margin-bottom: 10px;
}

.industry-standards p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

/* Multi-Domain Excellence */
.multi-domain-excellence {
    padding: 80px 150px;
    background: #f8fbff;
}

.excellence-content {
    max-width: 1000px;
    margin: 0 auto;
}

.excellence-content h2 {
    font-size: 2rem;
    color: #001f3f;
    margin-bottom: 50px;
    text-align: center;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.excellence-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.excellence-card h3 {
    font-size: 1.2rem;
    color: #001f3f;
    margin-bottom: 15px;
}

.excellence-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Versatile Partner */
.versatile-partner {
    padding: 80px 150px;
    background: #00aaff;
    text-align: center;
}

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

.partner-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
}

.partner-content p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.8;
}

/* Responsive for Case Studies and Industries Pages */
@media (max-width: 1024px) {

    .case-studies-section,
    .industries-section,
    .proven-track-record,
    .multi-domain-excellence,
    .versatile-partner {
        padding: 60px 80px;
    }

    .results-grid,
    .industry-details,
    .excellence-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .case-studies-section,
    .industries-section,
    .proven-track-record,
    .multi-domain-excellence,
    .versatile-partner {
        padding: 40px 30px;
    }

    .case-studies-hero h1,
    .industries-hero h1 {
        font-size: 2.2rem;
    }

    .case-study-card,
    .industry-block {
        padding: 30px;
    }
}
/* ========================================
   WHY CHOOSE Glidepath - PREMIUM MODERN CARDS
   ======================================== */

.why-choose {
    padding: 100px 150px;
    background: var(--hsb-light-bg); /* Use page-related light background color */
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 79, 105, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 54, 72, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose-container h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--hsb-teal); /* Unified teal heading color */
    margin-bottom: 60px;
    font-weight: 800;
    position: relative;
    letter-spacing: -0.5px;
}

.why-choose-container h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--hsb-teal), var(--hsb-teal-hover));
    border-radius: 2px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.why-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: left;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--hsb-border); /* Page border color */
    box-shadow: var(--hsb-shadow); /* Page default shadow */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    /* 3D Perspective settings */
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0);
    transition: 
        transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), 
        box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
        border-color 0.3s ease;
}

/* Spotlight glow effect using theme teal */
.why-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        300px circle at var(--x, 0px) var(--y, 0px),
        rgba(0, 79, 105, 0.06),
        transparent 65%
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-item:hover {
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-8px);
    border-color: rgba(0, 79, 105, 0.35); /* Soft border teal glow */
    box-shadow: 
        0 20px 40px -10px rgba(0, 79, 105, 0.12), 
        var(--hsb-shadow),
        0 0 0 1px rgba(0, 79, 105, 0.05);
}

.why-item:hover::before {
    opacity: 1;
}

.why-icon {
    width: 56px;
    height: 56px;
    background: var(--hsb-light-bg); /* Page gray color */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hsb-teal);
    font-size: 1.4rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.why-item:hover .why-icon {
    background: linear-gradient(135deg, var(--hsb-teal) 0%, var(--hsb-teal-hover) 100%);
    color: #ffffff;
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 79, 105, 0.25);
}

.why-icon i {
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.why-item h3 {
    font-size: 1.3rem;
    color: var(--hsb-dark-text); /* Theme dark title text */
    margin-bottom: 14px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.why-item:hover h3 {
    color: var(--hsb-teal); /* Highlights in teal */
}

.why-item p {
    font-size: 0.975rem;
    color: var(--hsb-body-text); /* Theme description text */
    line-height: 1.65;
    margin: 0;
    position: relative;
    z-index: 2;
    flex: 1;
}


/* ========================================
   OUR APPROACH - PREMIUM MODERN CARDS
   ======================================== */

.our-approach {
    padding: 100px 150px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.our-approach::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(0, 79, 105, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(0, 54, 72, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-container h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--hsb-teal);
    margin-bottom: 60px;
    font-weight: 800;
    position: relative;
    letter-spacing: -0.5px;
}

.approach-container h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--hsb-teal), var(--hsb-teal-hover));
    border-radius: 2px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.approach-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 45px 35px;
    text-align: left;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--hsb-border);
    box-shadow: var(--hsb-shadow);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    /* 3D Perspective settings */
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0);
    transition: 
        transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), 
        box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
        border-color 0.3s ease;
}

/* Spotlight glow effect using theme teal */
.approach-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        300px circle at var(--x, 0px) var(--y, 0px),
        rgba(0, 79, 105, 0.06),
        transparent 65%
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.approach-card:hover {
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-8px);
    border-color: rgba(0, 79, 105, 0.35);
    box-shadow: 
        0 20px 40px -10px rgba(0, 79, 105, 0.12), 
        var(--hsb-shadow),
        0 0 0 1px rgba(0, 79, 105, 0.05);
}

.approach-card:hover::before {
    opacity: 1;
}

.approach-number {
    position: absolute;
    top: 35px;
    right: 35px;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hsb-border);
    line-height: 1;
    z-index: 2;
    transition: all 0.3s ease;
    user-select: none;
}

.approach-card:hover .approach-number {
    color: rgba(0, 79, 105, 0.12);
    transform: scale(1.1) translateY(-2px);
}

.approach-card h3 {
    font-size: 1.35rem;
    color: var(--hsb-dark-text);
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    padding-right: 50px; /* Leave room for the number badge */
    transition: color 0.3s ease;
}

.approach-card:hover h3 {
    color: var(--hsb-teal);
}

.approach-card p {
    font-size: 0.975rem;
    color: var(--hsb-body-text);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
    flex: 1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .why-choose,
    .our-approach {
        padding: 80px 40px;
    }
    
    .why-choose-container h2,
    .approach-container h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 767px) {
    .why-choose,
    .our-approach {
        padding: 60px 20px;
    }

    .why-choose-container h2,
    .approach-container h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .why-choose-grid,
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-item,
    .approach-card {
        padding: 35px 24px;
    }
}

/* Legacy Section Styles â€” Redesigned to match HSB "Who we are" aesthetic */
.legacy-section {
    padding: 100px 120px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(0, 79, 105, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.legacy-container {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    gap: 70px;
}

.legacy-title-block {
    position: sticky;
    top: 110px;
    padding: 34px 0 0;
}

.legacy-content {
    max-width: none;
    margin-left: 0;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 79, 105, 0.12);
    border-radius: 24px;
    padding: 42px 46px;
    box-shadow: 0 24px 70px rgba(0, 79, 105, 0.1);
    position: relative;
    overflow: hidden;
}

.legacy-content::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, var(--hsb-teal), var(--hsb-teal-hover));
}

.legacy-title-block h2,
.legacy-content h2 {
    font-size: clamp(34px, 4vw, 52px);
    color: var(--hsb-teal);
    line-height: 1.08;
    margin: 0;
    font-weight: 900;
    letter-spacing: -1.2px;
}

.legacy-title-block h2::after {
    content: "";
    display: block;
    width: 82px;
    height: 5px;
    margin-top: 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--hsb-teal), var(--hsb-teal-hover));
}

.legacy-content p {
    font-size: 15px;
    color: var(--hsb-body-text);
    line-height: 1.85;
    margin-bottom: 18px;
    text-align: justify;
}

.legacy-content p:first-child {
    font-size: 16px;
    color: var(--hsb-dark-text);
    font-weight: 600;
}

.legacy-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: none;
    background: none;
    color: var(--hsb-teal);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

/* .legacy-btn::after {
    content: 'â†’';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--hsb-teal);
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
} */

.legacy-btn:hover {
    color: var(--hsb-teal-hover);
    background: none;
}

.legacy-btn:hover::after {
    background-color: var(--hsb-teal-hover);
    transform: translateX(4px);
}

.legacy-image {
    flex: 1;
    position: relative;
    clip-path: none;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legacy-image img {
    width: auto;
    height: 100%;
    max-width: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    border-radius: 16px;
}

@media (max-width: 1024px) {
    .legacy-section {
        padding: 60px 40px;
    }

    .legacy-image img {
        width: 100%;
        height: auto;
        object-position: center center;
    }
}

@media (max-width: 900px) {
    .legacy-section {
        padding: 50px 24px;
    }

    .legacy-container {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 30px;
    }

    .legacy-content {
        max-width: 100%;
        padding: 30px 26px;
    }

    .legacy-title-block {
        max-width: 100%;
        position: static;
        padding-top: 0;
    }

    .legacy-title-block h2,
    .legacy-content h2 {
        font-size: 26px;
    }

    .legacy-image {
        width: 100%;
        clip-path: none;
        margin-top: 10px;
    position: relative;
    z-index: 1;
    }
}

/* Overview heading */
.legacy-overview {
    display: block;
    text-align: left;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--hsb-teal);
    margin-bottom: 40px;
    font-weight: 800;
    position: relative;
    padding-bottom: 18px;
}

.legacy-overview::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--hsb-teal);
    border-radius: 2px;
}

/* Cutting-Edge Solutions Section */
/* Cutting-Edge Solutions Section */
/* Innovative "Fly-Move" Logo Section */
.logo_animation {
    position: relative;
    height: 180px;
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    overflow: visible;
    perspective: 1000px;
}

/* Flying Shadow Effect */
.logo_animation::before {
    content: "";
    position: absolute;
    bottom: 20px;
    width: 60px;
    height: 15px;
    background: rgba(0, 170, 255, 0.1);
    filter: blur(8px);
    border-radius: 50%;
    animation: shadowMove 6s ease-in-out infinite;
}

.logo_animation .logo {
    position: relative;
    z-index: 10;
    max-width: 90px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transform-style: preserve-3d;
    animation: flyMove 6s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

@keyframes flyMove {
    0% {
        transform: translate3d(-40px, 0, 0) rotateX(10deg) rotateY(20deg) rotateZ(-5deg) scale(0.9);
    }

    25% {
        transform: translate3d(0, -20px, 50px) rotateX(-5deg) rotateY(0deg) rotateZ(0deg) scale(1.1);
    }

    50% {
        transform: translate3d(40px, 0, 0) rotateX(10deg) rotateY(-20deg) rotateZ(5deg) scale(0.9);
    }

    75% {
        transform: translate3d(0, 20px, 50px) rotateX(-5deg) rotateY(0deg) rotateZ(0deg) scale(1.1);
    }

    100% {
        transform: translate3d(-40px, 0, 0) rotateX(10deg) rotateY(20deg) rotateZ(-5deg) scale(0.9);
    }
}

@keyframes shadowMove {

    0%,
    100% {
        transform: translateX(-40px) scale(0.8);
        opacity: 0.3;
    }

    25%,
    75% {
        transform: translateX(0) scale(1.2);
        opacity: 0.1;
    }

    50% {
        transform: translateX(40px) scale(0.8);
        opacity: 0.3;
    }
}

/* Hide old elements */
.logo_animation::after,
.logo_animation .data-point {
    display: none;
}

.solutions-section {
    padding: 80px 0;
    background: #f8fbff;
}

.solutions-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
}

.solutions-content {
    flex: 1;
    max-width: 500px;
}

.solutions-content h2 {
    font-size: 36px;
    color: #001f3f;
    margin-bottom: 20px;
    font-weight: 700;
}

.solutions-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.solutions-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #e11d48;
    color: #e11d48;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.solutions-btn:hover {
    background: #e11d48;
    color: #fff;
}

.solutions-image {
    flex: 1.2;
    position: relative;
}

.solutions-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 900px) {
    .solutions-container {
        flex-direction: column;
        text-align: center;
    }

    .solutions-image {
        margin-top: 30px;
    }
}

/* Certification & Regulatory Engineering Section */
.cert-reg-section {
    padding: 80px 0;
    background: url('./images/cert-reg-banner.webp') center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.cert-reg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cert-reg-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cert-reg-section p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.cert-reg-section ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.cert-reg-section li {
    font-size: 1rem;
    margin: 5px 0;
}

@media (max-width: 900px) {
    .cert-reg-section {
        background-position: top;
        padding: 60px 0;
    }
}

/* Certification Page Hero */
.cert-hero {
    padding: 120px 20px;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('images/certification_banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: white;
}

.cert-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.cert-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cert-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Certification Details (about-us card style) */
.cert-details {
    padding: 80px 5%;
    background-color: #ffffff;
    text-align: left;
}

.cert-details h2 {
    font-size: 2.5rem;
    color: var(--hsb-teal);
    margin-bottom: 24px;
    line-height: 1.05;
}

.cert-details p {
    color: var(--hsb-dark-text);
    font-size: 1.05rem;
    margin-bottom: 34px;
    line-height: 1.7;
    max-width: 900px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cert-item {
    background: #ffffff;
    padding: 28px 32px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 180px;
}

.cert-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.cert-item h3 {
    color: var(--hsb-dark-text);
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 700;
}

.cert-item p {
    font-size: 0.98rem;
    margin-bottom: 0;
    color: #475569;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .cert-details {
        padding: 60px 3%;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .cert-details {
        padding: 40px 15px;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cert-item {
        padding: 22px;
    }
    
    .cert-hero h1 {
        font-size: 2.5rem;
    }
}


/* ==========================================
   HSB SOLUTIONS / Glidepath REDESIGN STYLES
   ========================================== */

html {
    scroll-behavior: smooth;
}

:root {
    --hsb-teal: #004F69;
    --hsb-teal-hover: #003648;
    --hsb-light-bg: #F4F6F7;
    --hsb-light-teal: #eef6fc;
    --hsb-dark-text: #0f172a;
    --hsb-body-text: #475569;
    --hsb-border: #e2e8f0;
    --hsb-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

/* Navbar Modifications */
:root {
    --navbar-padding-x: 120px;
    --navbar-height: 80px;
}

.navbar {
    background: var(--hsb-teal) !important;
    border-bottom: none !important;
    padding: 0 var(--navbar-padding-x) !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-height) !important;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* White logo background block on the far left */
.navbar-logo-wrapper {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    align-self: stretch; /* fill full height of the navbar */
    padding: 0 45px 0 var(--navbar-padding-x);
    margin-left: calc(-1 * var(--navbar-padding-x));
    border-radius: 0 0 45px 0; /* curved bottom-right edge */
    z-index: 10;
    transition: all 0.3s ease;
}

.navbar-logo-img {
    height: 58px;
    max-width: 310px;
    object-fit: contain;
    display: block;
}

.nav-links {
    gap: 15px !important;
}

.nav-links li a {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 15px;
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: all 0.25s ease;
    background-color: transparent;
    border: none !important;
}

/* Active page link styled with a semi-transparent white, rounded-corner highlight box */
.nav-links li a:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

.nav-links li a.active {
    background-color: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
}

.dropdown-title {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-title a {
    color: #ffffff !important;
}

.dropdown-title i {
    color: #ffffff !important;
    font-size: 12px;
    transition: transform 0.3s;
}

/* Services Dropdown Menu Adjustments */
.dropdown-menu {
    top: var(--navbar-height) !important; /* starts right below the navbar */
    border-top: 3px solid var(--hsb-teal) !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15) !important;
    border-radius: 0 0 8px 8px !important;
}

.dropdown-menu ul li a {
    color: #334155 !important;
    background-color: transparent !important;
    font-weight: 500 !important;
    padding: 12px 20px !important;
    border-radius: 0 !important;
}

.dropdown-menu ul li a:hover {
    background-color: var(--hsb-light-teal) !important;
    color: var(--hsb-teal) !important;
    padding-left: 25px !important;
}

.nav-cta-container {
    display: flex;
    align-items: center;
}

/* White button with rounded corners and bold dark teal text on the far right */
.nav-cta-btn {
    background-color: #ffffff !important;
    color: var(--hsb-teal) !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.nav-cta-btn:hover {
    background-color: #f8fbff !important;
    color: var(--hsb-teal-hover) !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px) !important;
}

.menu-icon i {
    color: #ffffff !important;
}

/* Footer Banner */
.footer-banner {
    background-color: var(--hsb-teal);
    color: #ffffff;
    padding: 40px 120px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background-color: #f0f2f4;
    border-radius: 16px;
    padding: 35px 50px;
    overflow: hidden;
}

.footer-banner-left {
    flex: 1.5;
}

.footer-banner-left h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    color: var(--hsb-teal);
}

.footer-banner-left p {
    font-size: 15px;
    opacity: 1;
    line-height: 1.5;
    color: var(--hsb-body-text);
}

.footer-banner-right {
    flex: 1;
    max-width: 380px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Responsive footer banner: stack on tablet/mobile while preserving design */
@media (max-width: 1023px) {
    .footer-banner {
        padding: 28px 20px;
    }
    .footer-banner-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
        gap: 20px;
    }
    .footer-banner-left {
        width: 100%;
    }
    .footer-banner-left h2 {
        font-size: 20px;
    }
    .footer-banner-left p {
        font-size: 14px;
    }
    .footer-banner-right {
        max-width: 100%;
        justify-content: center;
        width: 100%;
    }
    .footer-banner-right svg {
        width: 100%;
        height: auto;
        max-width: 520px;
    }
}

@media (max-width: 479px) {
    .footer-banner-container {
        padding: 18px;
        gap: 12px;
    }
    .footer-banner-left h2 {
        font-size: 18px;
    }
    .footer-banner-left p {
        font-size: 13px;
    }
}

/* Footer Bottom Layout */
.footer {
    background-color: var(--hsb-teal) !important;
    color: #cbd5e1 !important;
    padding: 60px 120px 40px !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-top: 25px !important;
    margin-top: 40px !important;
    font-size: 14px;
    color: #cbd5e1;
}

.footer-bottom-right a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-right a:hover {
    color: #ffffff;
}

/* Our Story Section */
.story-banner-section {
    background-color: var( --dark-navy);
    color: #ffffff;
    padding: 80px 120px;
    position: relative;
    overflow: visible;
    z-index: 2;
}

.story-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.story-banner-left {
    flex: 1;
    padding-bottom: 55px;
}

.story-banner-left h1 {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
    margin: 0;
}

.story-banner-left p {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.6;
    color: #ffffff;
}

.story-banner-right {
    flex: 1;
    position: relative;
}

.story-banner-image {
    width: 100%;
    max-width: 500px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 20;
    margin-bottom: -200px; /* overflow below teal section */
}

.story-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1024px) {
    .story-banner-section {
        padding: 55px 40px;
    }
    .story-banner-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .story-banner-left {
        padding-bottom: 30px;
    }
    .story-banner-image {
        margin-bottom: -100px;
    }
}

@media (max-width: 768px) {
    .story-banner-section {
        padding: 40px 20px;
    }
    .story-banner-container {
        gap: 30px;
    }
    .story-banner-left h1 {
        font-size: 26px;
        line-height: 1.3;
    }
    .story-banner-left p {
        font-size: 15px;
    }
    .story-banner-right {
        width: 100%;
    }
    .story-banner-image {
        max-width: 100%;
        height: auto;
        min-height: 240px;
        margin-bottom: 0;
    }
    .story-banner-image img {
        height: auto;
    }
}

@media (max-width: 600px) {
    .story-banner-section {
        padding: 32px 16px;
    }
    .story-banner-left h1 {
        font-size: 22px;
    }
    .story-banner-left p {
        font-size: 14px;
        line-height: 1.6;
    }
    .story-banner-image {
        min-height: 200px;
    }
}

.story-content-details {
    padding: 60px 120px;
    background-color: var(--hsb-light-bg);
}

.story-details-container {
    max-width: 900px;
    margin: 0 auto;
}

.story-details-container p {
    font-size: 16px;
    color: var(--hsb-body-text);
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: justify;
}

/* Leadership Spotlight Ã¢â‚¬â€ full-width pill avatar + text card */
.leadership-spotlight {
    width: 100%;
    padding: 80px 0;
    background-color: var(--hsb-light-bg);
    overflow: hidden;
}

.leadership-spotlight-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.leadership-row {
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: 100%;
    padding-right: clamp(24px, 5vw, 80px);
}

.leadership-row.reverse {
    flex-direction: row-reverse;
    padding-right: 0;
    padding-left: clamp(24px, 5vw, 80px);
}

.leadership-avatar-wrapper {
    flex: 0 0 clamp(200px, 26vw, 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 0 140px 140px 0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    padding: clamp(24px, 3vw, 36px) clamp(40px, 5vw, 72px) clamp(24px, 3vw, 36px) clamp(28px, 4vw, 56px);
    min-height: 160px;
}

.leadership-row.reverse .leadership-avatar-wrapper {
    border-radius: 140px 0 0 140px;
    padding: clamp(24px, 3vw, 36px) clamp(28px, 4vw, 56px) clamp(24px, 3vw, 36px) clamp(40px, 5vw, 72px);
}

.leadership-avatar-wrapper img {
    width: clamp(100px, 12vw, 140px);
    height: clamp(100px, 12vw, 140px);
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.leadership-info {
    flex: 1;
    min-width: 0;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 52px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leadership-info h3 {
    font-size: clamp(20px, 2.2vw, 26px);
    color: var(--hsb-teal);
    margin: 0 0 8px;
    font-weight: 700;
}

.leadership-info p {
    font-size: clamp(14px, 1.5vw, 15px);
    color: var(--hsb-dark-text);
    line-height: 1.75;
    margin: 0 0 14px;
}

.leadership-info p:last-child {
    margin-bottom: 0;
}

.leadership-info p strong {
    color: var(--hsb-teal);
    font-weight: 600;
}

/* Vision Mission Values Section */
.vision-mission-values-section {
    padding: 80px clamp(24px, 5vw, 120px);
    background-color: var(--hsb-light-bg);
}

.vmv-section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.vmv-section-heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--hsb-teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.vmv-section-heading span::before,
.vmv-section-heading span::after {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--hsb-teal);
    opacity: 0.35;
}

.vmv-section-heading h2 {
    position: relative;
    margin: 0;
    color: var(--hsb-teal);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.8px;
}

.vmv-section-heading h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--hsb-teal), var(--hsb-teal-hover));
}

.vmv-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
}

.vmv-left {
    flex: 0 0 44%;
    min-height: 460px;
    background-color: #1c2333;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.vmv-left img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
}

.vmv-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    margin-left: -72px;
    padding: 24px 0;
    position: relative;
    z-index: 2;
}

.vmv-card {
    background: #ffffff;
    padding: 28px 36px;
    border-radius: 16px;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.1);
}

.vmv-card h3 {
    font-size: 22px;
    color: var(--hsb-dark-text);
    margin: 0 0 10px;
    font-weight: 700;
}

.vmv-card p {
    font-size: 15px;
    color: var(--hsb-dark-text);
    line-height: 1.65;
    margin: 0;
}

/* Why Rooted in TÃƒÂ¼rkiye */
.why-turkiye-section {
    padding: 80px 120px;
    background-color: #ffffff;
}

.why-turkiye-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-turkiye-left {
    flex: 1.2;
}

.why-turkiye-left h2 {
    font-size: 32px;
    color: var(--hsb-teal);
    margin-bottom: 20px;
    font-weight: 800;
}

.why-turkiye-left p {
    font-size: 15px;
    color: var(--hsb-body-text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.why-turkiye-right {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.why-turkiye-right svg {
    display: none;
}

.bridge-content-cards {
    width: 100%;
    display: grid;
    gap: 18px;
}

.bridge-card {
    position: relative;
    padding: 26px 28px 26px 86px;
    background: #ffffff;
    border: 1px solid var(--hsb-border);
    border-radius: 18px;
    box-shadow: var(--hsb-shadow);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bridge-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--hsb-teal), var(--hsb-teal-hover));
}

.bridge-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 79, 105, 0.28);
    box-shadow: 0 18px 42px rgba(0, 79, 105, 0.12);
}

.bridge-card span {
    position: absolute;
    left: 26px;
    top: 26px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--hsb-teal);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.bridge-card h3 {
    margin: 0 0 8px;
    color: var(--hsb-teal);
    font-size: 20px;
    font-weight: 800;
}

.bridge-card p {
    margin: 0;
    color: var(--hsb-body-text);
    font-size: 15px;
    line-height: 1.7;
}

/* Founders of Our Journey */
.founders-journey-section {
    position: relative;
    overflow: hidden;
    background-color: var(--hsb-light-bg);
    padding: 100px 0;
}

.founders-journey-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.founders-journey-layout {
    position: relative;
}

.founders-teal-panel {
    position: absolute;
    top: -100px;
    bottom: -100px;
    left: calc((100vw - 100%) / -2);
    width: calc(50vw + 20px);
    background-color: var(--hsb-teal);
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    z-index: 1;
    pointer-events: none;
}

.founders-journey-layout > h2 {
    position: relative;
    z-index: 2;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #ffffff;
    text-align: left;
    margin: 0 0 48px;
    max-width: 560px;
}

.founders-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: stretch;
}

.founder-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.founder-card-body {
    flex: 1;
    padding: 40px 36px 24px;
}

.founder-card-body p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin: 0 0 16px;
    text-align: left;
}

.founder-card-body p:last-child {
    margin-bottom: 0;
}

.founder-card-body p strong {
    color: #0f172a;
    font-weight: 700;
}

.founder-card-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 0 36px 40px;
    margin-top: auto;
}

.founder-card-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #5bb0cb 0%, #145970 100%);
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

.founder-card-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
}

.founder-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.founder-meta h4 {
    font-size: 20px;
    color: #0f172a;
    font-weight: 700;
    margin: 0;
}

.founder-meta span {
    font-size: 14px;
    color: #004F69;
    font-weight: 600;
}



/* Circular Team Collage */
.team-collage-section {
    padding: 100px 0;
    background-color: var(--hsb-light-bg);
}

.collage-container {
    position: relative;
    width: 850px;
    height: 850px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.collage-center-card {
    position: relative;
    z-index: 10;
    width: 480px;
    min-height: 320px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 36px;
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.collage-center-card h3 {
    font-size: 24px;
    color: var(--hsb-teal);
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 20px;
}

.collage-center-card p.collage-sub {
    font-size: 14px;
    font-weight: 600;
    color: var(--hsb-dark-text);
    margin-bottom: 12px;
    line-height: 1.5;
}

.collage-center-card p {
    font-size: 13px;
    color: var(--hsb-body-text);
    line-height: 1.6;
    margin-bottom: 12px;
}

.collage-center-card p:last-child {
    margin-bottom: 0;
}

.collage-member {
    position: absolute;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    background: radial-gradient(circle, #5bb0cb 0%, #145970 100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                filter 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    z-index: 5;
}

.collage-member:hover {
    transform: scale(1.2) !important;
    filter: blur(0) !important;
    opacity: 1 !important;
    z-index: 50 !important;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.25);
}

.collage-member img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
}

/* Position member images in a perfect circle around the center card with depth of field */
.member-1  { top: 52px; left: 377px; filter: blur(2.5px); opacity: 0.75; }
.member-2  { top: 96px; left: 540px; filter: blur(1.5px); opacity: 0.85; }
.member-3  { top: 215px; left: 659px; filter: blur(0.5px); opacity: 0.95; }
.member-4  { top: 377px; left: 702px; filter: none; opacity: 1; z-index: 12; }
.member-5  { top: 540px; left: 659px; filter: blur(0.5px); opacity: 0.95; }
.member-6  { top: 659px; left: 540px; filter: blur(1.5px); opacity: 0.85; }
.member-7  { top: 702px; left: 377px; filter: blur(2.5px); opacity: 0.75; }
.member-8  { top: 659px; left: 215px; filter: blur(1.5px); opacity: 0.85; }
.member-9  { top: 540px; left: 96px; filter: blur(0.5px); opacity: 0.95; }
.member-10 { top: 377px; left: 52px; filter: none; opacity: 1; z-index: 12; }
.member-11 { top: 215px; left: 96px; filter: blur(0.5px); opacity: 0.95; }
.member-12 { top: 96px; left: 215px; filter: blur(1.5px); opacity: 0.85; }

/* Standards Expertise */
.standards-expertise-section {
    padding: 90px 120px;
    background:
        radial-gradient(circle at 10% 15%, rgba(0, 79, 105, 0.07), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, var(--hsb-light-bg) 100%);
}

.standards-expertise-container {
    max-width: 1280px;
    margin: 0 auto;
}

.standards-heading {
    max-width: 780px;
    margin: 0 auto 46px;
    text-align: center;
}

.standards-heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--hsb-teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.standards-heading span::before,
.standards-heading span::after {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--hsb-teal);
    opacity: 0.35;
}

.standards-heading h2 {
    margin: 0;
    color: var(--hsb-teal);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.8px;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.standard-card {
    min-height: 190px;
    padding: 28px 20px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid transparent;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.standard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.13);
}

.standard-card h3 {
    margin: 0 0 8px;
    font-size: 23px;
    font-weight: 900;
}

.standard-card span {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 800;
}

.standard-card p {
    margin: 0;
    color: var(--hsb-body-text);
    font-size: 13px;
    line-height: 1.55;
}

.standard-blue {
    background: #e6f1fb;
    border-color: #b5d4f4;
}

.standard-blue h3,
.standard-blue span {
    color: #185fa5;
}

.standard-green {
    background: #e1f5ee;
    border-color: #9fe1cb;
}

.standard-green h3,
.standard-green span {
    color: #0f6e56;
}

.standard-purple {
    background: #eeedfe;
    border-color: #afa9ec;
}

.standard-purple h3,
.standard-purple span {
    color: #534ab7;
}

.standard-amber {
    background: #faeeda;
    border-color: #fac775;
}

.standard-amber h3,
.standard-amber span {
    color: #854f0b;
}

.standard-neutral {
    background: #f1efe8;
    border-color: #d3d1c7;
}

.standard-neutral h3,
.standard-neutral span {
    color: #5f5e5a;
}

/* DCU Program Page */
.dcu-program-hero {
    padding: 95px 120px;
    background:
        linear-gradient(135deg, rgba(0, 79, 105, 0.95), rgba(0, 54, 72, 0.96)),
        url("./images/Our_project_UH60X.jpg") center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.dcu-program-hero-inner,
.dcu-overview-container,
.dcu-phases-container,
.dcu-differentiators-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dcu-program-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 56px;
    align-items: center;
}

.dcu-program-badge,
.dcu-section-kicker,
.dcu-section-heading span {
    display: inline-block;
    margin-bottom: 16px;
    color: #9ee8ff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.dcu-program-copy h1 {
    margin: 0 0 24px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.dcu-program-copy h1 span {
    color: #9ee8ff;
}

.dcu-program-copy p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.8;
}

.dcu-program-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.dcu-primary-btn,
.dcu-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.dcu-primary-btn {
    background: #ffffff;
    color: var(--hsb-teal);
}

.dcu-secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: #ffffff;
}

.dcu-primary-btn:hover,
.dcu-secondary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.dcu-program-visual {
    display: flex;
    justify-content: center;
}

.dcu-visual-card {
    width: 100%;
    max-width: 360px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.dcu-visual-card i {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.16);
    color: #9ee8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}

.dcu-visual-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.dcu-visual-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.dcu-overview-section,
.dcu-phases-section {
    padding: 90px 120px;
    background: var(--hsb-light-bg);
}

.dcu-overview-container {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 48px;
    align-items: start;
}

.dcu-overview-text {
    background: #ffffff;
    border: 1px solid var(--hsb-border);
    border-radius: 22px;
    padding: 42px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.dcu-overview-text h2,
.dcu-section-heading h2 {
    margin: 0 0 18px;
    color: var(--hsb-teal);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.8px;
}

.dcu-overview-text p,
.dcu-section-heading p {
    color: var(--hsb-body-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.dcu-profile-card {
    background: #ffffff;
    border: 1px solid var(--hsb-border);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.dcu-profile-card h3 {
    margin: 0 0 18px;
    color: var(--hsb-teal);
    font-size: 22px;
    font-weight: 900;
}

.dcu-profile-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 0;
    border-top: 1px solid var(--hsb-border);
}

.dcu-profile-row span {
    color: var(--hsb-body-text);
    font-size: 14px;
}

.dcu-profile-row strong {
    color: var(--hsb-dark-text);
    font-size: 14px;
    text-align: right;
}

.dcu-section-heading {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.dcu-phase-list {
    display: grid;
    gap: 14px;
}

.dcu-phase-card {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--hsb-border);
    border-radius: 16px;
    padding: 24px 26px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dcu-phase-card:hover {
    transform: translateY(-4px);
    border-color: var(--hsb-teal);
    box-shadow: 0 18px 42px rgba(0, 79, 105, 0.12);
}

.phase-number {
    color: var(--hsb-teal);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dcu-phase-card h3 {
    margin: 0 0 6px;
    color: var(--hsb-dark-text);
    font-size: 17px;
}

.dcu-phase-card p {
    margin: 0;
    color: var(--hsb-body-text);
    line-height: 1.6;
    font-size: 14px;
}

.phase-tags {
    display: flex;
    justify-content: flex-end;
    gap: 7px;
    flex-wrap: wrap;
}

.phase-tags span {
    padding: 6px 10px;
    border-radius: 999px;
    background: #e6f1fb;
    color: var(--hsb-teal);
    font-size: 12px;
    font-weight: 800;
}

.dcu-differentiators-section {
    padding: 90px 120px;
    background: linear-gradient(135deg, var(--hsb-teal), var(--hsb-teal-hover));
    color: #ffffff;
}

.dcu-section-heading.light h2 {
    color: #ffffff;
}

.dcu-diff-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.dcu-diff-card {
    padding: 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.dcu-diff-card h3 {
    margin: 0 0 10px;
    color: #9ee8ff;
    font-size: 18px;
}

.dcu-diff-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

/* Service Detail Pages */
.service-detail-hero {
    padding: 95px 120px;
    background:
        linear-gradient(135deg, rgba(0, 79, 105, 0.94), rgba(0, 54, 72, 0.96)),
        url("./images/Avionics-Engineering-Services.webp") center/cover no-repeat;
    color: #ffffff;
}

.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: #9ee8ff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.service-detail-hero h1 {
    max-width: 860px;
    margin: 0 0 22px;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.4px;
}

.service-detail-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.8;
}

.service-detail-body {
    padding: 85px 120px;
    background: var(--hsb-light-bg);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 36px;
    align-items: start;
}

.service-detail-main,
.service-detail-card {
    background: #ffffff;
    border: 1px solid var(--hsb-border);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.service-detail-main {
    padding: 42px;
}

.service-detail-main h2 {
    margin: 0 0 18px;
    color: var(--hsb-teal);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
    font-weight: 900;
}

.service-detail-main p {
    color: var(--hsb-body-text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-detail-main p:last-child {
    margin-bottom: 0;
}

.service-detail-card {
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, var(--hsb-teal), var(--hsb-teal-hover));
}

.service-detail-card h3 {
    margin: 0 0 18px;
    color: var(--hsb-teal);
    font-size: 22px;
    font-weight: 900;
}

.service-detail-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-detail-card li {
    position: relative;
    padding: 12px 0 12px 24px;
    color: var(--hsb-body-text);
    border-top: 1px solid var(--hsb-border);
    line-height: 1.5;
}

.service-detail-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--hsb-teal);
}

@media (max-width: 1100px) {
    .standards-expertise-section {
        padding: 70px 40px;
    }

    .standards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .dcu-program-hero,
    .dcu-overview-section,
    .dcu-phases-section,
    .dcu-differentiators-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .dcu-program-hero-inner,
    .dcu-overview-container {
        grid-template-columns: 1fr;
    }

    .dcu-diff-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-detail-hero,
    .service-detail-body {
        padding-left: 40px;
        padding-right: 40px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .standards-expertise-section {
        padding: 60px 20px;
    }

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

    .dcu-program-hero,
    .dcu-overview-section,
    .dcu-phases-section,
    .dcu-differentiators-section {
        padding: 60px 20px;
    }

    .dcu-overview-text,
    .dcu-profile-card {
        padding: 26px 22px;
    }

    .dcu-phase-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .phase-tags {
        justify-content: flex-start;
    }

    .dcu-diff-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-hero,
    .service-detail-body {
        padding: 60px 20px;
    }

    .service-detail-main,
    .service-detail-card {
        padding: 26px 22px;
    }
}

/* ============================================
   CAREERS PAGE - REFERENCE IMAGE LAYOUT
   ============================================ */

/* Careers Hero Section - Teal top with overflowing image card */
.careers-hero-redesign {
    background-color: var(--hsb-teal);
    color: #ffffff;
    padding: 55px 120px 0;
    overflow: visible;
    position: relative;
    z-index: 2;
}

.careers-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.careers-hero-left {
    flex: 1;
    padding-bottom: 55px;
    display: flex;
    align-items: center;
    min-height: 110px;
}

.careers-hero-left h1 {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
    margin: 0;
}

.careers-hero-right {
    flex: 1;
    position: relative;
}

.careers-hero-image {
    width: 100%;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    position: relative;
    z-index: 20;
    margin-bottom: -200px;
    margin-top: 20px;
}

.careers-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.careers-body-section {
    background-color: var(--hsb-light-bg);
    padding: 50px 120px 60px;
    position: relative;
    z-index: 1;
}

.careers-body-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.careers-body-text {
    flex: 1;
}

.careers-body-text p {
    font-size: 15px;
    color: var(--hsb-teal);
    line-height: 1.75;
    margin-bottom: 20px;
}

.careers-body-spacer {
    flex: 1;
    min-height: 200px;
}

/* ============================================
   Open Positions - Large heading + card rows
   ============================================ */
.open-positions-section {
    padding: 70px 120px 55px;
    background-color: var(--hsb-light-bg);
    border-top: 1px solid var(--hsb-border);
}

.open-positions-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.35fr);
    gap: 34px;
    align-items: stretch;
}

.positions-left {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--hsb-border);
    border-radius: 18px;
    padding: 38px 36px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    overflow: hidden;
}

.positions-left::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, var(--hsb-teal), var(--hsb-teal-hover));
}

.positions-left h2 {
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 900;
    color: var(--hsb-dark-text);
    line-height: 1.1;
    margin-bottom: 18px;
    margin-top: 0;
    letter-spacing: -1px;
}

.positions-left p {
    font-size: 15px;
    color: var(--hsb-body-text);
    line-height: 1.7;
    margin-bottom: 16px;
    display: block;
}

.positions-left p:last-child {
    margin-bottom: 0;
}

.positions-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
}

/* Job card rows Ã¢â‚¬â€ white bg, teal title, circular arrow apply button */
.position-row {
    background-color: #ffffff;
    padding: 22px 24px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    border: 1px solid var(--hsb-border);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
    transition: all 0.25s ease;
}

.position-row:hover {
    box-shadow: 0 20px 46px rgba(0, 79, 105, 0.13);
    border-color: var(--hsb-teal);
    transform: translateY(-4px);
}

.position-row h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--hsb-teal);
    margin: 0;
}

.position-copy {
    min-width: 0;
    padding-right: 18px;
}

.position-meta {
    display: block;
    margin-top: 6px;
    color: var(--hsb-body-text);
    font-size: 13px;
    line-height: 1.45;
}

/* Apply text + circular arrow button */
.position-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--hsb-teal);
    flex-shrink: 0;
}

.position-link i {
    width: 34px;
    height: 34px;
    background-color: var(--hsb-teal);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.position-row:hover .position-link i {
    background-color: var(--hsb-teal-hover);
    transform: translateX(3px);
}

/* Life at HSB Testimonial */
.life-at-hsb-section {
    background-color: var(--hsb-teal);
    padding: 80px 120px;
    color: #ffffff;
}

.life-at-hsb-container {
    max-width: 1200px;
    margin: 0 auto;
}

.life-at-hsb-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.life-at-hsb-section p.subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.testimonial-wrapper {
    background: #ffffff;
    color: var(--hsb-dark-text);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content blockquote {
    font-size: 17px;
    color: var(--hsb-body-text);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    border: none;
    padding: 0;
}

.testimonial-author h4 {
    font-size: 18px;
    color: var(--hsb-teal);
    font-weight: 700;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-nav-btn {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

.testimonial-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Careers Apply Section */
.careers-apply-section {
    padding: 80px 120px;
    background-color: var(--hsb-light-bg);
}

.careers-apply-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.apply-left {
    flex: 1.2;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--hsb-shadow);
}

.apply-left h2 {
    font-size: 28px;
    color: var(--hsb-teal);
    font-weight: 800;
    margin-bottom: 10px;
}

.apply-left p.form-subtitle {
    font-size: 14px;
    color: var(--hsb-body-text);
    margin-bottom: 30px;
}

.apply-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.apply-image-card {
    width: 100%;
    max-width: 420px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--hsb-shadow);
    z-index: 5;
}

.apply-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apply-bg-block {
    position: absolute;
    bottom: -30px;
    right: 30px;
    width: 100%;
    max-width: 420px;
    height: 250px;
    background-color: var(--hsb-teal);
    border-radius: 20px;
    z-index: 1;
}

.apply-form .form-row-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.apply-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 13px;
    color: var(--hsb-dark-text);
}

.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"],
.apply-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    background-color: #ffffff;
}

/* --- Compact responsive tweaks for tablet & mobile --- */
@media (max-width: 1024px) {
    /* Featured articles: 2 columns -> 1 on narrow tablets */
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 16px;
    }

    .story-banner-container {
        padding: 0;
    }

    .cert-details .container,
    .featured-articles,
    .industry-insights,
    .services-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .story-banner-section {
        padding: 28px 18px;
    }

    .story-banner-left h1 { font-size: 22px; }
    .story-banner-left p  { font-size: 14px; }

    .story-banner-image { min-height: 180px; margin-bottom: 0; }

    /* Tighten page containers on mobile for edge-to-edge feel */
    .container { padding-left: 14px; padding-right: 14px; }
}

@media (max-width: 480px) {
    .story-banner-left h1 { font-size: 20px; }
    .story-banner-left p  { font-size: 13px; }

    .cert-details .cert-card { grid-template-columns: 1fr; gap: 0; }
    .cert-details .cert-card-media { min-height: 180px; }
    /* .cert-details .cert-card-copy { padding: 20px 0; } */

    .article-card { padding: 20px; }
    .article-icon { width: 44px; height: 44px; }

    /* Remove large left/right margins site-wide where container exists */
    .services-grid, .articles-grid, .insights-grid { padding-left: 10px; padding-right: 10px; }
}

/* Certification cards - responsive stacking for tablets and mobiles */
@media (max-width: 1024px) {
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 16px;
    }

    .cert-card {
        display: flex;
        flex-direction: column;
        gap: 18px;
        align-items: center;
        text-align: center;
        padding: 0;
    }

    .cert-card.reverse { flex-direction: column; }

    .cert-card-media {
        width: 100%;
        min-height: 260px;
        border-radius: 14px;
        overflow: hidden;
    }

    .cert-card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .cert-card-copy {
        width: 100%;
        padding: 20px 12px;
    }

    .cert-card-copy h3 { font-size: 1.25rem; }
    .cert-card-copy p  { font-size: 0.98rem; line-height: 1.6; }
}

@media (max-width: 480px) {
    .cert-card-media { min-height: 180px; border-radius: 12px; }
    .cert-card-copy { padding: 16px 10px; }
    .cert-card-copy h3 { font-size: 1.1rem; }
    .cert-card-copy p { font-size: 0.95rem; }
}


/* Thought Leadership — improved typography on tablet & mobile */
@media (max-width: 1024px) {
    .story-banner-left h1 { font-size: 28px; }
    .story-banner-left p  { font-size: 15px; }
    .section-title { font-size: 1.6rem; }

    .articles-grid { grid-template-columns: 1fr; gap: 20px; }
    .article-card { padding: 20px; }
    .article-icon { width: 48px; height: 48px; }
    .article-content h3 { font-size: 18px; margin-top: 6px; }
    .article-content p { font-size: 14px; line-height: 1.6; }
    .key-topics h4 { font-size: 16px; }
    .key-topics ul li { font-size: 13px; }

    .insights-grid { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 768px) {
    .story-banner-left h1 { font-size: 24px; }
    .story-banner-left p  { font-size: 14px; }
    .section-title { font-size: 1.4rem; }

    .article-card { padding: 16px; }
    .article-content h3 { font-size: 16px; }
    .article-content p { font-size: 13px; }
    .key-topics ul li { font-size: 12px; }
    /* Stack icon above content on small screens and center it */
    .article-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .article-icon {
        margin-bottom: 12px;
    }

    .article-content {
        width: 100%;
    }

    .key-topics ul {
        text-align: left;
        width: 100%;
        padding-left: 18px;
    }
}

@media (max-width: 480px) {
    .story-banner-left h1 { font-size: 20px; }
    .story-banner-left p  { font-size: 13px; }
    .section-title { font-size: 1.2rem; }

    .article-card { padding: 14px; }
    .article-content h3 { font-size: 15px; }
    .article-content p { font-size: 12px; }
    .key-topics h4 { font-size: 14px; }
    .key-topics ul li { font-size: 12px; }
    /* ensure stacked layout remains consistent on very small screens */
    .article-card { align-items: center; }
    .article-icon { margin-bottom: 10px; }
}

/* Base container utility used across pages */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Responsive service and articles grids */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .services-grid, .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid, .insights-grid, .articles-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}


.apply-form input:focus,
.apply-form textarea:focus {
    border-color: var(--hsb-teal);
}

.file-upload-wrapper {
    position: relative;
    border: 1px dashed #cbd5e1;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
}

.file-upload-wrapper:hover {
    background-color: var(--hsb-light-bg);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-wrapper span {
    font-size: 13px;
    color: var(--hsb-body-text);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0;
}

.checkbox-group input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 13px;
    color: var(--hsb-body-text);
    cursor: pointer;
}

.form-submit-btn {
    width: 100%;
    background-color: var(--hsb-teal);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.form-submit-btn:hover {
    background-color: var(--hsb-teal-hover);
}

/* Cookies Bar */
.cookie-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 2000;
    border-left: 4px solid var(--hsb-teal);
}

.cookie-text {
    font-size: 13px;
    color: var(--hsb-body-text);
    line-height: 1.4;
}

.cookie-text a {
    color: var(--hsb-teal);
    font-weight: 600;
    text-decoration: none;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn-settings {
    background: transparent;
    border: 1px solid #cbd5e1;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-btn-accept {
    background: var(--hsb-teal);
    color: #ffffff;
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {
    :root {
        --navbar-padding-x: 40px;
        --navbar-height: 70px;
    }
    
    /* Mobile Navbar Overrides */
    .navbar {
        height: var(--navbar-height) !important;
        padding: 0 var(--navbar-padding-x) !important;
    }

    .navbar-logo-wrapper {
        border-radius: 0 0 30px 0 !important;
        padding: 0 25px 0 var(--navbar-padding-x) !important;
        order: 1;
    }

    .navbar-logo-img {
        height: 46px !important;
        max-width: 250px !important;
    }

    .menu-icon {
        display: block !important;
        order: 3;
        font-size: 22px;
        cursor: pointer;
        padding: 5px;
        margin-left: 15px;
    }

    .menu-icon i {
        color: #ffffff !important;
    }

    .nav-cta-container {
        display: flex !important;
        order: 2;
        margin-left: auto;
    }

    .nav-cta-btn {
        padding: 8px 16px !important;
        font-size: 13px !important;
        border-radius: 6px !important;
    }

    .nav-links {
        position: absolute !important;
        top: var(--navbar-height) !important;
        right: 0 !important;
        width: 100% !important;
        background: linear-gradient(to bottom, var(--hsb-teal), var(--hsb-teal-hover)) !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 10px 0 !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        z-index: 100 !important;
    }

    .nav-links li {
        width: 100% !important;
        text-align: center !important;
    }

    .nav-links li a {
        display: block !important;
        padding: 12px 0 !important;
        font-size: 16px !important;
        color: #ffffff !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        border-radius: 0 !important;
        background-color: transparent !important;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background-color: rgba(255, 255, 255, 0.08) !important;
        color: #ffffff !important;
    }

    .dropdown-menu {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        box-shadow: none !important;
        background: rgba(0, 0, 0, 0.15) !important;
        border-top: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        display: none;
    }

    .dropdown-menu[style*="display: block"] {
        display: block !important;
    }

    .dropdown-menu ul li a {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 14px !important;
        padding: 10px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
        text-align: center !important;
    }

    .dropdown-menu ul li a:hover {
        background-color: rgba(255, 255, 255, 0.05) !important;
        color: #ffffff !important;
        padding-left: 0 !important;
    }
    
    .footer-banner,
    .footer {
        padding: 40px 40px !important;
    }
    
    .story-banner-section,
    .story-content-details,
    .leadership-spotlight,
    .vision-mission-values-section,
    .why-turkiye-section,
    .team-collage-section,
    .careers-hero-redesign,
    .open-positions-section,
    .life-at-hsb-section,
    .careers-apply-section {
        padding: 60px 40px !important;
    }

    .story-banner-container,
    .vmv-container,
    .why-turkiye-container,
    .careers-hero-container,
    .open-positions-container,
    .careers-apply-container {
        flex-direction: column;
        gap: 40px;
    }

    .apply-form,
    .form-submit-btn {
        max-width: 100%;
    }

    .apply-intro {
        max-width: none;
    }

    .apply-image-card {
        min-height: 360px;
    }

    .why-turkiye-right {
        order: 2;
    }

    .vision-mission-values-section .vmv-left {
        flex: none;
        width: 100%;
        min-height: 320px;
        order: -1;
    }

    .vision-mission-values-section .vmv-right {
        margin-left: 0;
        width: 100%;
        padding: 0;
    }

    .vmv-card {
        padding: 24px 28px;
    }
    
    .founders-journey-section {
        padding: 60px 0 !important;
    }

    .founders-journey-layout {
        padding-top: 0;
    }

    .founders-teal-panel {
        left: calc((100vw - 100%) / -2);
        width: 100vw;
        top: -60px;
        height: calc(53% + 60px);
        min-height: auto;
        border-top-right-radius: 0;
        border-bottom-right-radius: 50px;
        border-bottom-left-radius: 50px;
    }

    .founders-journey-layout > h2 {
        max-width: 100%;
        margin-bottom: 32px;
        text-align: center;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .founder-card {
        min-height: auto;
    }

    .leadership-spotlight {
        padding: 60px 0 !important;
    }

    .leadership-spotlight-container {
        gap: 40px;
    }

    .leadership-row,
    .leadership-row.reverse {
        padding-left: 40px;
        padding-right: 40px;
        gap: 20px;
    }

    .leadership-avatar-wrapper {
        flex: 0 0 200px;
    }
}

@media (max-width: 768px) {
    .founders-journey-section {
        padding: 50px 0 !important;
    }

    .founders-journey-layout {
        padding-top: 0;
    }

    .founders-teal-panel {
        top: -50px;
        height: calc(53% + 50px);
        min-height: auto;
        border-bottom-right-radius: 40px;
        border-bottom-left-radius: 40px;
    }

    .founders-journey-layout > h2 {
        font-size: 24px;
        margin-bottom: 24px;
        padding: 0;
    }

    .founder-card-avatar {
        width: 100px;
        height: 100px;
    }

    .vision-mission-values-section .vmv-right {
        margin-left: 0;
        gap: 16px;
    }

    .vision-mission-values-section .vmv-left {
        min-height: 260px;
        border-radius: 16px;
    }

    .vmv-card {
        padding: 22px 24px;
        border-radius: 12px;
    }

    .vmv-card h3 {
        font-size: 20px;
    }

    .vmv-card p {
        font-size: 14px;
    }

    .leadership-spotlight {
        padding: 48px 0 !important;
    }

    .leadership-spotlight-container {
        gap: 32px;
    }

    .leadership-row,
    .leadership-row.reverse {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
        gap: 16px;
    }

    .leadership-row.reverse .leadership-avatar-wrapper {
        order: -1;
    }

    .leadership-avatar-wrapper,
    .leadership-row.reverse .leadership-avatar-wrapper {
        flex: none;
        width: 100%;
        min-height: auto;
        border-radius: 120px 120px 0 0;
        padding: 28px 32px 40px;
    }

    .leadership-avatar-wrapper img {
        width: 110px;
        height: 110px;
    }

    .leadership-info {
        padding: 28px 24px;
        border-radius: 12px;
    }

    .leadership-info h3 {
        font-size: 20px;
    }

    .leadership-info p {
        font-size: 14px;
        line-height: 1.65;
    }

    .collage-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
        padding: 0 20px;
    }
    
    .collage-center-card {
        width: 100%;
        height: auto;
        min-height: auto;
        border-radius: 20px;
        order: -1;
        padding: 32px 24px;
        margin-bottom: 24px;
    }
    
    .collage-member {
        position: static !important;
        transform: none !important;
        width: 76px;
        height: 76px;
        border-width: 3px;
        filter: none !important;
        opacity: 1 !important;
        z-index: 5 !important;
    }
    
    .testimonial-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .apply-left h2 {
        font-size: 32px;
    }

    .apply-image-card {
        min-height: 320px;
        border-radius: 20px;
    }
}

/* ==========================================
   HOMEPAGE HERO REDESIGN - HIGH-TECH VIDEO BANNER
   ========================================== */

.home-hero-section {
    position: relative;
    width: 100%;
    height: 82vh;
    min-height: 520px;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    clip-path: ellipse(140% 100% at 50% 0%);
    background-color: #0c1220; /* Dark space background fallback */
    z-index: 5;
    border-bottom: 2px solid rgba(0, 79, 105, 0.3);
}

.home-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(12, 18, 32, 0.4) 0%, rgba(12, 18, 32, 0.85) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Digital Grid Pattern Scan Lines - High-Tech Cockpit HUD overlay */
.home-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 79, 105, 0.12) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 79, 105, 0.12) 1px, transparent 1px),
        repeating-linear-gradient(rgba(12, 18, 32, 0) 0px, rgba(12, 18, 32, 0) 4px, rgba(0, 79, 105, 0.08) 5px, rgba(0, 79, 105, 0.08) 5px);
    background-size: 50px 50px, 50px 50px, 100% 10px;
    z-index: 3;
    pointer-events: none;
}

.home-hero-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 4;
}

.home-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -30px; /* offset top slightly for curved bottom balance */
}

.home-hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.25 !important;
    margin: 0 0 18px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 79, 105, 0.5) !important;
}

.home-hero-content p {
    font-size: clamp(1rem, 2vw, 1.4rem) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
    letter-spacing: 4.5px !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    padding: 0 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) !important;
    display: inline-block !important;
}

.home-hero-content p::after {
    content: '';
    display: block;
    width: 90px;
    height: 3px;
    background: #004F69;
    box-shadow: 0 0 10px rgba(0, 79, 105, 0.8), 0 0 20px rgba(0, 79, 105, 0.4);
    margin: 18px auto 0;
    border-radius: 2px;
}

.home-hero-scroll {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    color: #004F69 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 0 4px rgba(255, 255, 255, 0.25) !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    animation: scroll-bounce 2s infinite;
}

.scroll-down-btn:hover {
    background-color: #004F69 !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0, 79, 105, 0.4), 0 0 0 6px rgba(0, 79, 105, 0.25) !important;
    transform: scale(1.06) !important;
}

@keyframes scroll-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Tablet and Mobile adjustments for homepage hero */
@media (max-width: 1024px) {
    .home-hero-section {
        height: 70vh;
        clip-path: ellipse(170% 100% at 50% 0%);
    }
}

@media (max-width: 768px) {
    .home-hero-section {
        height: 65vh;
        min-height: 420px;
        clip-path: ellipse(220% 100% at 50% 0%);
    }
    
    .testimonial-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .apply-left h2 {
        font-size: 32px;
    }

    .apply-image-card {
        min-height: 320px;
        border-radius: 20px;
    }
}

/* ==========================================
   HOMEPAGE HERO REDESIGN - HIGH-TECH VIDEO BANNER
   ========================================== */

.home-hero-section {
    position: relative;
    width: 100%;
    height: 82vh;
    min-height: 520px;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    clip-path: ellipse(140% 100% at 50% 0%);
    background-color: #0c1220; /* Dark space background fallback */
    z-index: 5;
    border-bottom: 2px solid rgba(0, 79, 105, 0.3);
}

.home-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(12, 18, 32, 0.4) 0%, rgba(12, 18, 32, 0.85) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Digital Grid Pattern Scan Lines - High-Tech Cockpit HUD overlay */
.home-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 79, 105, 0.12) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 79, 105, 0.12) 1px, transparent 1px),
        repeating-linear-gradient(rgba(12, 18, 32, 0) 0px, rgba(12, 18, 32, 0) 4px, rgba(0, 79, 105, 0.08) 5px, rgba(0, 79, 105, 0.08) 5px);
    background-size: 50px 50px, 50px 50px, 100% 10px;
    z-index: 3;
    pointer-events: none;
}

.home-hero-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 4;
}

.home-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -30px; /* offset top slightly for curved bottom balance */
}

.home-hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.25 !important;
    margin: 0 0 18px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 79, 105, 0.5) !important;
}

.home-hero-content p {
    font-size: clamp(1rem, 2vw, 1.4rem) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
    letter-spacing: 4.5px !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    padding: 0 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) !important;
    display: inline-block !important;
}

.home-hero-content p::after {
    content: '';
    display: block;
    width: 90px;
    height: 3px;
    background: #004F69;
    box-shadow: 0 0 10px rgba(0, 79, 105, 0.8), 0 0 20px rgba(0, 79, 105, 0.4);
    margin: 18px auto 0;
    border-radius: 2px;
}

.home-hero-scroll {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    color: #004F69 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 0 4px rgba(255, 255, 255, 0.25) !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    animation: scroll-bounce 2s infinite;
}

.scroll-down-btn:hover {
    background-color: #004F69 !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0, 79, 105, 0.4), 0 0 0 6px rgba(0, 79, 105, 0.25) !important;
    transform: scale(1.06) !important;
}

@keyframes scroll-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* â”€â”€ DETAILS / COPY BOX â”€â”€ */
.cert-card-copy {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px 40px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--hsb-border, #e2e8f0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    z-index: 2;
    cursor: pointer;
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.3s ease,
        box-shadow 0.35s ease;
}

/* Left accent bar that animates in on hover */
.cert-card-copy::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 4px;
    background: linear-gradient(180deg, var(--hsb-teal, #004F69), #00aaff);
    border-radius: 0 4px 4px 0;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.cert-card-copy:hover::before {
    transform: scaleY(1);
}

.cert-card-copy:hover,
.cert-card-copy:active {
    transform: translateY(-10px) !important;
    border-color: rgba(0, 79, 105, 0.3);
    box-shadow:
        0 24px 48px -12px rgba(0, 79, 105, 0.14),
        0 0 0 1px rgba(0, 79, 105, 0.08);
}

.cert-card-copy h3 {
    margin: 0 0 14px;
    font-size: 1.4rem;
    line-height: 1.25;
    color: var(--hsb-dark-text);
    font-weight: 700;
    transition: color 0.3s ease;
}

.cert-card-copy:hover h3 {
    color: var(--hsb-teal, #004F69);
}

.cert-card-copy p {
    margin: 0;
    font-size: 0.975rem;
    line-height: 1.65;
    color: var(--hsb-body-text);
    max-width: 660px;
}

@media (max-width: 1024px) {
    .cert-standards-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cert-info-panel {
        position: relative;
        top: 0;
    }

    .cert-card,
    .cert-card:nth-child(even) {
        flex-direction: column;
        gap: 20px;
    }

    /* On tablet, both children slide from bottom */
    .cert-card:nth-child(odd) .cert-card-media,
    .cert-card:nth-child(odd) .cert-card-copy,
    .cert-card:nth-child(even) .cert-card-media,
    .cert-card:nth-child(even) .cert-card-copy {
        transform: translateY(40px) scale(0.95);
    }

    .cert-card-media {
        min-height: 240px;
        width: 100%;
    }

    .cert-card-copy {
        padding: 28px 32px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cert-standards-section {
        padding: 60px 16px;
    }

    .cert-standards-wrapper {
        gap: 24px;
    }

    .cert-panel-content {
        padding: 32px 24px;
    }

    .cert-panel-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        margin-bottom: 18px;
    }

    .cert-panel-content h2 {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }

    .cert-panel-content p {
        font-size: 0.95rem;
        margin-bottom: 22px;
    }

    .cert-panel-list li {
        font-size: 0.95rem;
        padding-left: 28px;
    }

    .cert-cards-container {
        gap: 40px;
    }

    .cert-card {
        gap: 16px;
    }

    .cert-card-copy {
        padding: 28px 24px;
        border-radius: 16px;
    }

    .cert-card-media {
        border-radius: 16px;
    }

    .cert-card-copy h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .cert-card-copy p {
        font-size: 0.95rem;
    }
}

/* Tablet and Mobile adjustments for homepage hero */
@media (max-width: 1024px) {
    .home-hero-section {
        height: 70vh;
        clip-path: ellipse(170% 100% at 50% 0%);
    }
}

@media (max-width: 768px) {
    .home-hero-section {
        height: 65vh;
        min-height: 420px;
        clip-path: ellipse(220% 100% at 50% 0%);
    }
    
    .home-hero-content h1 {
        letter-spacing: 1px !important;
    }
    
    .home-hero-content p {
        letter-spacing: 2.5px !important;
    }
    
    .scroll-down-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 0.95rem !important;
    }
}

/* --- Premium Row-Based Alternating Certification Cards (Horizontal Layout) --- */
.cert-details .cert-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 40px;
}

.cert-details .cert-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(3, 64, 91, 0.06);
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.08);
    transition: box-shadow 0.3s ease;
    padding-bottom: 78px;
}

.cert-details .cert-card:hover {
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.12);
}

.cert-details .cert-card-media {
    width: 100%;
    min-height: 360px;
    background: linear-gradient(135deg, #f4f7fb 0%, #e8f0f8 100%);
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.cert-details .cert-card-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cert-details .cert-card-copy {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cert-details .cert-card-copy h3 {
    font-size: 28px;
    color: var(--dark-navy);
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.cert-details .cert-card-copy p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

/* Alternating layout: reverse card has image on right, content on left */
.cert-details .cert-card.reverse {
    grid-auto-flow: dense;
}

.cert-details .cert-card.reverse .cert-card-media {
    order: 2;
}

.cert-details .cert-card.reverse .cert-card-copy {
    order: 1;
}

/* Responsive: Tablet - collapse to single column */
@media (max-width: 1024px) {
    .cert-details .cert-grid {
        gap: 40px;
    }

    .cert-details .cert-card {
        grid-template-columns: 1fr;
        gap: 0;
        border-radius: 20px;
    }

    .cert-details .cert-card-media {
        min-height: 300px;
    }

    .cert-details .cert-card-copy {
        padding: 36px 32px;
    }

    .cert-details .cert-card-copy h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .cert-details .cert-card-copy p {
        font-size: 15px;
    }

    /* Reset reverse layout on mobile */
    .cert-details .cert-card.reverse {
        grid-auto-flow: row;
    }

    .cert-details .cert-card.reverse .cert-card-media {
        order: 0;
    }

    .cert-details .cert-card.reverse .cert-card-copy {
        order: 0;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .cert-details .cert-grid {
        gap: 28px;
    }

    .cert-details .cert-card-media {
        min-height: 240px;
    }

    .cert-details .cert-card-copy h3 {
        font-size: 20px;
    }

    .cert-details .cert-card-copy p {
        font-size: 14px;
    }
}

/* ==========================================
   CAREERS PAGE - FULL RESPONSIVE DESIGN
   ========================================== */

/* ---------- TABLET (max-width: 1024px) ---------- */
@media (max-width: 1024px) {

    /* Story Banner - stack columns */
    .story-banner-section {
        padding: 50px 40px !important;
    }

    .story-banner-container {
        flex-direction: column;
        gap: 32px;
    }

    .story-banner-left {
        width: 100%;
        text-align: center;
    }

    .story-banner-left h1 {
        font-size: 2.2rem;
    }

    .story-banner-left p {
        font-size: 1rem;
    }

    .story-banner-right {
        width: 100%;
    }

    .story-banner-image {
        max-height: 320px;
        border-radius: 16px;
        overflow: hidden;
    }

    .story-banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Careers Body Section */
    .careers-body-section {
        padding: 40px 40px 50px !important;
    }

    .careers-body-container {
        flex-direction: column;
        gap: 0;
    }

    .careers-body-text {
        width: 100%;
    }

    .careers-body-spacer {
        display: none;
    }

    /* Open Positions Section */
    .open-positions-section {
        padding: 50px 40px 60px !important;
    }

    .open-positions-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .positions-left {
        width: 100%;
        text-align: left;
    }

    .positions-left h2 {
        font-size: 40px;
    }

    .positions-right {
        width: 100%;
    }

    /* Life at HSB Testimonial */
    .life-at-hsb-section {
        padding: 60px 40px !important;
    }

    .life-at-hsb-section h2 {
        font-size: 28px;
    }

    .testimonial-wrapper {
        padding: 36px;
        gap: 32px;
    }

    .testimonial-avatar {
        width: 110px;
        height: 110px;
    }

    .testimonial-content blockquote {
        font-size: 15px;
    }

    /* Apply Section */
    .careers-apply-section {
        padding: 60px 40px !important;
    }

    .careers-apply-container {
        flex-direction: column;
        gap: 40px;
    }

    .apply-left {
        width: 100%;
        padding: 32px;
    }

    .apply-right {
        width: 100%;
        justify-content: center;
    }

    .apply-image-card {
        max-width: 100%;
        height: 380px;
    }

    .apply-bg-block {
        right: 20px;
        max-width: 100%;
    }

    /* Cookie Bar */
    .cookie-bar {
        flex-direction: row;
        gap: 16px;
        padding: 14px 20px;
    }
}

/* ---------- MOBILE (max-width: 768px) ---------- */
@media (max-width: 768px) {

    /* Story Banner */
    .story-banner-section {
        padding: 40px 20px !important;
    }

    .story-banner-container {
        gap: 24px;
    }

    .story-banner-left h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .story-banner-left p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .story-banner-image {
        max-height: 260px;
    }

    /* Careers Body Section */
    .careers-body-section {
        padding: 30px 20px 40px !important;
    }

    .careers-body-text p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Open Positions */
    .open-positions-section {
        padding: 40px 20px 50px !important;
    }

    .open-positions-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .positions-left {
        padding: 28px 24px;
    }

    .positions-left h2 {
        font-size: 32px;
    }

    .positions-left p {
        font-size: 14px;
    }

    .position-row {
        padding: 18px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .position-row h3 {
        font-size: 15px;
        flex: 1;
        min-width: 0;
    }

    .position-link {
        font-size: 13px;
    }

    .position-link i {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

    /* Testimonial */
    .life-at-hsb-section {
        padding: 50px 20px !important;
    }

    .life-at-hsb-section h2 {
        font-size: 24px;
    }

    .life-at-hsb-section p.subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .testimonial-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        gap: 24px;
    }

    .testimonial-avatar {
        width: 90px;
        height: 90px;
        margin: 0 auto;
    }

    .testimonial-content blockquote {
        font-size: 14px;
        line-height: 1.65;
    }

    .testimonial-author h4 {
        font-size: 16px;
    }

    .testimonial-author span {
        font-size: 12px;
    }

    .testimonial-nav {
        margin-top: 20px;
    }

    .testimonial-nav-btn {
        width: 36px;
        height: 36px;
    }

    /* Apply Section */
    .careers-apply-section {
        padding: 40px 20px !important;
    }

    .careers-apply-container {
        gap: 30px;
    }

    .apply-left {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .apply-left h2 {
        font-size: 24px;
    }

    .apply-left p.form-subtitle {
        font-size: 13px;
        margin-bottom: 24px;
    }

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

    .apply-form input[type="text"],
    .apply-form input[type="email"],
    .apply-form input[type="tel"],
    .apply-form textarea {
        font-size: 15px;
        padding: 14px 16px;
    }

    .apply-form label {
        font-size: 13px;
    }

    .file-upload-wrapper {
        padding: 18px 14px;
    }

    .form-submit-btn {
        padding: 16px;
        font-size: 15px;
    }

    .apply-right {
        display: flex;
        justify-content: center;
    }

    .apply-image-card {
        max-width: 100%;
        height: 300px;
        border-radius: 16px;
    }

    .apply-bg-block {
        display: none;
    }

    /* Cookie Bar */
    .cookie-bar {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 16px 18px;
        bottom: 10px;
        width: 94%;
    }

    .cookie-text {
        font-size: 12px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn-settings,
    .cookie-btn-accept {
        flex: 1;
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* ---------- SMALL MOBILE (max-width: 480px) ---------- */
@media (max-width: 480px) {

    /* Story Banner */
    .story-banner-section {
        padding: 30px 16px !important;
    }

    .story-banner-left h1 {
        font-size: 1.5rem;
    }

    .story-banner-left p {
        font-size: 0.9rem;
    }

    .story-banner-image {
        max-height: 200px;
        border-radius: 12px;
    }

    /* Careers Body */
    .careers-body-section {
        padding: 24px 16px 32px !important;
    }

    .careers-body-text p {
        font-size: 13px;
    }

    /* Open Positions */
    .open-positions-section {
        padding: 32px 16px 40px !important;
    }

    .positions-left h2 {
        font-size: 26px;
    }

    .position-row {
        padding: 16px 16px;
        border-radius: 8px;
    }

    .position-row h3 {
        font-size: 14px;
    }

    /* Life at HSB */
    .life-at-hsb-section {
        padding: 36px 16px !important;
    }

    .life-at-hsb-section h2 {
        font-size: 22px;
    }

    .testimonial-wrapper {
        padding: 22px 18px;
        border-radius: 12px;
    }

    .testimonial-avatar {
        width: 76px;
        height: 76px;
    }

    .testimonial-content blockquote {
        font-size: 13px;
    }

    /* Apply Section */
    .careers-apply-section {
        padding: 28px 16px !important;
    }

    .apply-left {
        padding: 20px 16px;
        border-radius: 10px;
    }

    .apply-left h2 {
        font-size: 22px;
    }

    .apply-form input[type="text"],
    .apply-form input[type="email"],
    .apply-form input[type="tel"],
    .apply-form textarea {
        font-size: 14px;
        padding: 12px 14px;
    }

    .apply-image-card {
        height: 240px;
        border-radius: 12px;
    }

    .form-submit-btn {
        padding: 14px;
        font-size: 14px;
        border-radius: 8px;
    }

    /* Cookie Bar */
    .cookie-bar {
        width: 96%;
        bottom: 6px;
        padding: 12px 14px;
        border-radius: 6px;
    }

    .cookie-text {
        font-size: 11px;
        line-height: 1.5;
    }
}

/* Our Process - V-Model Lifecycle */
.our-process-section {
    padding: 110px 120px;
    background:
        linear-gradient(135deg, rgba(0, 79, 105, 0.96), rgba(0, 54, 72, 0.98)),
        url("./images/Our_project_UH60X.jpg") center/cover no-repeat;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.our-process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.12) 0%, transparent 28%),
        radial-gradient(circle at 88% 76%, rgba(255, 255, 255, 0.08) 0%, transparent 32%);
    background-size: 54px 54px, 54px 54px, auto, auto;
    pointer-events: none;
}

.our-process-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 54, 72, 0.92), rgba(0, 79, 105, 0.72), rgba(0, 54, 72, 0.92));
    pointer-events: none;
}

.our-process-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.process-header {
    max-width: 860px;
    margin: 0 auto 64px;
    text-align: center;
}

.process-header span {
    display: inline-block;
    margin-bottom: 12px;
    color: #93e5ff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.process-header h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
}

.process-header p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.8;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
    gap: 22px 30px;
    align-items: stretch;
}

.process-grid::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 110px;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(147, 229, 255, 0.8), rgba(147, 229, 255, 0.2), transparent);
    transform: translateX(-50%);
}

.process-grid::after {
    content: "V";
    position: absolute;
    left: 50%;
    top: 42%;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(147, 229, 255, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #93e5ff;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(147, 229, 255, 0.16);
}

.process-card {
    position: relative;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0);
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(280px circle at var(--x, 50%) var(--y, 0%), rgba(0, 79, 105, 0.12), transparent 62%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.process-card::after {
    content: "";
    position: absolute;
    top: 36px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #93e5ff;
    box-shadow: 0 0 0 8px rgba(147, 229, 255, 0.14), 0 0 24px rgba(147, 229, 255, 0.65);
}

.process-card:hover {
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-8px);
    border-color: rgba(147, 229, 255, 0.55);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.process-card:hover::before {
    opacity: 1;
}

.process-left {
    grid-column: 1;
}

.process-right {
    grid-column: 3;
}

.process-left::after {
    right: -39px;
}

.process-right::after {
    left: -39px;
}

.process-card-top {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
}

.process-step {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--hsb-teal, #00556b), var(--hsb-teal-hover, #003648));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    flex: 0 0 auto;
}

.process-card h3 {
    margin: 0;
    color: var(--hsb-teal, #00556b);
    font-size: 1.2rem;
    font-weight: 800;
}

.process-card p {
    margin: 0 0 18px;
    color: var(--hsb-body-text, #4a5568);
    line-height: 1.7;
}

.process-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.process-card li {
    position: relative;
    padding: 8px 0 8px 24px;
    color: var(--hsb-body-text, #4a5568);
    border-top: 1px solid var(--hsb-border, #e2e8f0);
    font-size: 0.95rem;
}

.process-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--hsb-teal, #00556b);
}

.process-code-card {
    grid-column: 1 / -1;
    max-width: 920px;
    margin: 24px auto 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(147, 229, 255, 0.22), rgba(255, 255, 255, 0.08));
    border-color: rgba(147, 229, 255, 0.36);
    backdrop-filter: blur(14px);
}

.process-code-card h3,
.process-code-card p {
    color: #ffffff;
}

.process-code-card p {
    max-width: 920px;
    margin-bottom: 0;
    opacity: 0.9;
}

.process-code-card::after {
    display: none;
}

.process-code-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.16);
    color: #93e5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

@media (max-width: 1024px) {
    .our-process-section {
        padding: 80px 40px;
    }

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

    .process-grid::before,
    .process-grid::after,
    .process-card::after {
        display: none;
    }

    .process-left,
    .process-right,
    .process-code-card {
        grid-column: 1;
    }
}

@media (max-width: 767px) {
    .our-process-section {
        padding: 60px 20px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .process-card {
        padding: 24px 20px;
    }

    .process-card-top {
        align-items: flex-start;
    }
}

/* DAL Coverage */
.dal-coverage-section {
    padding: 100px 120px;
    background: #ffffff;
    color: var(--hsb-dark-text, #0f172a);
}

.dal-coverage-container {
    max-width: 1400px;
    margin: 0 auto;
}

.dal-header {
    max-width: 760px;
    margin-bottom: 44px;
}

.dal-header span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--hsb-teal, #00556b);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.dal-header h2 {
    margin: 0 0 18px;
    color: var(--hsb-teal, #00556b);
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1px;
}

.dal-header p {
    max-width: 620px;
    color: var(--hsb-body-text, #4a5568);
    font-size: 1.05rem;
    line-height: 1.8;
}

.dal-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.dal-card {
    min-height: 220px;
    padding: 30px 22px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid transparent;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0);
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease;
}

.dal-card:hover {
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-8px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.dal-level {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 18px;
}

.dal-card h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 800;
}

.dal-card p {
    margin: 0 auto 16px;
    color: #4a5568;
    font-size: 0.86rem;
    line-height: 1.55;
}

.dal-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
}

.dal-a {
    background: #fce8e8;
    border-color: #f4b9b9;
}

.dal-a .dal-level {
    color: #b83232;
}

.dal-a .dal-badge {
    background: #f5c1c1;
    color: #a32d2d;
}

.dal-b {
    background: #f8ecd7;
    border-color: #f1ca86;
}

.dal-b .dal-level {
    color: #94620c;
}

.dal-b .dal-badge {
    background: #f2ca78;
    color: #7a4f08;
}

.dal-c {
    background: #e3f0fb;
    border-color: #b8d7f2;
}

.dal-c .dal-level {
    color: #2470ad;
}

.dal-c .dal-badge {
    background: #acd0ed;
    color: #1e639c;
}

.dal-d {
    background: #e8f3dd;
    border-color: #c8dfa3;
}

.dal-d .dal-level {
    color: #4d8a1d;
}

.dal-d .dal-badge {
    background: #c8df9d;
    color: #3f7416;
}

.dal-e {
    background: #f0eee8;
    border-color: #d5d1c7;
}

.dal-e .dal-level {
    color: #66615a;
}

.dal-e .dal-badge {
    background: #d8d4ca;
    color: #5e5a54;
}

@media (max-width: 1100px) {
    .dal-coverage-section {
        padding: 80px 40px;
    }

    .dal-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .dal-coverage-section {
        padding: 60px 20px;
    }

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

/* Mobile Header Menu Fix */
.menu-icon {
    background: transparent;
    border: 0;
    padding: 8px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .menu-icon {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1200;
    }

    .menu-icon i {
        color: #ffffff !important;
        font-size: 24px;
    }
}

/* Home Stats Strip */
.home-stats-section {
    padding: 42px 120px 78px;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 79, 105, 0.14), transparent 34%),
        var(--hsb-light-bg);
    margin-top: -1px;
    position: relative;
    z-index: 5;
}

.home-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(0, 79, 105, 0.18);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 255, 0.96) 100%);
    box-shadow:
        0 28px 70px rgba(0, 79, 105, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    
}

.home-stat-card {
    min-height: 160px;
    padding: 32px 30px;
    background: transparent;
    border-right: 1px solid rgba(0, 79, 105, 0.12);
    position: relative;
    transition: background 0.25s ease, transform 0.25s ease;
    
}

.home-stat-card::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 20px;
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--hsb-teal), var(--hsb-teal-hover));
    opacity: 0.75;
}

.home-stat-card:last-child {
    border-right: 0;
}

.home-stat-card:hover {
    background: rgba(0, 79, 105, 0.055);
    transform: translateY(-2px);
}

.home-stat-card h3 {
    margin: 14px 0 10px;
    color: var(--hsb-teal);
    font-size: clamp(32px, 3.7vw, 48px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    white-space: nowrap;
}

.home-stat-card p {
    margin: 0;
    color: var(--hsb-body-text);
    font-size: 13px;
    line-height: 1.55;
    max-width: 210px;
}

/* Home Services Section */
.home-services-section {
    padding: 100px 120px;
    background:
        radial-gradient(circle at 8% 14%, rgba(0, 79, 105, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.home-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.home-services-heading {
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
}

.home-services-heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--hsb-teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.home-services-heading span::before,
.home-services-heading span::after {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--hsb-teal);
    opacity: 0.35;
}

.home-services-heading h2 {
    margin: 0 0 18px;
    color: var(--hsb-dark-text);
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.6px;
}

.home-services-heading p {
    margin: 0;
    color: var(--hsb-body-text);
    font-size: 17px;
    line-height: 1.8;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.home-service-card {
    position: relative;
    min-height: 260px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
    border: 1px solid rgba(0, 79, 105, 0.13);
    border-radius: 22px;
    padding: 36px 30px 32px;
    box-shadow: 0 18px 48px rgba(0, 79, 105, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hsb-teal), var(--hsb-teal-hover));
    transform: scaleX(0.22);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.home-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 79, 105, 0.32);
    box-shadow: 0 28px 68px rgba(0, 79, 105, 0.14);
}

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

.home-service-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    font-size: 19px;
    font-weight: 900;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.home-service-icon.icon-blue {
    background: #e6f1fb;
    color: #185fa5;
}

.home-service-icon.icon-green {
    background: #e1f5ee;
    color: #0f6e56;
}

.home-service-icon.icon-purple {
    background: #eeedfe;
    color: #534ab7;
}

.home-service-icon.icon-amber {
    background: #faeeda;
    color: #854f0b;
}

.home-service-card h3 {
    margin: 0 0 14px;
    color: var(--hsb-teal);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.home-service-card p {
    margin: 0;
    color: var(--hsb-body-text);
    font-size: 14.5px;
    line-height: 1.8;
}

.home-service-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-service-card li {
    position: relative;
    padding: 9px 0 9px 18px;
    border-top: 1px solid rgba(0, 79, 105, 0.14);
    color: var(--hsb-body-text);
    font-size: 13px;
    line-height: 1.45;
}

.home-service-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--hsb-teal);
    font-size: 12px;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .home-stats-section {
        padding: 34px 40px 60px;
    }

    .home-stats-container {
        margin-top: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-stat-card:nth-child(2) {
        border-right: 0;
    }

    .home-stat-card:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(0, 79, 105, 0.12);
    }

    .home-services-section {
        padding: 75px 40px;
    }

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

@media (max-width: 640px) {
    .home-stats-section {
        padding: 28px 20px 48px;
    }

    .home-stats-container {
        margin-top: 0;
        grid-template-columns: 1fr;
    }

    .home-stat-card {
        min-height: auto;
        padding: 28px 24px;
        border-right: 0;
        border-bottom: 1px solid rgba(0, 79, 105, 0.12);
    }

    .home-stat-card:last-child {
        border-bottom: 0;
    }

    .home-services-section {
        padding: 60px 20px;
    }

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

    .home-service-card {
        padding: 28px 22px;
    }
}

/* Single Services Page */
.services-single-page {
    padding: 90px 120px;
    background:
        radial-gradient(circle at 12% 8%, rgba(26, 163, 181, 0.08), transparent 30%),
        linear-gradient(180deg, #f7fbfc 0%, #ffffff 100%);
}

.services-single-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    gap: 28px;
}

.services-page-heading {
    max-width: 780px;
    margin: 0 auto 32px;
    text-align: center;
}

.services-page-heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--hsb-teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.services-page-heading span::before,
.services-page-heading span::after {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--hsb-accent);
}

.services-page-heading h1 {
    margin: 0 0 16px;
    color: var(--hsb-dark-text);
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.04;
}

.services-page-heading p {
    margin: 0;
    color: var(--hsb-body-text);
    font-size: 17px;
    line-height: 1.7;
}

.single-service-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
    gap: 36px;
    align-items: start;
    padding: 34px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 79, 105, 0.12);
    border-radius: 26px;
    box-shadow: 0 22px 55px rgba(0, 55, 72, 0.1);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 110px;
}

.single-service-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, var(--hsb-teal), var(--hsb-accent));
}

.single-service-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.single-service-copy span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(0, 79, 105, 0.08);
    color: var(--hsb-teal);
    font-weight: 800;
}

.single-service-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(0, 79, 105, 0.16);
}

.single-service-copy h2 {
    margin: 0 0 14px;
    color: var(--hsb-dark-text);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.12;
}

.single-service-copy p {
    margin: 0;
    color: var(--hsb-body-text);
    font-size: 16px;
    line-height: 1.75;
}

.single-service-card ul {
    list-style: none;
    margin: 0;
    padding: 18px 20px;
    background: rgba(247, 251, 252, 0.95);
    border: 1px solid rgba(0, 79, 105, 0.1);
    border-radius: 20px;
}

.single-service-card li {
    position: relative;
    padding: 11px 0 11px 24px;
    color: var(--hsb-body-text);
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 79, 105, 0.08);
}

.single-service-card li:last-child {
    border-bottom: 0;
}

.single-service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--hsb-accent);
    box-shadow: 0 0 0 4px rgba(26, 163, 181, 0.12);
}

.service-artifacts-section,
.service-toolchain-section {
    margin-top: 54px;
}

.services-page-heading h2 {
    margin: 0 0 16px;
    color: var(--hsb-dark-text);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
}

.service-artifacts-table-wrap {
    overflow-x: auto;
    border-radius: 24px;
    border: 1px solid rgba(0, 79, 105, 0.12);
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(0, 55, 72, 0.08);
}

.service-artifacts-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
}

.service-artifacts-table th {
    padding: 18px 22px;
    background: var(--hsb-teal);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: left;
    text-transform: uppercase;
}

.service-artifacts-table td {
    padding: 16px 22px;
    color: var(--hsb-body-text);
    font-size: 14px;
    border-top: 1px solid rgba(0, 79, 105, 0.09);
}

.service-artifacts-table td:first-child {
    color: var(--hsb-dark-text);
    font-weight: 700;
}

.service-artifacts-table tr:hover td {
    background: rgba(26, 163, 181, 0.05);
}

.service-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.service-tag.tag-blue {
    background: rgba(0, 79, 105, 0.1);
    color: var(--hsb-teal);
}

.service-tag.tag-purple {
    background: rgba(96, 77, 178, 0.12);
    color: #604db2;
}

.service-tag.tag-green {
    background: rgba(45, 142, 95, 0.12);
    color: #2d8e5f;
}

.service-tag.tag-amber {
    background: rgba(206, 128, 33, 0.14);
    color: #a15c0f;
}

.service-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-tool-card {
    padding: 26px;
    background: #ffffff;
    border: 1px solid rgba(0, 79, 105, 0.12);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 55, 72, 0.08);
}

.service-tool-card h3 {
    margin: 0 0 16px;
    color: var(--hsb-dark-text);
    font-size: 18px;
    line-height: 1.25;
}

.service-tool-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.service-tool-list span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(26, 163, 181, 0.09);
    color: var(--hsb-teal);
    font-size: 12px;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .services-single-page {
        padding: 75px 40px;
    }

    .single-service-card {
        grid-template-columns: 1fr;
    }

    .service-tools-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .services-single-page {
        padding: 60px 20px;
    }

    .single-service-card {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .service-tools-grid {
        grid-template-columns: 1fr;
    }
}

/* Redesigned Services Page */
.services-single-page {
    padding: 110px 120px 105px;
    background:
        radial-gradient(circle at 10% 0%, rgba(26, 163, 181, 0.16), transparent 30%),
        radial-gradient(circle at 92% 16%, rgba(0, 79, 105, 0.12), transparent 32%),
        linear-gradient(180deg, #edf7f9 0%, #ffffff 36%, #f7fbfc 100%);
}

.services-single-container {
    max-width: 1240px;
    gap: 0;
}

.services-hero-panel {
    max-width: none;
    min-height: 360px;
    margin-bottom: 56px;
    padding: 54px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 42px;
    align-items: end;
    text-align: left;
    color: #ffffff;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(0, 79, 105, 0.92), rgba(0, 48, 64, 0.96)),
        url("./images/banner.png") center / cover no-repeat;
    box-shadow: 0 28px 70px rgba(0, 55, 72, 0.22);
    overflow: hidden;
    position: relative;
}

.services-hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 48, 64, 0.94), rgba(0, 79, 105, 0.7), rgba(0, 79, 105, 0.18)),
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.22), transparent 24%);
}

.services-hero-copy,
.services-hero-metrics {
    position: relative;
    z-index: 1;
}

.services-hero-copy span {
    color: rgba(255, 255, 255, 0.86);
}

.services-hero-copy span::before,
.services-hero-copy span::after {
    background: var(--hsb-accent);
}

.services-hero-copy h1 {
    max-width: 720px;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(46px, 7vw, 86px);
}

.services-hero-copy p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
}

.services-hero-metrics {
    display: grid;
    gap: 14px;
}

.services-hero-metrics div {
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

.services-hero-metrics strong,
.services-hero-metrics small {
    display: block;
}

.services-hero-metrics strong {
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
}

.services-hero-metrics small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-core-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.single-service-card {
    min-height: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 252, 0.98));
    border: 1px solid rgba(0, 79, 105, 0.1);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 55, 72, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.single-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(26, 163, 181, 0.34);
    box-shadow: 0 30px 70px rgba(0, 55, 72, 0.14);
}

.single-service-card::before {
    inset: 0 0 auto;
    width: 100%;
    height: 5px;
}

.single-service-meta {
    justify-content: space-between;
}

.single-service-copy h2 {
    max-width: 520px;
}

.single-service-card ul {
    display: grid;
    gap: 8px;
    padding: 22px;
    background: #ffffff;
    border-radius: 22px;
}

.single-service-card li {
    padding: 10px 0 10px 28px;
    border-bottom: 0;
    background: linear-gradient(90deg, rgba(26, 163, 181, 0.06), transparent);
    border-radius: 12px;
}

.single-service-card li::before {
    top: 18px;
}

.service-artifacts-section,
.service-toolchain-section {
    margin-top: 82px;
    padding: 52px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(0, 79, 105, 0.1);
    box-shadow: 0 28px 70px rgba(0, 55, 72, 0.08);
}

.service-artifacts-section .services-page-heading,
.service-toolchain-section .services-page-heading {
    margin-bottom: 34px;
}

.service-artifacts-table-wrap {
    border-radius: 26px;
    box-shadow: none;
}

.service-artifacts-table th {
    background: linear-gradient(135deg, var(--hsb-teal), #003040);
}

.service-artifacts-table tr:nth-child(even) td {
    background: rgba(247, 251, 252, 0.8);
}

.service-tools-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.service-tool-card {
    min-height: 172px;
    padding: 28px;
    background:
        radial-gradient(circle at 95% 0%, rgba(26, 163, 181, 0.14), transparent 34%),
        #ffffff;
    border-radius: 24px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-tool-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 58px rgba(0, 55, 72, 0.12);
}

@media (max-width: 1024px) {
    .services-single-page {
        padding: 86px 40px;
    }

    .services-hero-panel {
        grid-template-columns: 1fr;
        padding: 42px;
    }

    .services-hero-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .services-core-grid,
    .service-tools-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-artifacts-section,
    .service-toolchain-section {
        padding: 38px;
    }
}

@media (max-width: 640px) {
    .services-single-page {
        padding: 68px 20px;
    }

    .services-hero-panel {
        min-height: auto;
        padding: 34px 24px;
        border-radius: 26px;
    }

    .services-hero-metrics,
    .services-core-grid,
    .service-tools-grid {
        grid-template-columns: 1fr;
    }

    .service-artifacts-section,
    .service-toolchain-section {
        margin-top: 56px;
        padding: 28px 18px;
        border-radius: 26px;
    }
}
