/* Global Styles */
body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    background-color: var(--color-white);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    /* offset for fixed header */
    text-align: left;

}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* background-color: white; removed for overlay */
    background-color: transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ionicon {
    color: #eee !important;
}

.top-bar {
    height: var(--top-bar-height);
    background-color: #002e6d;
    border-bottom: 1px solid #eee;
    font-size: 0.8rem;
    color: #eee;
}

/* Hide Google Translate Banner and Widget elements */
.goog-te-banner-frame.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-menu-value {
    display: none !important;
}

body {
    top: 0 !important;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    /* Push content to right as observed */
    align-items: center;
    height: 100%;
    gap: 20px;
}

.secondary-nav a {
    margin-left: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.secondary-nav a:hover {
    color: var(--color-primary);
    transition: 0.9s;

}

.top-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
}

.lang-selector {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #eee;
    padding: 4px 8px;
    font-size: 0.7rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #002e6d;
    font-weight: bold;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.main-nav-bar {
    height: var(--header-height);
    display: flex;
    align-items: center;
    background-color: white;
    /* Added background */
    border-bottom-left-radius: 25px;
    /* Added radius */
    border-bottom-right-radius: 25px;
    /* Added radius */
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 2rem;
    color: #002e6d;
    cursor: pointer;
}

/* Logo Styles */
.logo-link {
    display: block;
    line-height: 0;
}

.logo-img {
    height: auto;
    max-height: 50px;
    /* Constrain height to fit in header */
    width: auto;
    max-width: 250px;
}

.primary-nav ul {
    display: flex;
    gap: 30px;
}

.primary-nav a {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #002e6d;
    /* Changed from variable to Secondary Brand Color */
    position: relative;
}

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

.primary-nav a:hover {
    color: #a0d035;
    /* Hover color primary green */
}

.primary-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    /* Changed from 600px */
    /* margin-top: calc(var(--header-height) + var(--top-bar-height)); removed for overlay */

    /* Push down */
    overflow: hidden;
}

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

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    border-bottom-right-radius: 25px !important;
}

.hero-text-box {
    background: rgba(4, 75, 40, 0.85);
    /* Semi-transparent green background */
    padding: 40px;
    color: white;
    max-width: 650px;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    /* Create that skewed or stylized box look if needed, keeping simple for now */
}

.hero-text-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-text-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    padding: 12px 30px;
    background-color: #002e6d;
    /* Updated to secondary color */
    color: white;
    /* Updated for contrast */
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.3s;
}

.btn-hero:hover {
    background-color: #a0d035;
    /* Updated to primary color */
    color: white;
}

/* Projects Section */
.projects-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h3 {
    font-size: 2.5rem;
    color: #002e6d;
    /* Updated color */
    line-height: 1.1;
    font-weight: bold;
}

.view-all {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}

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

.project-card {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    /* Updated transition */
    overflow: hidden;
    border-top-left-radius: 25px;
    /* Added radius */
    border-bottom-right-radius: 25px;
    /* Added radius */
}

.project-card:hover {
    transform: translateY(-5px);
    background-color: #002e6d;
    /* Added hover background */
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 25px;
    /* Added radius */
    border-bottom-right-radius: 25px;
    /* Added radius */
    transition: transform 0.3s ease;
    /* Added transition for zoom */
}

.project-card:hover .card-image {
    transform: scale(1.1);
    /* Added zoom effect */
}

.card-content {
    padding: 20px;
}

.card-content .category {
    font-size: 0.75rem;
    color: #999;
    font-weight: bold;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.project-card:hover .card-content .category {
    color: rgba(255, 255, 255, 0.7);
    /* Hover color contrast */
}

.card-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.project-card:hover .card-content h4 {
    color: white;
    /* Hover color contrast */
}

.card-content .location {
    font-size: 0.9rem;
    color: #666;
}

.project-card:hover .card-content .location {
    color: rgba(255, 255, 255, 0.8);
    /* Hover color contrast */
}

/* News Section */
.feed-section {
    padding: 80px 0;
}

.feed-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.feed-title-block {
    flex: 0 0 250px;
}

.feed-title-block h3 {
    font-size: 2.5rem;
    color: #002e6d;
    /* Updated color */
    line-height: 1.1;
    font-weight: bold;
}

.feed-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feed-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feed-card .date {
    font-size: 0.8rem;
    color: #999;
    font-weight: bold;
}

.feed-image {
    height: 230px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.feed-card:hover .feed-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.feed-content .tag {
    font-size: 0.7rem;
    color: var(--color-primary);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.feed-content h4 {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--color-dark);
    transition: color 0.3s ease;
    margin-bottom: 10px;
}

.feed-date {
    color: #a0d035;
    font-weight: bold;
    margin-bottom: 10px;
}

.feed-card:hover .feed-content h4 {
    color: #002e6d;
}

/* View All News Card Styling */
.view-all-feed-card {
    margin-bottom: 30px;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.view-all-feed-card h2 {
    font-size: 2.1rem;
    color: #002e6d;
    font-weight: bold;
    text-transform: lowercase;
}

.view-all-feed-card ion-icon {
    font-size: 2rem;
    color: #002e6d;
}

.view-all-feed-card:hover {
    transform: translateY(-5px);
    background-color: #92c12e;
}

/* Talent & LinkedIn Section Styles */
.talent-linkedin-section {
    padding: 0;
    background-color: #fff;
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 400px);
    position: relative;
}

.talent-item {
    width: 100%;
    height: 100%;
    background-color: #002e6d;
}

.talent-item.image-item {
    background-size: cover;
    background-position: center;
}

.talent-item.text-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.text-content {
    max-width: 420px;
}

.text-content h2 {
    font-size: 3rem;
    color: #28a745;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: bold;
}

.text-content h2 .highlight {
    display: block;
}

.text-content p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
}

.plus-link {
    font-size: 2rem;
    color: #38b6ff;
    text-decoration: none;
    font-weight: bold;
}

/* Center Overlay Box */
.center-overlay-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-color: #38b6ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.center-overlay-box .plus-sign {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1;
}

.center-overlay-box .brand-name {
    font-size: 2rem;
    font-weight: bold;
}

/* Footer */
.main-footer {
    background-color: #eee;
    padding: 40px 0 20px;
    color: #666;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links span {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-right: 10px;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.legal-links {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
}

.copyright {
    text-align: center;
    font-size: 0.75rem;
    color: #888;
}

/* Mobile Navigation Drawer */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: white;
    z-index: 2001;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-nav-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-btn {
    font-size: 2rem;
    color: #002e6d;
    cursor: pointer;
}

.mobile-primary-nav {
    margin-bottom: 40px;
}

.mobile-primary-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-primary-nav li {
    margin-bottom: 20px;
}

.mobile-primary-nav a {
    font-size: 1.2rem;
    font-weight: bold;
    color: #002e6d;
    text-decoration: none;
    text-transform: uppercase;
}

.mobile-secondary-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-secondary-nav li {
    margin-bottom: 15px;
}

.mobile-secondary-nav a {
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
}

/* ==========================================================================
   Internal Pages Styles
   ========================================================================== */

.page-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 100px;
    /* offset for fixed header */
    text-align: left;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #a0d035;
}

/* Utilities */
.py-80 {
    padding: 80px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2.5rem;
    color: #002e6d;
    margin-bottom: 30px;
}

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

.mb-50 {
    margin-bottom: 50px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}


.about-grid.reverse .about-image {
    order: 1;
}

.about-grid.reverse .about-text {
    order: 2;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.rounded-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

/* MVV Section (Mission, Vision, Values) */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.mvv-card:hover {
    transform: translateY(-10px);
}

.mvv-card ion-icon {
    font-size: 3rem;
    color: #a0d035;
    margin-bottom: 20px;
}

.mvv-card h3 {
    font-size: 1.5rem;
    color: #002e6d;
    margin-bottom: 15px;
}

.mvv-card p {
    color: #666;
    line-height: 1.6;
}

/* Sectors Section Header */
.sectors-headline {
    font-size: 3rem;
    font-weight: 700;
    color: #002e6d;
    line-height: 1.2;
    margin-bottom: 60px;
    max-width: 900px;
}


/* News Rows Section (Updated from Grid) */
.news-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-row {
    display: flex;
    gap: 60px;
    padding: 60px 0;
}

.news-row:first-child {
    padding-top: 0;
}

.news-row:last-child {
    padding-bottom: 0;
}

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

.mini-news-item span {
    font-size: 0.85rem;
    color: #777;
}
.mini-news-item h4 {
    font-size: 1.1rem;
    margin-top: 5px;
}

.mini-news-item a:hover {
    color: #002e6d;
    transition: 0.9s;
}

/* Industry Rows Section (Updated from Grid) */
.industry-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.industry-row {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
}

.industry-row:first-child {
    padding-top: 0;
}

.industry-row:last-child {
    padding-bottom: 0;
}

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

.industry-image {
    flex: 1;
    max-width: 50%;
}

.industry-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 40px 0 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.industry-content {
    flex: 1;
}

.industry-content h3 {
    font-size: 2.2rem;
    color: #002e6d;
    margin-bottom: 25px;
    font-weight: 700;
}

.industry-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.industry-content p:last-child {
    margin-bottom: 0;
}

.industry-separator {
    height: 1px;
    background-color: rgba(0, 46, 109, 0.1);
    width: 100%;
}

/* Sectors Grid (Used in Services page) */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sector-card {
    background: white;
    border-radius: 40px;
    border: 1px solid rgba(0, 46, 109, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    padding: 60px 40px;
    text-align: center;
    align-items: center;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 46, 109, 0.1);
}

.sector-icon-box {
    width: 100px;
    height: 100px;
    background-color: rgba(160, 208, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: #a0d035;
    transition: all 0.3s;
}

.sector-card:hover .sector-icon-box {
    background-color: #a0d035;
    color: white;
    transform: rotate(10deg);
}

.sector-icon-box ion-icon {
    font-size: 3.5rem;
}

.sector-content {
    padding: 0;
    flex: 1;
}

.sector-content h3 {
    font-size: 1.8rem;
    color: #002e6d;
    margin-bottom: 20px;
    font-weight: 700;
}

.sector-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
}

.sector-icon-box ion-icon {
    font-size: 3.5rem;
    color: white;
}

.sector-card-content {
    padding: 40px 30px;
}

.sector-card h3 {
    font-size: 1.8rem;
    color: #002e6d;
    font-weight: 700;
    margin-bottom: 20px;
}

.sector-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.sector-card:hover {
    transform: translateY(-10px);
}


/* Service Card */
.service-card {
    background: #002e6d;
    padding: 0;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 0;
    transition: transform 0.3s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-card-content h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
}

.service-card-content p {
    color: #ccc;
    line-height: 1.6;
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    border-bottom-right-radius: 25px;
    border-top-left-radius: 25px;
}

/* News Card Page */


.news-image {
    flex: 1;
    max-width: 100%;
    margin-bottom: 15px;
}

.news-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 40px 0 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-card img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);

}

.news-image {
    width: 100%;
    height: 230px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.news-card .news-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.news-content h4 {
    font-size: 1.7rem;
    line-height: 1.4;
    color: var(--color-dark);
    transition: color 0.3s ease;
    margin-bottom: 5px;
}

.news-date {
    color: #a0d035;
    font-weight: bold;
    margin-bottom: 10px;
}

.news-content:hover h4 {
    color: #002e6d;
}

/* Specialized Presence Card */
.presence-card {
    background: white;
    padding: 0;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.3s;
    overflow: hidden;
}

.presence-card:hover {
    transform: translateY(-5px);
}

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

.presence-card-content h3 {
    font-size: 1.4rem;
    color: #002e6d;
    margin-bottom: 10px;
}

.presence-card-content p {
    color: #666;
    line-height: 1.6;
}

.presence-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    border-bottom-right-radius: 25px;
    border-top-left-radius: 25px;
}

.map-container {
    margin-top: 60px;
    text-align: center;
}

.map-container img {
    max-width: 100%;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

/* Map Section */
.map-wrapper {
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 46, 109, 0.1);
}

.map-wrapper iframe {
    display: block;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-list {
    list-style: none;
    margin-top: 30px;
}

.info-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-list ion-icon {
    font-size: 2rem;
    color: #a0d035;
    flex-shrink: 0;
}

.info-list strong {
    display: block;
    font-size: 1.1rem;
    color: #002e6d;
    margin-bottom: 5px;
}

.info-list p {
    color: #666;
}

/* Premium Form */
.premium-form {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #002e6d;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a0d035;
}

.btn-submit {
    background-color: #002e6d;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background-color: #a0d035;
    color: white;
}


/* Responsive adjustments */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
}

@media (max-width: 992px) {
    .primary-nav {
        display: none;
    }

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

    .hero-text-box h2 {
        font-size: 3rem;
    }

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

    .talent-grid {
        grid-template-rows: repeat(2, 350px);
    }

    .text-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .main-nav-bar {
        height: 70px;
    }

    .hero-section {
        margin-top: 70px;
    }

    .hero-text-box {
        padding: 30px;
        max-width: 90%;
    }

    .hero-text-box h2 {
        font-size: 2rem;
    }

    .projects-section .container {
        display: flex;
        flex-direction: column;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        order: 1;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        order: 2;
        margin-bottom: 30px;
    }

    .view-all {
        order: 3;
        justify-content: center;
        margin-bottom: 20px;
    }

    .feed-layout {
        flex-direction: column;
    }

    .feed-title-block {
        flex: none;
        margin-bottom: 20px;
    }

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

    .talent-grid {
        display: flex;
        flex-direction: column;
    }

    .talent-item {
        height: 350px;
    }

    .text-item {
        order: 2;
        /* Move text after image usually in mobile stacked */
    }

    .talent-item:nth-child(1) {
        order: 1;
    }

    .talent-item:nth-child(2) {
        order: 2;
    }

    /* Responsive Adjustments for Internal Pages */
    @media (max-width: 1024px) {

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

        .sectors-headline {
            font-size: 2.5rem;
        }

        .industry-row {
            gap: 40px;
        }

        .news-row {
            gap: 40px;
        }

        .industry-image img {
            height: 350px;
        }
    }

    @media (max-width: 768px) {

        .about-grid,
        .industry-row {
            grid-template-columns: 1fr;
            flex-direction: column !important;
            gap: 30px;
        }

        .news-row {
            grid-template-columns: 1fr;
            flex-direction: column !important;
            gap: 30px;
        }

        .industry-image,
        .industry-content {
            max-width: 100%;
        }

        .industry-image img {
            border-radius: 30px 0 30px 0;
            height: auto;
            aspect-ratio: 16/9;
        }

        .about-grid.reverse .about-image {
            order: 2;
        }

        .about-grid.reverse .about-text {
            order: 1;
        }

        .sectors-grid,
        .mvv-grid {
            grid-template-columns: 1fr;
        }

        .sectors-headline {
            font-size: 2rem;
        }

        .sector-image {
            height: 250px;
        }

        .sector-icon-box {
            width: 80px;
            height: 80px;
            top: 210px;
        }

        .sector-icon-box ion-icon {
            font-size: 2.5rem;
        }

        .page-hero {
            height: 300px;
            padding-top: 80px;
        }

        .page-hero h1 {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 480px) {
        .sectors-headline {
            font-size: 1.8rem;
        }

        .sector-image {
            height: 200px;
        }

        .sector-icon-box {
            top: 160px;
        }
    }

    .talent-item:nth-child(4) {
        order: 3;
    }

    .talent-item:nth-child(3) {
        order: 4;
    }

    .center-overlay-box {
        position: static;
        transform: none;
        width: 100%;
        height: 150px;
        order: 5;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-text-box h2 {
        font-size: 1.5rem;
    }

    .view-all-feed-card h2 {
        font-size: 1.5rem;
    }

    .text-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-info p {
        max-width: 100%;
    }

    .news-detail-section .about-grid {
        grid-template-columns: 1fr !important;
        gap: 50px;
    }

    .news-sidebar {
        order: 2;
    }

    .news-article {
        order: 1;
    }

}

@media (max-width: 576px) {
    .contact-section {
        padding: 48px 0;
    }

    .info-list li {
        gap: 12px;
    }

    .sidebar-block {
        padding: 24px 20px;
    }

    .mini-news-item h4 {
        font-size: 0.95rem;
    }

    .article-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .news-sidebar {
        position: sticky;
        top: 120px;
    }
}

