/* Global Styles */
:root {
    --primary-blue: #2F4195;
    --primary-green: #47A632;
    --text-dark: #1F211C;
    --text-light: #666666;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
    --border-color: #E0E0E0;
    --box-shadow-primary: 0 5px 15px rgba(0, 0, 0, 0.1);
}

html,
body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    border: 2px solid var(--primary-green);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-green);
}

.btn-secondary {
    background-color: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--primary-blue);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 20px;
}

.top-info i {
    margin-right: 5px;
}

.social-icons a {
    color: var(--white);
    margin-left: 15px;
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.main-header::after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right,
            #005e81 0%, #005e81 16.666%,
            #12b9b3 16.666%, #12b9b3 33.333%,
            #a0c460 33.333%, #a0c460 50%,
            #f57e20 50%, #f57e20 66.666%,
            #006993 66.666%, #006993 83.333%,
            #c71d4b 83.333%, #c71d4b 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 40px;
    /* Adjust based on header height preference */
    width: auto;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 15px;
    text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-green);
}

/* Contact Us Button Style */
.main-nav>ul>li:last-child>a {
    background-color: var(--primary-green);
    color: var(--white) !important;
    /* Force white text even if active */
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow-primary);
}

.main-nav>ul>li:last-child>a:hover {
    background-color: #3d8f2b;
    /* Darker green on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(71, 166, 50, 0.3);
}

/* Dropdown Styles */
.main-nav li.dropdown {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.main-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    background-color: var(--white);
    min-width: 240px;
    box-shadow: var(--box-shadow-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    padding: 0;
    border-top: 3px solid var(--primary-green);
    border-radius: 0 0 5px 5px;
    z-index: 100;
}

/* Align last dropdown to the right to prevent horizontal overflow */
.main-nav>ul>li:last-child .dropdown-menu,
.main-nav>ul>li:nth-last-child(2) .dropdown-menu {
    left: auto;
    right: 0;
}

.main-nav li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .dropdown-menu li {
    margin-left: 0;
    padding: 0;
    display: block;
    width: 100%;
}

.main-nav .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    text-transform: none;
    border-bottom: 1px solid var(--light-grey);
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.main-nav .dropdown-menu li:last-child a {
    border-bottom: none;
    background-color: transparent !important;
    color: var(--text-dark) !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 12px 20px !important;
}

.main-nav .dropdown-menu a:hover {
    background-color: var(--light-grey);
    color: var(--primary-green);
    padding-left: 25px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-blue);
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 999;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav li {
        margin: 0;
        text-align: center;
        width: 100%;
    }

    .main-nav a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    .main-nav li:last-child {
        margin-top: 20px;
    }

    .main-nav li:last-child a {
        display: inline-block;
        width: auto;
    }

    /* Adjust dropdowns for mobile */
    .main-nav .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-top: none;
        display: none;
        background-color: #f9f9f9;
        padding-left: 0;
    }

    .main-nav li.dropdown:hover .dropdown-menu {
        display: block;
    }

    .main-nav .dropdown-menu a {
        padding-left: 30px;
        font-size: 13px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(47, 65, 149, 0.5) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    /* Overlay on top of video */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* Hero Typewriter Effect */
.hero-text-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    text-align: center;
}

.typewriter-effect {
    font-size: 4rem;
    /* Large text */
    color: var(--white);
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    font-family: 'Inter', sans-serif;
    min-height: 1.2em;
    /* Reserve space */
    display: inline-block;
}

/* Cursor Animation */
.typewriter-cursor {
    display: inline-block;
    width: 4px;
    /* Slightly thicker */
    height: 1em;
    vertical-align: middle;
    background-color: var(--primary-green);
    animation: blink 0.9s infinite;
    margin-left: 5px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .typewriter-effect {
        font-size: 2.2rem;
    }
}

/* Hero styles cleaned up */

/* Intro Section */
.intro-section {
    padding: 80px 0;
}

.intro-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.intro-text,
.intro-image {
    flex: 1;
}

.intro-text h2 {
    color: var(--primary-blue);
    font-size: 32px;
}

.intro-text .divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-green);
    margin-bottom: 20px;
}

.intro-text .lead {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.intro-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: justify;
}

.intro-image img {
    border-radius: 5px;
    box-shadow: var(--box-shadow-primary);
}

/* Interactive Map Styles */
.map-interactive-container {
    position: relative;
    width: 100%;
    box-shadow: var(--box-shadow-primary);
    border-radius: 5px;
    background-color: white;
    /* Ensure transparency doesn't look weird if image fails */
}

.map-base {
    width: 100%;
    display: block;
    height: auto;
}

.map-marker {
    position: absolute;
    transform: translate(-50%, -100%);
    cursor: pointer;
    z-index: 10;
}

.marker-icon {
    font-size: 24px;
    color: #47A632;
    /* Primary Green */
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(71, 166, 50, 0.5);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-ring 2s infinite;
}

.map-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 500;
}

.map-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

.map-marker:hover .map-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.map-marker:hover .marker-icon {
    color: #2F4195;
    /* Primary Blue on hover */
    transform: scale(1.2);
}

@keyframes pulse-ring {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.6;
    }

    100% {
        width: 300%;
        height: 300%;
        opacity: 0;
    }
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h3 {
    color: var(--primary-green);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h2 {
    color: var(--primary-blue);
    font-size: 36px;
}

.solutions-grid {
    display: flex;
    gap: 30px;
}

.home-service-box-1 {
    flex: 1;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    box-shadow: var(--box-shadow-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.full-box-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.home-service-box-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e2a66 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.home-service-box-1:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(47, 65, 149, 0.15);
    border-color: transparent;
}

.home-service-box-1:hover::before {
    opacity: 1;
}

.icon-box {
    width: 80px;
    height: 80px;
    background-color: #f0f4ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px auto;
    font-size: 32px;
    color: var(--primary-blue);
    transition: all 0.4s ease;
    overflow: hidden;
}

.icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.home-service-box-1:hover .icon-box {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.home-service-box-1 h3 {
    font-size: 20px;
    margin-bottom: 25px;
    min-height: 50px;
    color: var(--text-dark);
    font-weight: 700;
    transition: color 0.3s ease;
}

.home-service-box-1:hover h3 {
    color: var(--white);
}

.home-service-box-1 p {
    transition: color 0.4s ease;
}

.home-service-box-1:hover p {
    color: var(--white) !important;
}

.link_btn .btn-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: var(--light-grey);
    border-radius: 50%;
    color: var(--text-dark);
    transition: all 0.4s ease;
    font-size: 16px;
}

.home-service-box-1:hover .link_btn .btn-icon {
    background: var(--primary-green);
    color: var(--white);
    transform: rotate(-45deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-green);
    /* Contrast pop */
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
}

/* Culture Section */
.culture-section {
    padding: 80px 0;
}

.culture-grid {
    display: flex;
    gap: 30px;
}

.culture-card {
    flex: 1;
    text-align: center;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow-primary);
    border-radius: 8px;
    transition: all 0.3s;
}

.culture-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.culture-card h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 0;
    font-weight: 500;
}

.culture-card h3::after {
    content: none;
}

.culture-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.culture-card p {
    color: var(--text-dark);
    text-align: left;
    font-size: 16px;
    line-height: 1.7;
}

/* Achievements Section */
.achievements-section {
    padding: 80px 0;
    background-color: var(--white);
}

.achievements-content {
    display: flex;
    gap: 60px;
    align-items: center;
    /* Center vertically with text */
}

/* Slider Container */
.achievements-images-slider {
    flex: 1;
    position: relative;
    max-width: 600px;
    /* Limit width */
    margin: auto;
    overflow: hidden;
    /* Hide overflow */
    box-shadow: var(--box-shadow-primary);
    border-radius: 8px;
}

/* Slides */
.achievement-slide {
    display: none;
    /* Hidden by default */
    width: 100%;
}

.achievement-slide img {
    width: 100%;
    height: 400px;
    /* Fixed height for consistency */
    object-fit: contain;
    /* Contain image within box */
    background-color: #f9f9f9;
    /* Light bg for transparent images */
    border-radius: 8px;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* Next & previous buttons */
.prev-achievement,
.next-achievement {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
    /* Semi-transparent bg */
}

/* Position the "next button" to the right */
.next-achievement {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev-achievement:hover,
.next-achievement:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Dots/bullets container */
.achievement-dots {
    text-align: center;
    margin-top: 15px;
    position: absolute;
    bottom: 15px;
    width: 100%;
}

/* The dots/bullets/indicators */
.achievement-dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}


.achievements-dot:hover,
.achievements-dot.active {
    background-color: var(--primary-blue);
}

/* Proud Members Section */
.proud-members-section {
    padding: 60px 0;
    background-color: var(--primary-blue);
    color: var(--white);
}

.proud-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Left Slider/Image */
.proud-slider-container {
    flex: 1;
    position: relative;
    border: 8px solid var(--white);
    /* White border as seen in screenshot */
    border-right: none;
    overflow: hidden;
    background-color: white;
    /* Fallback */
}

.proud-slide {
    position: relative;
    width: 100%;
    height: 350px;
    /* Fixed height */
    display: none;
    /* Hidden by default */
}

.proud-slide:first-child {
    display: block;
    /* Show first slide */
}

.proud-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay-text {
    position: absolute;
    top: 50%;
    right: 50px;
    /* Positioned to the right side of the image */
    transform: translateY(-50%);
    text-align: left;
    z-index: 2;
    background: var(--primary-blue);
    /* Solid blue block */
    padding: 30px;
    min-width: 250px;
}

.slide-overlay-text h3 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slide-caption-bar {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--primary-blue);
    padding: 5px 15px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
}

.prev-proud,
.next-proud {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.next-proud {
    right: 0;
}

/* Right Content */
.proud-content {
    flex: 1;
    text-align: center;
}

.proud-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.proud-heading h2 {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
    color: var(--white);
}

.proud-heading .line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    width: 50px;
    display: block;
}

.member-cards-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.member-card {
    background: var(--white);
    padding: 20px;
    border-radius: 0;
    /* Square cards */
    width: 160px;
    height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-align: center;
}

.member-card img {
    max-width: 90%;
    max-height: 80px;
    margin-bottom: 15px;
    object-fit: contain;
}

.member-card p {
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

.proud-description {
    font-size: 14px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .proud-wrapper {
        flex-direction: column;
    }

    .proud-slider-container {
        width: 100%;
        border-right: 8px solid var(--white);
        /* Full border on mobile */
    }

    .member-cards-grid {
        flex-wrap: wrap;
    }
}

.achievements-text {
    flex: 1;
    padding-top: 10px;
}

.achievements-text h2 {
    color: var(--text-dark);
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

.achievements-text p {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
}

.achievements-text strong {
    font-weight: 700;
}

/* Responsive for Achievements */
@media (max-width: 992px) {
    .achievements-content {
        flex-direction: column;
    }

    .achievements-images-slider,
    .achievements-text {
        width: 100%;
        max-width: 100%;
    }
}

/* Estimate Section */
.estimate-section {
    padding: 80px 0;
    background-color: #f4f6f8;
    background-image: url('assets/construction_bg.png');
    background-size: 500px;
    background-repeat: repeat;
    background-position: center;
}

/* Trusted Partners Section */
.trusted-partners-section {
    padding: 60px 0;
    background-color: var(--white);
    overflow: hidden;
    /* Ensure content doesn't spill out */
}

.section-heading-center {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.partners-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Mask edges for a cleaner fade effect */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    width: fit-content;
    gap: 0;
    /* No gap because the sprite likely has padding */
    animation: scroll 30s linear infinite;
}

.partners-track img {
    height: 140px;
    width: auto;
    /* Let the image define the width */
    flex-shrink: 0;
    /* Prevent shrinking */
    padding-right: 30px;
    /* Add some spacing between duplicate strips */
    transition: all 0.3s ease;
}

/* .partners-track:hover img — no hover style needed */

/* Pause animation on hover */
.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move by half the total width (since we have 2 copies, moving 50% shifts 1 full copy) */
    }
}

.estimate-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--box-shadow-primary);
    position: relative;
    /* border-top: 5px solid var(--primary-blue); Removed to use gradient pseudo-element */
}

.estimate-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right,
            #005e81 0%, #005e81 16.666%,
            #12b9b3 16.666%, #12b9b3 33.333%,
            #a0c460 33.333%, #a0c460 50%,
            #f57e20 50%, #f57e20 66.666%,
            #006993 66.666%, #006993 83.333%,
            #c71d4b 83.333%, #c71d4b 100%);
    border-radius: 8px 8px 0 0;
}


.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.required-star {
    color: #FF0000;
    margin-left: 2px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
    width: 100%;
    outline: none;
    background-color: #FAFAFA;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-blue);
    background-color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
    margin-top: 30px;
    font-size: 16px;
    padding: 15px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background-color: var(--primary-blue);
    background-image: none;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: none;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    opacity: 0.1;

}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-text h2 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 28px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

.newsletter-form form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 20px;
    border-radius: 4px;
    border: none;
    /* Add border for visibility */
    width: 350px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 3px rgba(71, 166, 50, 0.5);
    /* Primary green glow */
}

.newsletter-form button.btn-primary {
    background-color: var(--primary-green);
    border: 2px solid var(--primary-green);
    color: var(--white);
    white-space: nowrap;
}

.newsletter-form button.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 3;
}

.footer-col:first-child {
    flex: 5;
}

.footer-col:nth-child(2) {
    flex: 2;
}

.footer-col h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    border-left: 3px solid var(--primary-green);
    padding-left: 15px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header-container {
        padding: 0 15px;
    }

    /* Mobile Menu styles moved to max-width: 992px query */

    .solutions-grid,
    .intro-content,
    .stats-grid,
    .culture-grid,
    .footer-grid,
    .newsletter-content {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .newsletter-content {
        text-align: center;
        gap: 20px;
        align-items: stretch;
    }

    .newsletter-form {
        width: 100%;
    }

    .newsletter-form form {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100% !important;
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .estimate-form-container {
        padding: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-row,
    .estimate-form-container form {
        width: 100%;
        max-width: 100%;
    }

    .intro-image {
        order: -1;
        /* Image first on mobile */
    }

    .hero-section {
        height: 400px;
    }

    .hero-text-box h2 {
        font-size: 24px;
    }
}

/* Page Headers */
.page-header {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    position: relative;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.7);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Overview Section */
.overview-section {
    padding: 80px 0;
}

.overview-section p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.overview-section blockquote {
    border-left: 4px solid var(--primary-blue);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #333;
}

.overview-box {
    background: #fff;
    padding: 40px;
    box-shadow: var(--box-shadow-primary);
    border-radius: 12px;
}

.info-row {
    display: flex;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.info-row:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.info-title {
    flex: 0 0 30%;
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    padding-right: 20px;
}

.info-content {
    flex: 1;
    color: #555;
    line-height: 1.6;
}

.highlight-green {
    color: var(--primary-green);
}

@media (max-width: 768px) {
    .info-row {
        flex-direction: column;
        gap: 15px;
    }

    .info-title {
        flex: auto;
        padding-right: 0;
        margin-bottom: 10px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow-primary);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    margin-bottom: 20px;
    text-align: center;
}

.modal-header h2 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Core Values Section */
/* Core Values Section */
.core-values-section {
    background-color: #f9f9f9;
    background-image: url('assets/newsletter_bg.png');
    /* Apply illustration here */
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: var(--primary-blue);
    /* Dark text for light bg */
    overflow: hidden;
}

.core-values-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.values-left {
    flex: 0 0 50%;
}

.values-box {
    border: 1px solid rgba(47, 65, 149, 0.2);
    /* Darker border */
    border-radius: 8px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    /* High opacity white to make text readable over illustration */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.values-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
    /* Bolder title */
    color: var(--primary-blue);
}

.values-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 1;
    color: var(--text-dark);
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.value-item i {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.value-item span {
    font-size: 14px;
    font-weight: 600;
}

/* Circular Graphic */
.values-right {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.values-orbit {
    width: 350px;
    height: 350px;
    border: 2px solid rgba(47, 65, 149, 0.15);
    /* Dark orbit ring */
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-center-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.orbit-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    /* Blue background for icons */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 15px rgba(47, 65, 149, 0.3);
}

/* Specific Positions according to image layout:
   - Integrity: Top 12 o'clock
   - Teamwork: Right side ~3 o'clock 
   - Excellence: Bottom Right ~5 o'clock
   - Accountability: Bottom Left ~7 o'clock
   - Sustainability: Left ~9 o'clock
   - Commitment: Top Left ~11 o'clock (Green)
*/
.orbit-icon.pos-integrity {
    top: 0;
    left: 50%;
}

.orbit-icon.pos-teamwork {
    top: 35%;
    left: 93%;
}

.orbit-icon.pos-excellence {
    top: 85%;
    left: 85%;
}

.orbit-icon.pos-accountability {
    top: 100%;
    left: 30%;
}

.orbit-icon.pos-sustainability {
    top: 60%;
    left: 0%;
}

.orbit-icon.pos-commitment {
    top: 15%;
    left: 15%;
    background-color: var(--primary-green);
}

@media (max-width: 992px) {
    .core-values-content {
        flex-direction: column;
    }

    .values-left {
        width: 100%;
    }

    .values-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .values-box {
        padding: 25px 15px;
        /* Reduced padding for mobile */
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns instead of 3 */
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        gap: 15px;
    }
}

/* Team Page Styles */
.team-section {
    padding: 80px 0;
    background-color: var(--white);
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.team-block-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.team-block-row.reverse-row {
    flex-direction: row-reverse;
}

.team-img-col {
    flex: 1;
}

.team-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.team-img-wrapper:hover img {
    transform: scale(1.05);
}

.team-info-col {
    flex: 1;
}

.team-name {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.team-designation {
    font-size: 18px;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider-left {
    width: 60px;
    height: 4px;
    background-color: var(--primary-blue);
    margin-bottom: 25px;
}

.team-bio {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

@media (max-width: 992px) {

    .team-block-row,
    .team-block-row.reverse-row {
        flex-direction: column;
        gap: 30px;
    }

    .team-img-col,
    .team-info-col {
        width: 100%;
    }

    .team-info-content {
        text-align: left !important;
        padding: 0 20px;
    }

    .team-info-content .divider-left {
        margin: 0 0 25px 0 !important;
    }

    /* .team-social styled explicitly to ensure left alignment */
    .team-social {
        justify-content: flex-start !important;
    }
}

/* Our Strength Section */
/* Our Strength Section */
.our-strength-section {
    background-color: #f9f9f9;
    padding: 80px 0 0;
    text-align: center;
    color: var(--primary-blue);
    height: auto !important;
    overflow: hidden;
    position: relative;
    display: block;
}

.strength-gallery,
.strength-item {
    height: auto !important;
    display: block;
    width: 100%;
}

/* Clear any floats and contain margins/content */

.section-title-strength {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-title-strength::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
    margin: 10px auto 0;
    opacity: 1;
}

.strength-desc {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* .strength-gallery grid styles removed as we now use full width block */
.strength-gallery {
    width: 100%;
    overflow: visible;
}

.strength-item {
    overflow: visible !important;
}

.strength-item img {
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 85vh;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
    transition: none !important;
}

.strength-item:hover img {
    transform: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Key Strengths Page Styles */
.intro-map-section {
    padding: 100px 0;
    background-color: var(--primary-blue);
    position: relative;
    color: var(--white);
}

.intro-map-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-map-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.divider-center {
    width: 80px;
    height: 4px;
    background-color: var(--primary-green);
    margin: 0 auto 30px;
}

.intro-map-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 50px;
}

.intro-stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.intro-stat {
    text-align: center;
}

.intro-stat .stat-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.intro-stat .stat-lbl {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Strengths Grid (Icons) */
.strengths-grid-section {
    padding: 80px 0;
    background-color: var(--white);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.strength-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid transparent;
}

.strength-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--primary-green);
}

.strength-icon {
    font-size: 50px;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.strength-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.strength-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Feature Rows (Images) */
.feature-rows-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .intro-stats-grid {
        gap: 30px;
    }
}

/* Accreditation Page Styles */
.accreditation-section {
    padding: 80px 0;
    background-color: var(--white);
}

.accreditation-intro-box {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 40px;
    border-radius: 8px;
    background: #fdfdfd;
}

.accreditation-intro-box h2 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.accreditation-intro-box p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
}

.link-primary {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: underline;
}

.link-primary:hover {
    color: var(--primary-green);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.certificate-card {
    text-align: center;
}

.cert-img-wrapper {
    position: relative;
    border: 5px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.cert-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.cert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 30, 71, 0.8);
    /* Primary Blue Overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert-overlay i {
    font-size: 30px;
    margin-bottom: 10px;
}

.cert-overlay span {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.certificate-card:hover .cert-img-wrapper {
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.certificate-card:hover .cert-overlay {
    opacity: 1;
}

.certificate-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-weight: 700;
}

.certificate-card p {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .certificates-grid {
        grid-template-columns: 1fr;
    }

    .accreditation-intro-box {
        padding: 30px 20px;
    }

    .why-shubham-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Page Header */
.page-header {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(47, 65, 149, 0.7);
    /* Blue overlay */
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    font-weight: 300;
}

/* Contact Page Styles */
.contact-page-section {
    padding: 80px 0;
}

.contact-grid-layout {
    display: flex;
    gap: 50px;
}

.contact-info-column {
    flex: 1;
}

.contact-form-column {
    flex: 1;
}

.contact-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details-box {
    margin-bottom: 20px;
}

.contact-info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.contact-info-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-blue);
    font-size: 32px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .icon-wrapper {
    background: var(--primary-blue);
    color: var(--white);
    transform: rotateY(180deg);
}

.contact-info-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.contact-info-card a {
    color: var(--primary-blue);
    font-weight: 500;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: var(--primary-green);
}

/* Contact Form Section (Separate with background) */
.contact-form-section {
    padding: 80px 0;
    background-color: #f4f6f8;
    background-image: url('assets/construction_bg.png');
    background-size: 500px;
    background-repeat: repeat;
    background-position: center;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-grey);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-item .details h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.contact-item .details p {
    color: var(--text-light);
    line-height: 1.5;
}

.time-info {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.department-contacts {
    background-color: var(--light-grey);
    padding: 30px;
    border-radius: 8px;
}

.department-contacts h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 10px;
    display: inline-block;
}

.dept-item {
    margin-bottom: 20px;
}

.dept-item:last-child {
    margin-bottom: 0;
}

.dept-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.dept-item p a {
    color: var(--primary-green);
    font-weight: 500;
}

.form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--box-shadow-primary);
    position: relative;
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right,
            #005e81 0%, #005e81 16.666%,
            #12b9b3 16.666%, #12b9b3 33.333%,
            #a0c460 33.333%, #a0c460 50%,
            #f57e20 50%, #f57e20 66.666%,
            #006993 66.666%, #006993 83.333%,
            #c71d4b 83.333%, #c71d4b 100%);
    border-radius: 8px 8px 0 0;
}

.form-wrapper h3 {
    margin-bottom: 30px;
    font-size: 24px;
    color: var(--text-dark);
}

.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
    width: 100%;
    outline: none;
    background-color: #FAFAFA;
    font-family: inherit;
    resize: vertical;
}

.form-group textarea:focus {
    border-color: var(--primary-blue);
    background-color: var(--white);
}

.map-section {
    line-height: 0;
}

/* Responsive adjustments for Contact Page */
@media (max-width: 900px) {
    .contact-grid-layout {
        flex-direction: column;
    }
}

/* Career Page Styles */

/* Life at Shubham */
.life-section {
    padding: 80px 0;
    background-color: var(--white);
}

.life-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.life-card {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--box-shadow-primary);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-green);
}

.life-card:hover {
    transform: translateY(-5px);
}

.life-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
}

.life-card h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.life-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* Employee Centric Box */
.employee-centric-box {
    background-color: #f1f0e8;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.employee-centric-box h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.centric-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.centric-item {
    background: var(--white);
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.centric-item i {
    color: var(--primary-green);
}

/* Career Testimonials */
.career-testimonials-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    position: relative;
    box-shadow: var(--box-shadow-primary);
}

.quote-icon {
    font-size: 30px;
    color: rgba(47, 65, 149, 0.1);
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.author-info h4 {
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.author-info span {
    font-size: 13px;
    color: var(--primary-green);
    font-weight: 600;
}

/* Job Openings */
.jobs-section {
    padding: 80px 0;
}

.jobs-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.job-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    background: var(--white);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--box-shadow-primary);
}

.job-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.job-header h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.job-loc {
    font-size: 13px;
    color: var(--text-light);
}

.job-loc i {
    color: var(--primary-green);
    margin-right: 5px;
}

.job-details {
    margin-bottom: 20px;
    flex-grow: 1;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.detail-row span {
    font-weight: 600;
    color: var(--text-light);
}

.job-desc {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.job-desc ul {
    list-style: disc;
    padding-left: 20px;
}

.job-desc li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.apply-btn {
    width: 100%;
}

/* Voices of Our Team - Split Layout */
.voices-section {
    padding: 80px 0;
    background-color: #f1f0e8;
    /* Light warm gray background */
}

.voices-container {
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: transparent;
}

.voices-image-col {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.voices-image-col img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.voices-text-col {
    flex: 1;
}

.voices-text-col .section-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: #232323;
    margin-bottom: 30px;
}

.voices-text-col .divider {
    width: 200px;
    height: 1px;
    background-color: #333;
    margin-bottom: 30px;
}

.testimonial-quote {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 2px;
}

.author-details span {
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 600;
}

/* Slider Dots */
.slider-dots {
    margin-top: 30px;
    text-align: left;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: transparent;
    border: 1px solid #333;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #333;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@media (max-width: 900px) {
    .voices-container {
        flex-direction: column;
    }

    .voices-text-col {
        order: 1;
    }

    .voices-image-col {
        order: -1;
    }
}

.apply-btn {
    width: 100%;
}

/* Awards & Recognition Page Styles */
.awards-intro-section {
    padding: 80px 0 40px;
    background-color: var(--white);
}

.awards-intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.awards-intro-text p {
    margin-bottom: 20px;
}

.awards-grid-section {
    padding: 40px 0 80px;
    background-color: var(--light-grey);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.award-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--box-shadow-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--primary-green);
}

.award-icon {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-card h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    min-height: 44px;
    /* Ensure uniform height for titles */
    display: flex;
    /* proper centering if multi-line */
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.award-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
    display: inline-block;
    padding: 2px 10px;
    background: #eefdf4;
    border-radius: 15px;
}

.award-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Awards & Recognition Page Styles - Updated */
.awards-intro-section {
    padding: 80px 0;
    background-color: var(--white);
}

.awards-intro-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.awards-text-col {
    flex: 1;
}

.awards-text-col p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.awards-text-col strong {
    color: #000;
    font-weight: 700;
}

.awards-image-col {
    flex: 1;
}

.awards-highlight-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--box-shadow-primary);
    display: block;
}

.more-awards-section {
    padding: 60px 0;
    background-color: var(--light-grey);
}

@media (max-width: 900px) {
    .awards-intro-grid {
        flex-direction: column;
    }

    .awards-text-col {
        order: 1;
    }

    .awards-image-col {
        order: -1;
        margin-bottom: 30px;
    }
}

.award-img-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
}

.award-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Newsletter Page Styles */
.md-desk-section {
    padding: 80px 4%;
    /* Added side padding */
    background-color: var(--white);
}

.md-desk-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* Vertically center content */
    width: 100%;
}

.md-image-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 40px;
    /* Padding for gap */
}

.md-image-col img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    /* Removes bottom space */
}

.md-text-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 40px;
    /* Increased gap */
    text-align: left;
    /* Explicitly left aligned */
}

.md-text-col h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.md-subheading {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.5;
}

.md-content-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 900px) {
    .md-desk-grid {
        display: block;
        /* Stack on mobile */
    }

    .md-image-col,
    .md-text-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 15px;
    }

    .md-image-col {
        margin-bottom: 30px;
    }
}

.newsletter-archive-section {
    padding: 40px 0 80px;
    background-color: var(--light-grey);
}

.year-section {
    margin-bottom: 50px;
}

.year-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-green);
    padding-left: 15px;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.newsletter-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow-primary);
    transition: transform 0.3s ease;
}

/* .newsletter-card:hover — hover effect disabled as per user request */

.news-thumb {
    position: relative;
    overflow: hidden;
    height: auto;
    /* Let image define height */
    background: #f0f0f0;
}

.news-thumb img {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    /* Remove bottom space */
    transition: transform 0.5s ease;
}

/* .newsletter-card:hover .news-thumb img {
    transform: scale(1.05);
} */

.news-thumb .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coming-soon-stamp {
    position: relative;
    bottom: auto;
    left: auto;
    transform: rotate(-8deg);
    border: 3px dashed #d93025;
    color: #d93025;
    font-size: 24px;
    font-weight: 800;
    padding: 10px 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    z-index: 10;
    pointer-events: none;
    text-align: center;
    box-shadow: none;
    width: auto;
    white-space: nowrap;
    display: inline-block;
}


.newsletter-card:hover .news-thumb .overlay {
    opacity: 1;
}

.news-info {
    padding: 20px;
    text-align: center;
}

.news-info h4 {
    font-size: 16px;
    /* Slightly smaller text for grid */
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--primary-green);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid var(--primary-green);
}

.read-more-link:hover,
.news-info .read-more-link:hover {
    background-color: var(--primary-green);
    color: var(--white) !important;
}

.divider-full {
    height: 1px;
    background-color: #ddd;
    margin: 40px 0;
}

@media (max-width: 1024px) {
    .newsletter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .newsletter-grid {
        grid-template-columns: 1fr;
    }

    .news-thumb {
        height: auto;
        /* Allow full height on mobile */
        max-height: none;
        /* Remove restriction */
    }
}

/* Events Page Styles */
.events-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.event-thumb {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-thumb img {
    transform: scale(1.08);
}

.event-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-green);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.event-content {
    padding: 25px;
}

.event-date {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.event-date i {
    margin-right: 5px;
    color: var(--primary-green);
}

.event-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.event-card:hover .event-content h3 {
    color: var(--primary-blue);
}

@media (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-thumb {
        height: 220px;
    }
}

/* Team Page Styles */
.team-section {
    padding: 80px 0;
    background-color: var(--white);
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.team-block-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.team-block-row.reverse-row {
    flex-direction: row-reverse;
}

.team-img-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.team-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    /* Increased size */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.team-img-wrapper:hover img {
    transform: scale(1.05);
}

.team-info-col {
    flex: 1;
}

.team-info-content {
    padding: 20px;
}

.team-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.team-designation {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.team-social {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #0077b5;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.team-social a:hover {
    transform: translateY(-3px);
    background-color: #005582;
}

.team-bio {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* Our Strength Styles */
.our-strength-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title-strength {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    /* display: inline-block; */
}

.section-title-strength::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
    margin: 10px auto 0;
}

.strength-desc {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.strength-gallery {
    display: block;
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

.strength-item {
    display: block;
    width: 100%;
    height: auto;
}

.strength-item img {
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 85vh;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: none !important;
}

.strength-item:hover img {
    transform: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {

    .team-block-row,
    .team-block-row.reverse-row {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .team-intro,
    .team-info-content {
        text-align: center;
    }

    .divider-left {
        margin: 20px auto;
    }

    .strength-gallery {
        grid-template-columns: 1fr;
    }
}

/* Trusted Partners Section */
.trusted-partners-section {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
    overflow: hidden;
}

.partners-carousel-wrapper {
    margin-top: 40px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partners-track img {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    /* filter: grayscale(100%); Removed to keep color */
    /* opacity: 0.7; Removed to explain full visibility */
    transition: all 0.3s ease;
}

.partners-track img:hover {
    /* filter: grayscale(0%); */
    /* opacity: 1; */
    transform: scale(1.05);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .partners-track {
        gap: 40px;
    }

    .partners-track img {
        height: 60px;
    }
}

/* Industry Reads / Blogs Page Styles */
.blogs-listing-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-thumb {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.05);
}

.blog-cats {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-blue);
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--text-dark);
}

.blog-content h3 a:hover {
    color: var(--primary-blue);
}

.blog-excerpt {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 14px;
    text-transform: uppercase;
}

.read-more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

.divider-center {
    width: 60px;
    height: 4px;
    background-color: var(--primary-green);
    margin: 0 auto 20px auto;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .blogs-grid {
        grid-template-columns: 1fr;
    }
}



/* Solutions Grid Layout */
.solutions-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

@media (max-width: 480px) {
    .solutions-grid-layout {
        grid-template-columns: 1fr;
    }
}

/* Project Slider Styles */
.project-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-slider-container {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.project-slide {
    display: none;
    animation: fadeEffect 1s;
    padding: 40px;
    text-align: center;
}

.project-slide.active {
    display: block;
}

.project-slide .icon-box {
    margin: 0 auto 20px;
}

.project-slide h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10;
    color: var(--primary-blue);
    font-size: 20px;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary-green);
    color: white;
}

.slider-btn.prev {
    left: -25px;
}

.slider-btn.next {
    right: -25px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slider-btn.prev {
        left: 0;
    }

    .slider-btn.next {
        right: 0;
    }
}

/* Success Message Styles */
.success-message-container {
    text-align: center;
    padding: 30px 20px;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    font-size: 50px;
    color: var(--primary-green);
    margin-bottom: 20px;
    display: block;
}

.success-title {
    color: var(--primary-blue);
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.success-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Utility Classes */
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

/* Circular Core Values Section */
.core-values-circular-section {
    padding: 100px 0;
    background-color: #f4f6f8;
    position: relative;
    overflow: hidden;
}

.values-circle-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 600px;
    /* Fixed height for the circular layout */
    margin: 0 auto;
}

/* Center Hub */
.center-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    border: 5px solid #eef2f5;
}

.hub-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hub-brand {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.hub-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 1px;
}

.hub-hindi {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

/* Value Nodes */
.value-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.value-node:hover {
    transform: scale(1.05);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-green);
    flex-shrink: 0;
}

.value-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 2px;
    text-transform: uppercase;
}

.hindi-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.eng-desc {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    line-height: 1.4;
}

.hindi-desc {
    font-size: 12px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Positioning */
/* Top Center */
.position-top {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    text-align: center;
}

/* Bottom Center */
.position-bottom {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column-reverse;
    text-align: center;
}

/* Top Left */
.position-top-left {
    top: 15%;
    left: 0;
    flex-direction: row-reverse;
    text-align: right;
}

/* Top Right */
.position-top-right {
    top: 15%;
    right: 0;
    flex-direction: row;
    text-align: left;
}

/* Bottom Left */
.position-bottom-left {
    bottom: 15%;
    left: 0;
    flex-direction: row-reverse;
    text-align: right;
}

/* Bottom Right */
.position-bottom-right {
    bottom: 15%;
    right: 0;
    flex-direction: row;
    text-align: left;
}

/* Connectors (Simple lines) */
.values-circle-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 1px dashed #ccc;
    border-radius: 50%;
    z-index: 1;
}


/* Responsive */
@media (max-width: 900px) {
    .values-circle-container {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .center-hub {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 30px;
    }

    .value-node {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        flex-direction: column !important;
        text-align: center !important;
        width: 100%;
    }

    .values-circle-container::before {
        display: none;
    }
}


/* Interactive Core Values Section */
.core-values-interactive-section {
    padding: 100px 0;
    background-color: #f4f6f8;
    overflow: hidden;
}

.interactive-values-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left: Rotating Dial Container */
.values-dial-container {
    position: relative;
    width: 450px;
    height: 450px;
    flex-shrink: 0;
}

/* Connectors Ring */
.values-dial-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px dashed #d1d1d1;
    border-radius: 50%;
    z-index: 1;
}

/* The Rotating Track */
.dial-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotateDial 20s linear infinite;
    z-index: 2;
}

/* Pausing rotation on hover is optional - let's keep it continuous for now or controlled via JS */
/* .dial-track:hover {
    animation-play-state: paused;
} */

@keyframes rotateDial {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Dial Items (Icons) */
.dial-item {
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: #fff;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-blue);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    /* Positioning logic: 6 items active radius ~225px */
    /* Center is 225, 225 */
    /* Item center offset to place on ring */
}

/* 
   Positioning 6 items in a circle (radius ~225px or slightly less to fit on ring)
   Circle radius = 225px. Item radius = 35px. 
   Distance from center = 225px.
   Positions: 0, 60, 120, 180, 240, 300 degrees.
*/

.dial-item:nth-child(1) {
    top: -35px;
    left: 190px;
}

/* 0 deg (Top) */
.dial-item:nth-child(2) {
    top: 77px;
    right: -5px;
}

/* 60 deg */
.dial-item:nth-child(3) {
    bottom: 77px;
    right: -5px;
}

/* 120 deg */
.dial-item:nth-child(4) {
    bottom: -35px;
    left: 190px;
}

/* 180 deg (Bottom) */
.dial-item:nth-child(5) {
    bottom: 77px;
    left: -5px;
}

/* 240 deg */
.dial-item:nth-child(6) {
    top: 77px;
    left: -5px;
}

/* 300 deg */

/* Counter-rotate icons so they remain upright */
.dial-item i {
    animation: counterRotate 20s linear infinite;
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.dial-item.active {
    background-color: var(--primary-green);
    color: #fff;
    transform: scale(1.2);
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(18, 185, 179, 0.4);
}

/* Hub Center */
.dial-center-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background-color: #fff;
    border-radius: 50%;
    border: 8px solid #eef2f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

/* Right: Content Display */
.value-display-panel {
    flex: 1;
    max-width: 500px;
    min-height: 300px;
    position: relative;
    /* border: 1px solid #ddd; */
    /* padding: 30px; */
    border-radius: 10px;
    /* background: #fff; */
    display: flex;
    align-items: center;
}

.value-card-display {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-green);
}

.value-card-display.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
    /* Takes space flow */
}

.display-icon {
    font-size: 40px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.value-card-display h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.value-card-display .hindi-title {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.value-card-display .eng-desc {
    font-size: 18px;
    color: #444;
    margin-bottom: 5px;
    line-height: 1.6;
}

.value-card-display .hindi-desc {
    font-size: 16px;
    color: #777;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .interactive-values-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .values-dial-container {
        width: 300px;
        height: 300px;
    }

    .dial-center-hub {
        width: 120px;
        height: 120px;
    }

    .dial-item {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .dial-item:nth-child(1) {
        top: -25px;
        left: 125px;
    }

    .dial-item:nth-child(2) {
        top: 50px;
        right: -10px;
    }

    .dial-item:nth-child(3) {
        bottom: 50px;
        right: -10px;
    }

    .dial-item:nth-child(4) {
        bottom: -25px;
        left: 125px;
    }

    .dial-item:nth-child(5) {
        bottom: 50px;
        left: -10px;
    }

    .dial-item:nth-child(6) {
        top: 50px;
        left: -10px;
    }

    .value-display-panel {
        width: 100%;
        min-height: auto;
    }

    .value-card-display {
        position: relative;
        opacity: 1;
        transform: none;
        display: none;
        /* Hide non-active ones */
    }

    .value-card-display.active {
        display: block;
    }
}


/* Updated Interactive Core Values Design */

/* Swap Order: Display First (Left), then Dial */
.interactive-values-wrapper {
    flex-direction: row;
    /* Default flex row puts 1st child left */
}

/* Dial Container Updates for Image Match */
.values-dial-container {
    width: 450px;
    height: 450px;
    /* Clean background, using Conic Gradient for segments */
    /* 6 segments = 600deg each */
    /* Colors: Alternating #f0f4f8 and #ffffff ? or consistent light grey */
    /* Let's try subtle alternating to denote segments */
}

/* Outer Blue Ring */
.values-dial-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #6b8caf;
    /* Blue-ish border from image */
    pointer-events: none;
    z-index: 10;
}

/* The Segmented Background Track */
.dial-track {
    /* Create the segments using conic gradient */
    background: conic-gradient(#f9f9f9 0deg 60deg,
            #f0f4f8 60deg 120deg,
            #f9f9f9 120deg 180deg,
            #f0f4f8 180deg 240deg,
            #f9f9f9 240deg 300deg,
            #f0f4f8 300deg 360deg);
    border-radius: 50%;
    /* Remove previous dashed border */
    border: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Remove the previous dashed connector line */
.values-dial-container::before {
    display: none;
}

/* Icons positioning update to match image exactly */
/* Radius ~450px / 2 = 225px.
   Icons need to be centered in their 60deg slice.
   Slice 1 (0-60deg): Center at 30deg.
   Wait, is top 0? Yes usually.
   Image shows icons in the MIDDLE of segments.
   If Top (12 o'clock) is a boundary or center?
   Let's assume Top Icon is at 0 degrees (12 o'clock). 
   Then segments are centered on the axes?
   Or segments start at -30 deg?
   Let's place icons at 0, 60, 120... and see.
*/

/* 
   Radius to center of icons: ~160px from center.
   (Container 450px -> r=225px. Hub ~180px -> r=90px. Gap 135px space. Mid ~157px)
*/

.dial-item {
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    font-size: 50px;
    /* Larger icons */
    /* Reset from previous bubble style */
    display: flex;
    /* keep flex for centering if needed */
}

.dial-item i {
    /* Color from image: Teal/Green outlined? styles vary. */
    /* Image has outlined icons. FontAwesome regular or solid? */
    /* We use solid for now */
    color: #12b9b3;
    /* Primary Green */
    transition: all 0.3s;
}

.dial-item.active i {
    color: #2c3e50;
    /* Dark Blue active or similar */
    transform: scale(1.2);
    /* Remove background circle styles */
}

/* Specific Positions based on 160px radius from center (225, 225) */
/* 0 deg (Top) */
.item-top {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

/* 60 deg (Top Right) */
/* x = 225 + 160*sin(60) = 225 + 138 = 363 */
/* y = 225 - 160*cos(60) = 225 - 80 = 145 */
.item-top-right {
    top: 85px;
    right: 55px;
}

/* 120 deg (Bottom Right) */
/* x = 363 */
/* y = 225 + 80 = 305 */
.item-bottom-right {
    bottom: 85px;
    right: 55px;
}

/* 180 deg (Bottom) */
.item-bottom {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

/* 240 deg (Bottom Left) */
.item-bottom-left {
    bottom: 85px;
    left: 55px;
}

/* 300 deg (Top Left) */
.item-top-left {
    top: 85px;
    left: 55px;
}

/* Center Hub Update */
.dial-center-hub {
    width: 200px;
    height: 200px;
    background: #fff;
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    z-index: 20;
}

.hub-brand {
    font-size: 42px;
    letter-spacing: -1px;
}

.hub-title {
    font-size: 16px;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 900px) {
    .interactive-values-wrapper {
        flex-direction: column-reverse;
        /* Dial on top, Text bottom? Or text top? */
        /* User usually wants text readable. Let's keep column (Text first) */
        flex-direction: column;
    }
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    /* Ensure no underline */
}

.footer-social-icons a:hover {
    background-color: var(--primary-green);
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--primary-green);
}

/* Footer Address Spacing Updates */
.address-box h4 {
    margin-bottom: 5px !important;
    color: #fff;
    font-size: 16px;
}

.address-box p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.address-box {
    margin-bottom: 15px;
}


.footer-col ul li {
    margin-bottom: 5px !important;
}

/* Split Hero Section - Added for Building Infrastructure Redesign */
.split-hero-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.split-hero-content {
    flex: 1;
    background-color: #034EA2;
    /* Strong corporate blue */
    color: var(--white);
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 400px;
    position: relative;
}

.split-hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #47A632, #2F4195);
}

.split-hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 400px;
    position: relative;
}

/* Overlay for image to ensure consistency */
.split-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.split-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.split-hero-content .highlight-text {
    display: block;
    margin-top: 10px;
    font-weight: 300;
    opacity: 0.9;
    font-size: 0.8em;
}

.split-hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.95;
    text-align: justify;
}

.split-hero-btn {
    align-self: flex-start;
    margin-top: 20px;
}

/* Domains Section */
.domains-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.domains-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.domains-intro p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

@media (max-width: 900px) {
    .split-hero-section {
        flex-direction: column;
        height: auto;
    }

    .split-hero-content {
        padding: 60px 30px;
        order: 2;
    }

    .split-hero-image {
        min-height: 300px;
        order: 1;
    }

    .split-hero-content h1 {
        font-size: 2.5rem;
    }
}


/* Track Record Section - Redesigned */
.track-record-section {
    padding: 80px 0;
    background-color: #f4f6f8;
    /* Light gray background to make white cards pop */
    position: relative;
}

.track-record-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Left section slightly wider */
    gap: 40px;
    align-items: stretch;
}

.track-record-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* Space between cards */
}

.track-record-item {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 0 !important;
    /* Override old margin */
    border-bottom: none !important;
    /* Override old border */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Accent Borders */
.track-record-col:first-child .track-record-item {
    border-top: 4px solid var(--primary-blue);
}

.track-record-col:last-child .track-record-item {
    border-top: 4px solid var(--primary-green);
    padding: 30px 40px;
    /* Slightly smaller padding for right items */
}

/* Hover Effect */
.track-record-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Left Column Headings - Darker */
.track-record-col:first-child .track-record-item h3 {
    color: var(--text-dark);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    position: relative;
}

/* Right Column Headings - Blue */
.track-record-col:last-child .track-record-item h3 {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* Paragraph Styles */
.track-record-item p {
    color: var(--text-light);
    /* Softer gray text */
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    text-align: left;
    margin: 0;
}

@media (max-width: 900px) {
    .track-record-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .track-record-col:last-child .track-record-item {
        padding-bottom: 30px;
    }
}

/* Healthcare Infrastructure Custom Styles */
.request-quote-banner {
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.healthcare-content-section,
.mep-content-section {
    padding: 60px 0;
    background-color: var(--white);
}

.healthcare-main-title,
.mep-main-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.healthcare-intro-text,
.mep-intro-text {
    max-width: 950px;
    margin: 0 auto;
    text-align: justify;
    text-align-last: center;
    /* Helper for centering the block feel */
}

.healthcare-intro-text p {
    margin-bottom: 25px;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
}

/* Healthcare Intro Two-Column Layout */
.hc-intro-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: start;
    margin-top: 20px;
}

.hc-intro-text p {
    color: var(--text-light);
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.hc-intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hc-highlight-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-blue);
    border-radius: 6px;
    padding: 18px 20px;
    box-shadow: var(--box-shadow-primary);
    transition: all 0.3s ease;
}

.hc-highlight-card:hover {
    border-left-color: var(--primary-green);
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(47, 65, 149, 0.12);
}

.hc-highlight-card>i {
    font-size: 26px;
    color: var(--primary-blue);
    width: 36px;
    text-align: center;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.hc-highlight-card:hover>i {
    color: var(--primary-green);
}

.hc-highlight-card>div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hc-highlight-card strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
}

.hc-highlight-card span {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 900px) {
    .hc-intro-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.healthcare-services-grid,
.mep-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.healthcare-service-item {
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 18px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    white-space: nowrap;
}

.service-title span {
    padding: 0 10px;
}

.service-title::before,
.service-title::after {
    content: "";
    height: 1px;
    background-color: var(--primary-blue);
    flex: 1;
    opacity: 0.3;
}

.service-image-container {
    background-color: var(--primary-blue);
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    min-height: 320px;
    margin-bottom: 20px;
    border: 1px solid var(--primary-blue);
}

.service-img-box {
    text-align: center;
    transition: transform 0.3s ease;
}

.service-img-box:hover {
    transform: scale(1.1);
}

.service-desc {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 60px;
    /* Alignment */
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 14px;
    margin-top: auto;
    text-transform: uppercase;
}

.read-more-link .plus-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: var(--primary-blue);
    color: white;
    font-size: 14px;
    margin-right: 10px;
    font-weight: normal;
}

.read-more-link:hover {
    color: var(--primary-green);
}

.read-more-link:hover .plus-icon {
    background-color: var(--primary-green);
}

/* Service Toggle Button (modern chip style) */
.service-toggle-btn {
    background-color: var(--white);
    border: 1px solid #e1e8ed;
    color: var(--primary-blue);
    cursor: pointer;
    font-family: inherit;
    padding: 6px 16px 6px 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.service-toggle-btn.read-more-link {
    margin-top: auto;
}

.service-toggle-btn:hover {
    background-color: #f8fbfd;
    border-color: #c9d6df;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-toggle-btn.expanded {
    background-color: rgba(142, 198, 63, 0.08);
    border-color: rgba(142, 198, 63, 0.3);
    color: var(--primary-green);
}

.service-toggle-btn .plus-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    font-size: 16px;
    margin: 0;
    font-weight: normal;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-toggle-btn:hover .plus-icon {
    background-color: var(--primary-green);
}

.service-toggle-btn.expanded .plus-icon {
    background-color: var(--primary-green);
    transform: rotate(180deg);
}

.read-more-link.service-toggle-btn .plus-icon {
    margin-right: 0;
}

/* Expandable Services List */
.service-expand-list {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.service-expand-list ul {
    list-style: none;
    padding: 0 0 20px 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
    border: none;
}

.service-expand-list ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background-color: #f8fbfd;
    border: 1px solid #eef2f5;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.service-expand-list ul li:hover {
    background-color: var(--white);
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(47, 65, 149, 0.08);
    transform: translateY(-2px);
}

.service-expand-list ul li i {
    color: var(--primary-green);
    font-size: 14px;
    margin-top: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(142, 198, 63, 0.15);
    border-radius: 50%;
}

.service-expand-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    background-color: #f0f4f8;
    padding: 8px 14px;
    border-radius: 6px;
    margin: 15px 0 15px;
    display: inline-block;
    border-left: 4px solid var(--primary-green);
}

@media (max-width: 768px) {

    .healthcare-services-grid,
    .mep-services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .healthcare-main-title {
        font-size: 28px;
    }

    .service-title {
        white-space: normal;
    }
}

/* Executing Solutions Section - Healthcare */
.executing-solutions-section {
    display: flex;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.executing-text-col {
    flex: 1;
    background-color: var(--primary-blue);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.executing-subheading {
    color: var(--primary-green);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.executing-heading {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.executing-desc {
    font-size: 18px;
    line-height: 1.6;
    max-width: 90%;
    opacity: 0.9;
}

.executing-image-col {
    flex: 1;
    background-image: url('assets/healthcare-executing.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

@media (max-width: 900px) {
    .executing-solutions-section {
        flex-direction: column;
    }

    .executing-text-col {
        padding: 50px 30px;
    }

    .executing-heading {
        font-size: 40px;
    }

    .executing-image-col {
        min-height: 300px;
    }
}

.mep-image {
    background-image: url('assets/mep_solutions_bg.jpg') !important;
}

.building-image {
    background-image: url('assets/building_infrastructure_hero.jpg') !important;
    background-size: cover;
    background-position: center;
}

.mep-services-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .mep-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Real Estate Page Styles */
.real-estate-image {
    background-image: url('assets/real_estate_hero.jpg') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ongoing-projects-hero-img {
    background-image: url('assets/ongoing_projects_simple.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: #f9f9f9;
}

.real-estate-content-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.real-estate-main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.real-estate-intro-text {
    margin-bottom: 50px;
}

.real-estate-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.real-estate-moving-forward {
    background-color: #f9f9f9;
    padding: 40px;
    border-left: 5px solid var(--primary-green);
    margin-top: 60px;
}

.real-estate-moving-forward h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.real-estate-moving-forward p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Ongoing Projects Grid Styles */
.projects-grid-ongoing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .projects-grid-ongoing {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid-ongoing {
        grid-template-columns: 1fr;
    }
}

.project-card-ongoing {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card-ongoing:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-thumb {
    height: 200px;
    background-color: #f0f0f0;
    overflow: hidden;
    position: relative;
}

/* Project Detail Page Styles */
.project-details-page {
    padding: 80px 0;
    background-color: var(--white);
}

.project-details-container {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.project-main-image {
    flex: 1.2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-info-box {
    flex: 0.8;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-green);
    height: fit-content;
}

.project-info-title {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.info-row {
    display: flex;
    margin-bottom: 20px;
}

.info-label {
    font-weight: 600;
    width: 140px;
    color: var(--text-dark);
    flex-shrink: 0;
}

.info-value {
    color: var(--text-light);
    flex: 1;
}

.project-description {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 16px;
}

@media (max-width: 900px) {
    .project-details-container {
        flex-direction: column;
    }
}

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.project-card-ongoing:hover .project-thumb img {
    transform: scale(1.05);
}

.project-details {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-details h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.location-text {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.desc-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.icon-box-small {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.link_btn_small {
    display: flex;
    justify-content: flex-start;
}

.btn-icon-small {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: var(--light-grey);
    border-radius: 50%;
    color: var(--text-dark);
    transition: all 0.4s ease;
    font-size: 16px;
}

.project-card-ongoing:hover .btn-icon-small {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .projects-grid-ongoing {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Contact Page Icons Fix */
.contact-info-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .icon-wrapper {
    background-color: var(--primary-blue);
    transform: rotateY(180deg);
}

.contact-social-links .social-icon {
    display: flex;
    /* Ensures Flexbox works */
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    color: var(--white) !important;
    /* Force white color */
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-links .social-icon:hover {
    background-color: var(--primary-green);
    transform: translateY(-3px);
}

/* Footer Social Icons Fix */
.footer-social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    display: flex;
    /* Ensures Flexbox works */
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
    /* Force white color */
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icons a:hover {
    background-color: var(--primary-green);
    transform: translateY(-3px);
}

/* Footer General Styles (Ensuring visibility) */
.main-footer {
    background-color: var(--primary-blue);
    /* Ensure dark background */
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-col h3 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--white);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-green);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Awards & Recognition Page — Our Laurels
   ============================================ */
.more-awards-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.award-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 0;
    /* No padding — image must be flush with all edges */
}

.award-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(47, 65, 149, 0.15);
}

.award-img-wrapper {
    width: 100%;
    /* Stretch full card width */
    height: 220px;
    overflow: hidden;
    background-color: #f9f9f9;
    margin: 0;
    /* No gap from card edges */
    display: block;
}

/* KEY FIX: image fills the full width/height of the wrapper — no blank space */
.award-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.award-card:hover .award-img-wrapper img {
    transform: scale(1.05);
}

.award-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue);
    padding: 16px 16px 4px;
    margin: 0;
}

.award-card .award-desc {
    font-size: 13px;
    color: var(--text-light);
    padding: 0 16px 16px;
    margin: 0;
}

/* Awards Intro Section */
.awards-intro-section {
    padding: 60px 0;
    background: var(--white);
}

.awards-intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.awards-text-col {
    flex: 1;
}

.awards-text-col p {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;
}

.awards-image-col {
    flex: 1;
}

/* Responsive */
@media (max-width: 1100px) {
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .awards-intro-grid {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------
   Modern MEP Tabs UI
-------------------------------------- */
.mep-tabs-wrapper {
    margin-top: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(47, 65, 149, 0.05);
    /* Soft primary-blue shadow */
    overflow: hidden;
    border: 1px solid #eef2f5;
}

.mep-tab-buttons {
    display: flex;
    background-color: #f8fbfd;
    border-bottom: 1px solid #eef2f5;
}

.mep-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 24px 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-bottom: 3px solid transparent;
    font-family: 'Inter', sans-serif;
}

.mep-tab-btn i {
    font-size: 22px;
    color: #a0aec0;
    transition: all 0.3s ease;
}

.mep-tab-btn:hover {
    color: var(--primary-blue);
    background-color: #f0f4f8;
}

.mep-tab-btn.active {
    color: var(--primary-blue);
    background-color: #fff;
    border-bottom: 3px solid var(--primary-green);
}

.mep-tab-btn.active i {
    color: var(--primary-green);
}

.mep-tab-content {
    display: none;
    animation: fadeInTab 0.5s ease;
    padding: 50px;
}

.mep-tab-content.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tab Header Content */
.mep-tab-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px dashed #e1e8ed;
}

.mep-tab-img {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    background: rgba(142, 198, 63, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(142, 198, 63, 0.3);
}

.mep-tab-img img {
    height: 70px;
    width: auto;
}

.mep-tab-desc {
    flex: 1;
}

.mep-tab-desc h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 800;
}

.mep-tab-desc p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* Services Sections under Tabs */
.mep-tab-services-group {
    margin-bottom: 35px;
}

.mep-tab-services-group:last-child {
    margin-bottom: 0;
}

.mep-service-cat-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.mep-service-cat-title::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 22px;
    background: var(--primary-green);
    border-radius: 4px;
}

.mep-service-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.mep-chip {
    background: #fff;
    border: 1px solid #e1e8ed;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.mep-chip i {
    color: var(--primary-green);
    font-size: 16px;
    background: rgba(142, 198, 63, 0.15);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mep-chip:hover {
    border-color: var(--primary-green);
    color: var(--primary-blue);
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(47, 65, 149, 0.08);
    /* Primary blue tint shadow */
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .mep-tab-buttons {
        flex-direction: column;
    }

    .mep-tab-btn {
        border-bottom: 1px solid #eef2f5;
        border-right: none;
    }

    .mep-tab-btn.active {
        border-bottom: 1px solid #eef2f5;
        border-left: 4px solid var(--primary-green);
    }
}

@media (max-width: 768px) {
    .mep-tab-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

}

/* Projects Section missing logic */
.projects-section {
    padding: 80px 0;
    background-color: var(--white);
}

.projects-section.padding-lg {
    padding: 100px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.project-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.project-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.project-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    z-index: 1;
}

.project-img:hover::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-green);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tag.completed {
    background: var(--primary-blue);
}

.project-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-info h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.project-info p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-info p i {
    color: var(--primary-green);
}

.specs {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px dashed var(--border-color);
    border-bottom: 1px dashed var(--border-color);
    margin-bottom: 25px;
}

.specs span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.project-brief {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-text {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-text:hover {
    color: var(--primary-blue);
    gap: 12px;
}

/* About Page Styles */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-weight: 800;
}

.about-text p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Page Form Grid overrides */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-card-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Re-adding shadow without using var(--shadow) causing bugs */
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 900px) {

    .about-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }
}