/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.6rem;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.u-center-text {
    text-align: center;
}

.u-margin-bottom-medium {
    margin-bottom: 4rem;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
.heading-1 {
    font-size: 4.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00125e;
}

.heading-2 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.heading-2--white {
    color: #fff;
}

.heading-2--blue {
    color: #00125e;
}

.heading-2__primary {
    display: inline-block;
    color: #00125e;
}

.heading-2__secondary {
    display: inline-block;
    color: #ff6b35;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
/* Header Background removed or made relative for slider */
.header,
.slider {
    position: relative;
    height: 100vh;
    background: transparent;
    /* Changed from #ffffff to see slider */
    overflow: hidden;
}

.slider {
    position: relative;
    height: 100vh;
    background: transparent;
    /* Changed from #ffffff to see slider */
    overflow: hidden;
}

.header--small {
    height: 60vh;
}

.header--small .header__content {
    top: 60%;
    /* Move content down to clear fixed nav */
}

.header__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.header__content h1 {
    font-size: 6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #1a1a1a;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5rem;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s;
}

.nav__logo {
    width: 35rem;
    height: 8rem;
    background-image: url('assets/gct logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.nav__link-list {
    display: flex;
    gap: 3rem;
}

.nav__link-item a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav__link-item a:hover,
.nav__link-item a.selected {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
}

.nav__menu-button {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
}

.nav__btn-line {
    width: 3rem;
    height: 0.3rem;
    background-color: #1a1a1a;
    transition: all 0.3s;
}

/* ===================================
   HERO SLIDER
   =================================== */
.slider__banner1,
.slider__banner2,
.slider__banner3,
.slider__banner4,
.slider__banner5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slideShow 25s infinite;
}

/* Global Homepage Background Slider */
.homepage-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.homepage-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideShow 25s infinite;
    /* Synced with text banners */
}

.homepage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Even lighter overlay for better image visibility */
    background: linear-gradient(rgba(0, 18, 94, 0.3), rgba(0, 61, 130, 0.3));
    z-index: 1;
}

/* Stagger animations for background slides */
.homepage-bg-slide:nth-child(1) {
    animation-delay: 0s;
}

.homepage-bg-slide:nth-child(2) {
    animation-delay: 5s;
}

.homepage-bg-slide:nth-child(3) {
    animation-delay: 10s;
}

.homepage-bg-slide:nth-child(4) {
    animation-delay: 15s;
}

.homepage-bg-slide:nth-child(5) {
    animation-delay: 20s;
}

/* Banners (Text Overlays) */
.slider__banner1,
.slider__banner2,
.slider__banner3,
.slider__banner4,
.slider__banner5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    /* Removed individual backgrounds */
    opacity: 0;
    z-index: 2;
    animation-name: fade;
    animation-duration: 25s;
    animation-iteration-count: infinite;
}

.slider__banner1 {
    animation-delay: 0s;
}

.slider__banner2 {
    animation-delay: 5s;
}

.slider__banner3 {
    animation-delay: 10s;
}

.slider__banner4 {
    animation-delay: 15s;
}

.slider__banner5 {
    animation-delay: 20s;
}

@keyframes slideShow {
    0% {
        opacity: 0;
    }

    4% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    24% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Static Slogan Style */
.slider__static-slogan {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 10;
}

.slider__static-slogan h1 {
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

/* Reverted Slider Text Color */
.slider__text-box {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    /* Reverted to White */
    width: 80%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    /* Strong Black Shadow */
    z-index: 10;
}

.slider__text-box h1 {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
    /* Reverted to White */
}

.slider__text-box p {
    font-size: 2.2rem;
    line-height: 1.6;
    color: #ffffff;
    /* Reverted to White */
    font-weight: 600;
}

.hero__slogan {
    font-size: 2.8rem !important;
    font-weight: 500 !important;
    font-style: italic;
    color: #ff6b35 !important;
    margin-bottom: 2.5rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.header__down-arrow {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    animation: bounce 2s infinite;
}

.header__down-arrow a {
    color: #1a1a1a;
    text-decoration: none;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-20px);
    }

    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===================================
   INTRO SECTION
   =================================== */
.intro {
    padding: 10rem 5rem;
    background-color: #f8f9fa;
}

.intro__start {
    text-align: center;
    margin-bottom: 5rem;
}

.intro__content {
    max-width: 100rem;
    margin: 0 auto;
}

.intro__content p {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: justify;
}

.briliantExpert {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: 10rem 5rem;
    background: #ffffff;
    text-align: center;
}

.services__heading {
    margin-bottom: 3rem;
}

.services__content {
    color: #fff;
    font-size: 1.8rem;
    max-width: 90rem;
    margin: 0 auto 6rem auto;
    line-height: 1.8;
}

.services__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
}

.services__card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    cursor: pointer;
}

.services__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.services__img {
    width: 100%;
    height: 25rem;
    overflow: hidden;
}

.services__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.services__card:hover .services__img img {
    transform: scale(1.1);
}

.services__card-heading {
    padding: 2rem;
    font-size: 2.2rem;
    color: #00125e;
    font-weight: 600;
}

/* Service Details Section */
.service-details {
    max-width: 120rem;
    margin: 8rem auto 0 auto;
    padding: 6rem 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.service-details__heading {
    font-size: 3.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-details__intro {
    font-size: 2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 5rem;
    font-style: italic;
    opacity: 0.9;
}

.service-details__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.service-feature {
    background-color: #fff;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    border-top: 4px solid #ff6b35;
}

.service-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.service-feature__icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.service-feature h4 {
    font-size: 2rem;
    color: #00125e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-feature p {
    font-size: 1.6rem;
    color: #555;
    line-height: 1.6;
}

/* Service Card Descriptions */
.services__card-description {
    padding: 0 2rem 2rem 2rem;
    text-align: left;
}

.services__card-description p {
    font-size: 1.5rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.services__key-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services__key-points li {
    font-size: 1.4rem;
    color: #333;
    padding: 0.6rem 0;
    line-height: 1.5;
    border-bottom: 1px solid #f0f0f0;
}

.services__key-points li:last-child {
    border-bottom: none;
}

/* ===================================
   PARALLAX
   =================================== */
.parallax {
    height: 40rem;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax--2 {
    background-image: linear-gradient(rgba(135, 206, 235, 0.3), rgba(135, 206, 235, 0.3)),
        url('assets/parallax.jpg');
}

/* ===================================
   VALUES/EMPLOYEE SECTION
   =================================== */
.employee {
    padding: 10rem 5rem;
    background-color: #ffffff;
}

.employee__heading {
    text-align: center;
    margin-bottom: 6rem;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
}

.value__card {
    background-color: #fff;
    padding: 4rem 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border-left: 5px solid #ff6b35;
}

.value__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.value__card h3 {
    font-size: 2.4rem;
    color: #00125e;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.value__card p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #555;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-us {
    padding: 10rem 5rem;
    background-color: #fff;
}

.contact-us__top {
    text-align: center;
    margin-bottom: 6rem;
}

.contact-us__contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50rem, 1fr));
    gap: 6rem;
    max-width: 120rem;
    margin: 0 auto;
}

.contact-us__contact {
    background-color: #f8f9fa;
    padding: 4rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-us__contact-heading {
    color: #00125e;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-us__map {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.contact-us__map iframe {
    width: 100%;
    height: 35rem;
    border: none;
}

.contact-us__address {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-us__email {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-us__email a {
    color: #00125e;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-us__email a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

.contact-us__tel {
    font-size: 1.6rem;
    font-weight: 600;
    color: #00125e;
    line-height: 1.8;
}

.contact-us__tel a {
    color: #00125e;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    margin: 0.3rem 0;
}

.contact-us__tel a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

/* Contact Page Specific Styles */
.header--small {
    height: 40vh;
    min-height: 35rem;
}

.header__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
}

.header__content h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact-us--full {
    padding: 8rem 5rem;
}

.contact-us__intro {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 6rem auto;
}

.contact-us__intro p {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #555;
    margin-top: 2rem;
}

.quick-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto 8rem auto;
}

.quick-contact__item {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border: none;
    padding: 4rem 3rem;
    border-radius: 15px;
    text-align: center;
    color: #ffffff;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.quick-contact__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.quick-contact__icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.quick-contact__item h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #ff6b35;
}

/* ===================================
   SERVICES PAGE
   =================================== */
.services-page {
    padding: 8rem 0;
}

.services-page__intro {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 6rem;
}

.services-page__intro p {
    font-size: 1.8rem;
    color: #555;
    line-height: 1.8;
    margin-top: 2rem;
}

.service-detail-section {
    margin-bottom: 6rem;
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-header {
    position: relative;
    height: 35rem;
    overflow: hidden;
}

.service-detail-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-header h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 18, 94, 0.95), transparent);
    color: #fff;
    font-size: 3.5rem;
    padding: 3rem;
    margin: 0;
}

.service-detail-content {
    padding: 4rem;
}

.service-detail-description {
    font-size: 1.8rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.service-detail-content h4 {
    font-size: 2.2rem;
    color: #00125e;
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
}

.service-detail-points {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-detail-points li {
    font-size: 1.6rem;
    color: #333;
    padding: 1rem 0;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.service-detail-points li:last-child {
    border-bottom: none;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.service-feature-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-feature-item:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
}

.service-feature-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.service-feature-item h4 {
    font-size: 1.8rem;
    color: #00125e;
    margin: 1rem 0;
}

.service-feature-item p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
}

.header--small {
    height: 35rem;
}

.header--small .header__content h1 {
    font-size: 5rem;
}

.quick-contact__item {
    background: #f8f9fa;
    padding: 4rem 3rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.quick-contact__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
}

.quick-contact__icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.quick-contact__item h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #ff6b35;
}

.quick-contact__item a {
    color: #333;
    text-decoration: none;
    font-size: 1.8rem;
    display: block;
    margin: 0.5rem 0;
    transition: all 0.3s;
}

.quick-contact__item a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.quick-contact__item p {
    font-size: 1.6rem;
    margin: 0.5rem 0;
    color: #555;
}

.contact-us__locations {
    margin-bottom: 8rem;
}

.contact-us__locations h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-us__details {
    margin-top: 2rem;
}

.why-contact {
    text-align: center;
    padding: 6rem 0;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.why-contact h2 {
    margin-bottom: 5rem;
}

/* Why Contact - Custom List Style */
.why-contact__grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 90rem;
    margin: 0 auto;
    text-align: left;
    padding: 0 3rem;
}

.why-contact__card {
    position: relative;
    padding-left: 3.5rem;
    background: transparent;
    box-shadow: none;
    transition: all 0.3s;
}

.why-contact__card::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    top: -0.5rem;
    font-size: 4rem;
    color: #ff6b35;
    /* Orange bullet */
    line-height: 1;
}

.why-contact__card:hover {
    transform: translateX(10px);
}

.why-contact__card h3 {
    font-size: 2.2rem;
    color: #00125e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.why-contact__card p {
    font-size: 1.6rem;
    color: #555;
    line-height: 1.6;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: #ffffff;
    color: #1a1a1a;
    border-top: 3px solid #e0e0e0;
    padding: 6rem 5rem 3rem 5rem;
    text-align: center;
}

.footer__top-icon {
    width: 25rem;
    height: 18rem;
    margin: 0 auto 3rem auto;
    background-image: url('assets/gct logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer__logo {
    width: 50rem;
    height: 18rem;
    margin: 0 auto 3rem auto;
    background-image: url('assets/gct logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer__text {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.footer__content {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer__nav-item a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 2rem;
    transition: all 0.3s;
}

.footer__nav-item a:hover {
    color: #ff6b35;
}

.footer__copyright {
    font-size: 1.8rem;
    color: rgba(26, 26, 26, 0.6);
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 26, 26, 0.2);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media screen and (max-width: 768px) {
    html {
        font-size: 55%;
    }

    .nav {
        padding: 2rem 3rem;
    }

    .nav__link-list {
        position: fixed;
        top: 8rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 8rem);
        background-color: rgba(0, 18, 94, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 5rem;
        transition: all 0.3s;
        z-index: 999;
    }

    .nav__link-list.active {
        left: 0;
    }

    .nav__menu-button {
        display: flex;
    }

    .nav__menu-button.active .nav__btn-line:nth-child(1) {
        transform: rotate(45deg) translate(0.7rem, 0.7rem);
    }

    .nav__menu-button.active .nav__btn-line:nth-child(2) {
        opacity: 0;
    }

    .nav__menu-button.active .nav__btn-line:nth-child(3) {
        transform: rotate(-45deg) translate(0.7rem, -0.7rem);
    }

    .nav__logo {
        width: 25rem;
        height: 6rem;
    }

    .slider__text-box h1 {
        font-size: 3.5rem;
    }

    .slider__text-box p {
        font-size: 1.6rem;
    }

    .hero__slogan {
        font-size: 2.2rem !important;
        margin-bottom: 2rem !important;
    }

    .heading-1 {
        font-size: 3.5rem;
    }

    .heading-2 {
        font-size: 2.8rem;
    }

    .intro,
    .services,
    .employee,
    .contact-us {
        padding: 6rem 3rem;
    }

    .services__cards {
        grid-template-columns: 1fr;
    }

    .values__grid {
        grid-template-columns: 1fr;
    }

    .contact-us__contacts {
        grid-template-columns: 1fr;
    }

    .parallax {
        background-attachment: scroll;
        height: 30rem;
    }

    /* Contact Page Mobile */
    .header--small {
        height: 35vh;
        min-height: 30rem;
    }

    .header__content h1 {
        font-size: 3.5rem;
    }

    .quick-contact {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 6rem;
    }

    .quick-contact__item {
        padding: 3rem 2rem;
    }

    .quick-contact__icon {
        font-size: 4rem;
    }

    .why-contact__grid {
        grid-template-columns: 1fr;
    }

    .contact-us--full {
        padding: 6rem 3rem;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 50%;
    }

    .nav {
        padding: 1.5rem 2rem;
    }

    .nav__logo {
        width: 20rem;
        height: 6rem;
    }

    .slider__text-box h1 {
        font-size: 2.8rem;
    }

    .slider__text-box p {
        font-size: 1.4rem;
    }

    .hero__slogan {
        font-size: 1.8rem !important;
        margin-bottom: 1.5rem !important;
    }

    .heading-1 {
        font-size: 2.8rem;
    }

    .heading-2 {
        font-size: 2.2rem;
    }

    .intro,
    .services,
    .employee,
    .contact-us {
        padding: 4rem 2rem;
    }

    .services__cards {
        gap: 3rem;
    }

    .values__grid {
        gap: 3rem;
    }

    .header--small {
        height: 30vh;
        min-height: 25rem;
    }

    .header__content h1 {
        font-size: 2.8rem;
    }

    .quick-contact {
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .quick-contact__item {
        padding: 2.5rem 2rem;
    }

    .quick-contact__icon {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .quick-contact__item h3 {
        font-size: 2rem;
    }

    .quick-contact__item a {
        font-size: 1.6rem;
    }

    .contact-us__map iframe {
        height: 25rem;
    }

    .why-contact {
        padding: 4rem 0;
    }

    .why-contact__grid {
        gap: 2rem;
        padding: 0 2rem;
    }

    .why-contact__item {
        padding: 2.5rem 2rem;
    }

    .contact-us--full {
        padding: 4rem 2rem;
    }

    .contact-us__intro {
        margin-bottom: 4rem;
    }

    .contact-us__locations {
        margin-bottom: 4rem;
    }
}

/* =================================== 
   MOBILE OPTIMIZATIONS (ADDED) 
   =================================== */
@media screen and (max-width: 900px) {

    /* Fix Heading Sizes on Mobile */
    .intro-redesigned h2,
    .intro-redesigned h2 span,
    .employee__heading h2,
    .employee__heading h2 span {
        font-size: 3rem !important;
        /* Smaller for mobile */
    }

    /* Ensure Nav Button is Visible */
    .nav__menu-button {
        display: flex !important;
        z-index: 2000;
    }

    .nav__btn-line {
        background-color: #000000 !important;
        /* Force Black Lines */
        height: 0.4rem;
        /* Thicker for visibility */
    }

    /* Ensure Logo is Visible */
    .nav__logo {
        width: 25rem;
        height: 6rem;
    }

    /* Adjust Padding */
    .intro-redesigned,
    .employee {
        padding: 5rem 2rem;
    }

    /* Adjust Intro Cards */
    .intro-grid,
    .values__grid {
        padding: 0 2rem;
        gap: 2rem;
    }
}

/* ===================================
   SERVICES HERO PAGE
   =================================== */
.services-hero-page {
    width: 100%;
}

.service-hero-section {
    position: relative;
    min-height: 60rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.service-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.service-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 140rem;
    /* Increased max-width */
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left !important;
    /* Forced Left Alignment */
    align-items: flex-start !important;
    /* Forced Flex Start */
}

.service-hero-content--left {
    align-items: flex-start;
    text-align: left;
    margin-right: auto;
    width: 100%;
    /* Full width to allow content to sit left */
    max-width: 80rem;
    /* Limit width for readability but keep left alignment */
}

.service-hero-content--right {
    align-items: flex-start !important;
    /* Override right alignment */
    text-align: left !important;
    margin-right: auto !important;
    /* Move to Left */
    margin-left: 0 !important;
    width: 100%;
    max-width: 80rem;
}

.service-hero-content--center {
    margin: 0 auto !important;
    max-width: 120rem;
    text-align: center !important;
    align-items: center !important;
    /* Force center alignment of children */
}

.service-hero-content h2 {
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-hero-divider {
    width: 8rem;
    height: 4px;
    background: #ff6b35;
    margin-bottom: 3rem;
}

.service-hero-content--center .service-hero-divider {
    margin-left: auto;
    margin-right: auto;
}

.service-hero-content h3 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 3.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-hero-list li {
    font-size: 2.2rem;
    /* Increased from 2rem */
    line-height: 2;
    padding: 1.2rem 0;
    padding-left: 3.5rem;
    position: relative;
    font-weight: 600;
    /* Bolder text */
}

.service-hero-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 800;
    /* Extra bold checkmark */
    font-size: 2.4rem;
    color: #ffd700;
    /* Gold checkmark for better visibility on colors */
}

.service-hero-intro {
    font-size: 2.4rem;
    margin-bottom: 4rem;
    font-style: italic;
    font-weight: 300;
}

/* Color Variants */
/* Service 4: Customer Support (Deep Blue/Dark) */
.service-hero--dark {
    background: #1a237e;
}

.service-hero--dark .service-hero-overlay {
    background: linear-gradient(90deg, rgba(26, 35, 126, 0.95) 0%, rgba(26, 35, 126, 0.75) 50%, rgba(26, 35, 126, 0.4) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.service-hero--dark .service-hero-content {
    color: #ffffff;
}

.service-hero--dark h1,
.service-hero--dark li {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.service-hero--light {
    background: #ff6b35;
}

.service-hero--light .service-hero-overlay {
    background: linear-gradient(270deg, rgba(255, 107, 53, 0.5) 0%, rgba(255, 107, 53, 0.3) 50%, transparent 100%);
}

.service-hero--light .service-hero-content {
    color: #000000;
    /* Darker font (Pure Black) */
    text-shadow: none;
    /* Remove shadow if it makes it look muddy */
}

.service-hero--light h2,
.service-hero--light h3,
.service-hero--light li {
    color: #000000 !important;
}

/* Service 3: Intermodal Transportation (Yellow/Gold) */
.service-hero--yellow {
    background: #ffc107;
}

/* Service 3: Transportation (Yellow/Gold) */
.service-hero-section.service-hero--yellow .service-hero-overlay {
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.85) 0%, rgba(255, 193, 7, 0.6) 50%, rgba(255, 193, 7, 0.2) 100%) !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.service-hero-section.service-hero--yellow .service-hero-content {
    color: #000000;
}

.service-hero-section.service-hero--yellow h1,
.service-hero-section.service-hero--yellow li {
    color: #000000 !important;
    text-shadow: none !important;
    font-weight: 700 !important;
}

.service-hero-section.service-hero--yellow .service-hero-list li::before {
    color: #000000 !important;
}

/* Service 1: Container Depot (Navy Blue) */
.service-hero-section.service-hero--blue .service-hero-overlay {
    background: linear-gradient(90deg, rgba(13, 71, 161, 0.85) 0%, rgba(13, 71, 161, 0.6) 50%, rgba(13, 71, 161, 0.2) 100%) !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.service-hero-section.service-hero--blue h1,
.service-hero-section.service-hero--blue li {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.service-hero--orange {
    background: #ff6b35;
}

/* Service 2: Container Repair (Orange/Red) */
.service-hero-section.service-hero--orange .service-hero-overlay {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.85) 0%, rgba(255, 107, 53, 0.6) 50%, rgba(255, 107, 53, 0.2) 100%) !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.service-hero-section.service-hero--orange .service-hero-content {
    color: #ffffff;
}

.service-hero-section.service-hero--orange h1,
.service-hero-section.service-hero--orange h2,
.service-hero-section.service-hero--orange li {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.service-hero--orange h1,
.service-hero--orange h2,
.service-hero--orange h3,
/* Added h3 for consistency */
.service-hero--orange li {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Service 5: Empty Depot (Sky Blue) */
.service-hero--skyblue {
    background: #87CEEB;
}

.service-hero--skyblue .service-hero-overlay {
    background: linear-gradient(270deg, rgba(135, 206, 235, 0.85) 0%, rgba(135, 206, 235, 0.6) 50%, transparent 100%);
}

.service-hero--skyblue .service-hero-content {
    color: #000000;
}

.service-hero--skyblue h2,
.service-hero--skyblue h3,
.service-hero--skyblue li {
    color: #000000 !important;
}

.service-hero--skyblue .service-hero-intro {
    color: #000000;
    font-weight: 600;
}

/* Service Features Modern Grid */
.service-features-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.service-feature-modern {
    background: transparent;
    box-shadow: none;
    padding: 1rem;
    border-radius: 0;
    text-align: left;
    /* Align left for list style */
    border: none;
    transition: all 0.3s ease;
    display: flex;
    /* Flex to align bullet */
    flex-direction: column;
    position: relative;
    padding-left: 2.5rem;
    /* Space for bullet */
}

/* Custom Bullet Point */
.service-feature-modern::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0rem;
    font-size: 4rem;
    /* Large bullet */
    color: #ffffff;
    line-height: 1;
}

.service-feature-modern:hover {
    transform: translateX(10px);
    /* Move right instead of up */
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    opacity: 1;
}

.service-feature-modern .feature-icon {
    display: none;
    /* Ensure icons are hidden if present */
}

.service-feature-modern h4 {
    font-size: 2.2rem;
    margin: 1.5rem 0;
    font-weight: 700;
    color: #ffffff;
    /* White text for contrast */
}

.service-feature-modern p {
    font-size: 1.8rem;
    opacity: 0.9;
    font-weight: 400;
    color: #ffffff;
    /* White text */
}

/* Background Slider - Reused for other sections if needed */
.service-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.service-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideFade 20s infinite;
    /* 5s per slide * 4 slides */
}

/* Stagger animations for each slide */
.service-hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.service-hero-slide:nth-child(2) {
    animation-delay: 5s;
}

.service-hero-slide:nth-child(3) {
    animation-delay: 10s;
}

.service-hero-slide:nth-child(4) {
    animation-delay: 15s;
}

/* Keyframes for smooth cross-fade */
@keyframes slideFade {
    0% {
        opacity: 0;
        transform: scale(1.1);
        /* Subtle zoom effect */
    }

    4% {
        opacity: 1;
        transform: scale(1);
    }

    21% {
        opacity: 1;
        transform: scale(1);
    }

    25% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

/* Mobile Responsive Slider */
@media (max-width: 768px) {
    .service-hero-slide {
        background-position: center center;
    }
}

.service-hero-content {
    padding: 4rem 3rem;
    max-width: 100%;
}

.service-hero-content--left,
.service-hero-content--right {
    margin-left: 0;
    margin-right: 0;
}

.service-hero-content h2 {
    font-size: 3rem;
}

.service-hero-content h3 {
    font-size: 2rem;
}

.service-hero-list li {
    font-size: 1.6rem;
}

.service-features-modern {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
    align-items: start;
}

@media only screen and (max-width: 1200px) {
    .service-features-modern {
        grid-template-columns: repeat(3, 1fr) !important;
        /* wrap on smaller screens */
    }
}

@media only screen and (max-width: 600px) {
    .service-features-modern {
        grid-template-columns: 1fr !important;
        /* Stack on mobile */
    }
}

/* Removed conflicting overrides that were forcing dark overlay on mobile/desktop reuse */

/* =================================== 
   NEW INTRO SECTION (REDESIGNED) 
   =================================== */
.intro-redesigned {
    padding: 10rem 0;
    background-image: url('assets/parallax-containers.jpg') !important;
    /* Force Background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed !important;
    /* Force Parallax */
    position: relative;
    z-index: 10;
    text-align: center;
    background-color: transparent !important;
    /* Ensure no color blocks it */
}

/* Semi-transparent overlay to ensure text readability if cards don't cover everything */
.intro-redesigned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.1);
    /* Light Orange Tint */
    z-index: -1;
}

/* Main Heading Container (Who We Are) */
/* Main Heading Container (Who We Are) */
.intro-redesigned h2 {
    text-align: center;
    color: #000000 !important;
    /* Dark Black as requested */
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
    /* White shadow for contrast */
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Stack vertically (1 column) */
    gap: 4rem;
    max-width: 90rem;
    /* Limit width for single column readability */
    margin: 0 auto;
    padding: 0 4rem;
    text-align: left;
    /* Reset default text alignment for body */
}

/* =================================== 
   COMMITMENT SECTION OVERRIDE 
   =================================== */
.employee {
    padding: 10rem 0;
    background-image: url('assets/parallax-containers.jpg');
    /* Consistent background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.employee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.1);
    /* Light Orange Tint matched to Intro */
    z-index: 0;
}

.employee__heading {
    position: relative;
    z-index: 1;
}

.employee__heading h2 {
    color: #000000 !important;
    /* Dark Black */
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
}

.values__grid {
    display: grid;
    grid-template-columns: 1fr !important;
    /* Force Single Column */
    gap: 4rem;
    max-width: 90rem;
    /* Same width as Intro for consistency */
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

.intro-card {
    background: #ffffff;
    padding: 4rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 5px solid transparent;
    display: flex;
    flex-direction: column;
}

.intro-card:hover {
    transform: translateY(-1rem);
    box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.15);
}

/* Hover Borders */
.intro-card:nth-child(1),
.intro-card:nth-child(1):hover {
    border-bottom-color: #ff6b35;
    border-bottom: 5px solid #ff6b35;
}

.intro-card:nth-child(2),
.intro-card:nth-child(2):hover {
    border-bottom-color: #0d47a1;
    border-bottom: 5px solid #0d47a1;
}

.intro-card:nth-child(3),
.intro-card:nth-child(3):hover {
    border-bottom-color: #ffc107;
    border-bottom: 5px solid #ffc107;
}


/* Sub-heading (e.g., Founders' Vision) - CENTERED & COLORED */
.intro-card__sub {
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff6b35;
    /* Orange to match "Innovators" style? Or let's make it secondary color */
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
    /* Center! */
}

/* Main Title (e.g., Two Gen-Z Men...) - CENTERED & STYLED */
.intro-card__title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.3;
    text-align: center;
    /* Center! */
    color: #00125e;
    /* Default Dark Blue */
    display: block;
}

/* Body Text - Justified */
.intro-card__text {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #00125e;
    text-align: justify;
    margin-bottom: 2rem;
}

/* Responsiveness */
@media only screen and (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 3rem;
    }

    .intro-redesigned {
        padding: 6rem 0;
    }
}