* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --obx-mid-blue: #0084A9;
    --obx-light-blue: #4FAEC9;
    --obx-red: #E71939;
    --text-dark: #1a1a1a;
    --text-light: #A3A9AC;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Open Sans Light', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}



.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 70px;
}

.nav-menu {
    display: flex;
    gap: 48px;
    list-style: none;
    align-items: center;
}

.wip-indicator {
    background-color: var(--obx-red);
}

/* Navigation Styles matching OBXtek.com */
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            padding: 1rem;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            /*padding: 1rem 2rem;*/
        }

        

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0;
            align-items: center;
        }

        .nav-menu > li {
            position: relative;
        }

        .nav-menu > li > a {
            display: block;
            padding: 0.75rem 1.25rem;
            color: #333;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        

        /* Dropdown Menu Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle::after {
            content: '';
            display: inline-block;
            width: 0;
            height: 0;
            margin-left: 0.5rem;
            vertical-align: middle;
            border-top: 4px solid;
            border-right: 4px solid transparent;
            border-left: 4px solid transparent;
            transition: transform 0.3s ease;
        }

        .dropdown:hover .dropdown-toggle::after {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            border-top: 3px solid var(--obx-red);
            z-index: 1000;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            list-style: none;
        }

        .dropdown-menu li a {
            display: block;
            padding: 0.75rem 1.5rem;
            color: #333;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            border-bottom: 1px solid #f0f0f0;
        }

        .dropdown-menu li:last-child a {
            border-bottom: none;
        }

        .dropdown-menu li a:hover {
            background-color: #f8f9fa;
            color: var(--obx-red);
            padding-left: 2rem;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            background-color: var(--white);
            border: none;
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: var(--text-dark);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: #fff;
                width: 100%;
                text-align: left;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.05);
                padding: 1rem 0;
                gap: 0;
            }

            .nav-menu.active {
                margin-top: 2rem;
                left: 0;
            }

            .nav-menu > li {
                width: 100%;
            }

            .nav-menu > li > a {
                padding: 1rem 2rem;
                border-bottom: 1px solid #f0f0f0;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-top: none;
                background-color: #f8f9fa;
                display: none;
            }

            .dropdown.active .dropdown-menu {
                display: block;
            }

            .dropdown-toggle::after {
                float: right;
                margin-top: 0.3rem;
            }
        }

        /* Body padding to account for fixed navbar */
        body {
            padding-top: 70px;
        }

/* Hero Section - Accenture Style */
.hero {
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    background: var(--white);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #006c8dc0 0%, #0058af7a 100%),url('../assets/Homepage3.jpeg');
    background-size: cover;
    background-position: center, 90% top;
    background-repeat: no-repeat;
}

.hero.hero-employee-resources {
    background: linear-gradient(135deg, #006c8dc0 0%, #0058af7a 100%), url('../assets/employeeresourceshomepage.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero.hero-joint-ventures {
    background: linear-gradient(135deg, #006c8dc0 0%, #0058af7a 100%), url('../assets/jointventureshomepage.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero.hero-contact {
    background: linear-gradient(135deg, #006c8dc0 0%, #0058af7a 100%), url('../assets/contactus.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    transform: translateX(0%);
}

.hero-content {
    max-width: 800px;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--obx-mid-blue);
    margin-bottom: 24px;
    display: block;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-title {
    font-size: clamp(20px, 4vw, 45px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 32px;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.hero-title .highlight {
    color: var(--obx-mid-blue);
}

.hero-description {
    font-size: clamp(14px, 1.3vw, 18px);
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 48px;
    max-width: 700px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--obx-red);
    color: var(--white);
    padding: 18px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    transform: translateY(50%);
    z-index: 5;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(231, 25, 57, 0.4);
}

.hero-cta:hover {
    background: #c11530;
    gap: 16px;
        transform: translateY(48%) translateY(-2px);
    box-shadow: 0 8px 24px rgba(231, 25, 57, 0.5);
}

/*.hero-cta::after {
            content: '→';
            font-size: 20px;
        }*/

/* Featured Stats */
.featured-stats {
    background: var(--bg-light);
    padding: 110px 60px 80px;
}

.stats-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.stat-box {
    text-align: left;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--obx-mid-blue);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.4;
}

/* Content Cards Section */
.cards-section {
    padding: 120px 60px;
    background: var(--white);
}

.section-header-main {
    max-width: 1440px;
    margin: 0 auto 80px;
}

.section-title-main {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 800px;
}

.coe-block {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 50px;
    color: var(--white);
    border-radius: 8px;
}

.coe-block:last-child {
    margin-bottom: 0;
}

.coe-blue {
    background: var(--obx-mid-blue);
}

.coe-gray {
    background: #2c2c2c;
}

.coe-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.coe-images img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.coe-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.coe-title a {
    color: inherit;
    text-decoration: none;
}

.coe-title a:hover {
    text-decoration: underline;
}

.coe-overview {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    opacity: 0.95;
    margin-bottom: 26px;
    max-width: 820px;
}

.coe-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.coe-tag {
    background: var(--obx-red);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.coe-tag:hover {
    background: #c11530;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .coe-block {
        padding: 30px 24px;
    }

    .coe-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .coe-title {
        font-size: 24px;
    }
}

.cards-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.content-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.content-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.content-card .content_card_anchor {
    text-decoration: none;
    color: var(--text-dark);
}

.card-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--obx-mid-blue), var(--obx-light-blue));
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.content-card:nth-of-type(1) .card-image {
    background-image: url('../assets/Adobe1.jpg');
    background-size: contain;
}

.content-card:nth-of-type(2) .card-image {
    background-image: url('../assets/Adobe2.jpg');

}

.content-card:nth-of-type(3) .card-image {
    background-image: url('../assets/Adobe3.jpg')
}

.content-card:nth-of-type(4) .card-image {
    background-image: url('../assets/Adobe4.jpg');
}

.content-card:nth-of-type(5) .card-image {
    background-image: url('../assets/Adobe5.jpg');
}

.content-card:nth-of-type(6) .card-image {
    background-image: url('../assets/Adobe6.jpg');
   
}

.content-card:nth-of-type(7) .card-image {
    background-image: url('../assets/Adobe7.jpg');
    
}

.content-card:nth-of-type(8) .card-image {
    background-image: url('../assets/Adobe8.jpg')
}


.card-image img {
    /*max-height: 323px;*/
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--obx-red);
}

.card-content {
    padding: 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--obx-mid-blue);
    margin-bottom: 16px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.card-description {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.card-link {
    color: var(--obx-mid-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 12px;
}

.card-link::after {
    content: '→';
}

/* Large Feature Section */
.feature-section {
    background: var(--bg-light);
    padding: 0;
}

.feature-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.feature-content {
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--obx-red);
    margin-bottom: 24px;
}

.feature-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.feature-description {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 36px;
}

.feature-list {
    list-style: none;
    margin-bottom: 36px;
}

.feature-list li {
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li::before {
    content: '✓';
    color: var(--obx-mid-blue);
    font-weight: 700;
    font-size: 18px;
}

.feature-image {
    background: linear-gradient(135deg, var(--obx-mid-blue), var(--obx-light-blue));
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    padding: 50px 30px;
}

.cmmi_certification {
    padding: 1rem;
    margin-bottom: 1rem;
}

.cmmi_certification img {
    max-width: 380px;
    width: 100%;
    height: auto;
    border-radius: 1.0rem;
}

.iso_certifications_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    list-style: none;
    max-width: 700px;
}

.iso_certifications_list li {
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iso_certifications_list li img {
    height: 100%;
    width: auto;
    max-width: 210px;
    object-fit: contain;
    border-radius: 0.5rem;
}

/*.feature-image::after {
            content: '';
            position: absolute;
            top: 40px;
            left: 40px;
            right: 40px;
            bottom: 40px;
            border: 2px solid rgba(255,255,255,0.3);
        }*/

/* Awards Section */
.awards-section {
    padding: 120px 60px;
    background: var(--white);
}

.awards-container {
    max-width: 1440px;
    margin: 0 auto;
}

.awards-header {
    text-align: center;
    margin-bottom: 80px;
}

.awards-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: stretch;
}

.award-item {
    text-align: center;
    padding: 32px 24px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.award-item:hover {
    border-color: var(--obx-mid-blue);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.award-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--obx-mid-blue), var(--obx-light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.award-item:nth-of-type(1) .award-icon {
    background-image: url('../assets/washington.png');
    background-size: contain;
    background-position: 50% 50%;
}

.award-item:nth-of-type(2) .award-icon {
    background-image: url('../assets/vvv.png');
    background-size: cover;
    background-position: 50% 50%;
}

.award-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 1.0rem;
}

.awards_list {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

/* CTA Banner */
.cta-banner {
    background: var(--obx-mid-blue);
    padding: 50px 60px;
    text-align: center;
}

.cta-banner-container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-banner-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
}

.cta-banner-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--obx-mid-blue);
    padding: 18px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-white:hover {
    background: var(--bg-light);
    gap: 16px;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 18px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--obx-mid-blue);
    gap: 16px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 60px 40px;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 14px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--obx-light-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-container {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        background-position: center, center top;
    }

    .nav-container {
        padding: 0 24px;
    }

    .feature-image {
        padding: 40px 20px;
    }

    .cmmi_certification img {
        max-width: 240px;
    }

    .iso_certifications_list li {
        height: 80px;
    }

    .iso_certifications_list li img {
        max-width: 130px;
    }

    .hero-container {
        padding: 0 24px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }

    .cards-section {
        padding: 80px 24px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-cta {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll-triggered fade-up, same motion as .fade-in but triggered on scroll */
.scroll-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}