
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --content-left: 100px;
    --content-right: 100px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* ========== WEBINAR BANNER ========== */
.webinar-banner {
    position: fixed;
    height: 7%;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    color: white;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    transition: all 0.3s ease;
}

.webinar-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.webinar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    width: 100%;
    position: relative;
}

.webinar-text {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
}

.watch-btn {
    padding: 10px 28px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 2px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.watch-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.watch-btn:hover {
    color: white;
    border-top: 1px solid white;
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.watch-btn:hover::before {
    height: 100%;
}

.close-banner {
    position: absolute;
    right: 50px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-banner svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
}

/* ========== STICKY NAVBAR ========== */
.sticky-navbar {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background: white;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px var(--content-right) 8px var(--content-left);
    transition: top 0.4s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sticky-navbar.visible {
    top: 0;
    animation: slideDownNav 0.4s ease-out;
}

@keyframes slideDownNav {
    from {
        top: -90px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
}

.sticky-navbar img {
    height: 64px;
    width: auto;
    filter: none;
    object-fit: cover;
    object-position: center;
}

.sticky-navbar .nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sticky-navbar .menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.sticky-navbar .menu-toggle svg {
    width: 30px;
    height: 30px;
    stroke: #333;
    stroke-width: 2;
}

.sticky-navbar .consultation-btn {
    padding: 14px 36px;
    background: white;
    color: #050714;
    border-top: 0.4px solid #050714;
    border-left: 1px solid #050714;
    border-right: 1px solid #050714;
    border-bottom: 3px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.sticky-navbar .consultation-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.sticky-navbar .consultation-btn:hover {
    color: white;
}

.sticky-navbar .consultation-btn:hover::before {
    height: 100%;
}

/* ========== LOGO CONTAINER ========== */
.logo-container {
    position: fixed;
    top: 65px;
    left: var(--content-left);
    z-index: 900;
    transition: all 0.3s ease;
}

.logo-container.banner-hidden {
    top: 40px;
}

.logo-container.hide {
    opacity: 0;
    pointer-events: none;
}

.logo-container img {
    height: 69px;
    width: auto;
}

/* ========== MENU TOGGLE CONTAINER ========== */
.menu-toggle-container {
    position: fixed;
    top: 70px;
    right: var(--content-right);
    z-index: 900;
    transition: all 0.3s ease;
}

.menu-toggle-container.banner-hidden {
    top: 60px;
}

.menu-toggle-container.hide {
    opacity: 0;
    pointer-events: none;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle svg {
    width: 32px;
    height: 32px;
    stroke: white;
    stroke-width: 2;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

/* ========== DROPDOWN MENU ========== */
.dropdown-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    z-index: 1000;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    z-index: 10;
    padding: 8px var(--content-right) 8px var(--content-left);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-logo img {
    height: 66px;
    width: auto;
}

.dropdown-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.dropdown-consultation-btn {
    padding: 14px 36px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 3px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dropdown-consultation-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.dropdown-consultation-btn:hover {
    color: white;
    border-top: 1px solid white;
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.dropdown-consultation-btn:hover::before {
    height: 100%;
}

.close-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.close-menu svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
}

.dropdown-container {
    max-width: 1400px;
    margin: 0 80px;
    padding: 60px 40px 80px;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    color: white;
}

.dropdown-section-wrapper {
    display: block;
    margin-bottom: 0;
}

.dropdown-section-title {
    font-size: 22px;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.dropdown-items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px 30px;
    grid-auto-flow: row;
}

.dropdown-item {
    display: block;
}

.dropdown-item a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 8px 0;
    transition: opacity 0.3s;
    font-size: 18px;
    line-height: 1.5;
}

.dropdown-item a:hover {
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.social-links a {
    color: white;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

.social-links svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 0 40px;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 64px;
    padding-top: 100px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
}

.hero-cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 2px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 10px;
}

.hero-cta-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.hero-cta-btn:hover {
    color: white;
    border-top: 1px solid white;
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.hero-cta-btn:hover::before {
    height: 100%;
}

/* ========== CHALLENGES SECTION ========== */
/* ========== CHALLENGES SECTION - UPDATED ========== */
.challenges-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.challenges-container {
    padding-left: var(--content-left);
    padding-right: var(--content-right);
    max-width: 1400px;
    margin: 0 auto;
}

.challenges-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.challenges-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.challenges-header p {
    font-size: 19px;
    color: #555;
    line-height: 1.7;
    font-weight: 400;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.challenge-card {
    background: white;
    border-radius: 12px;
    padding: 40px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(5, 7, 20, 0.15);
    border-color: rgba(5, 7, 20, 0.1);
}

.challenge-card:hover::before {
    transform: scaleX(1);
}

.challenge-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(5, 7, 20, 0.2);
}

.challenge-card:hover .challenge-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 8px 20px rgba(5, 7, 20, 0.3);
}

.challenge-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
    stroke-width: 2;
}

.challenge-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    margin-bottom: 16px;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.challenge-card-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ========== TABLET RESPONSIVE ========== */
@media (max-width: 1024px) {
    .challenges-section {
        padding: 80px 0;
    }

    .challenges-header {
        margin-bottom: 60px;
    }

    .challenges-header h2 {
        font-size: 42px;
    }

    .challenges-header p {
        font-size: 18px;
    }

    .challenges-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .challenge-card {
        padding: 35px 30px;
    }

    .challenge-card-title {
        font-size: 20px;
        min-height: 55px;
    }

    .challenge-card-description {
        font-size: 15px;
    }
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    .challenges-section {
        padding: 60px 0;
    }

    .challenges-container {
        padding-left: var(--content-left) !important;
        padding-right: var(--content-right) !important;
    }

    .challenges-header {
        margin-bottom: 50px;
    }

    .challenges-header h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .challenges-header p {
        font-size: 16px;
        line-height: 1.6;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .challenge-card {
        padding: 30px 25px;
    }

    .challenge-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .challenge-icon svg {
        width: 28px;
        height: 28px;
    }

    .challenge-card-title {
        font-size: 20px;
        min-height: auto;
        margin-bottom: 14px;
    }

    .challenge-card-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .challenge-card:hover {
        transform: translateY(-4px);
    }
}

/* ========== SMALL MOBILE DEVICES ========== */
@media (max-width: 480px) {
    .challenges-section {
        padding: 50px 0;
    }

    .challenges-header {
        margin-bottom: 40px;
    }

    .challenges-header h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .challenges-header p {
        font-size: 15px;
    }

    .challenges-grid {
        gap: 18px;
        margin-top: 35px;
    }

    .challenge-card {
        padding: 25px 20px;
        border-radius: 10px;
    }

    .challenge-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
        border-radius: 10px;
    }

    .challenge-icon svg {
        width: 26px;
        height: 26px;
    }

    .challenge-card-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .challenge-card-description {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* ========== ROADMAP SECTION ========== */
.roadmap-section {
    background: #f5f5f5;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.roadmap-container {
    padding-left: var(--content-left);
    padding-right: var(--content-right);
}

.roadmap-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: center;
}

.roadmap-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.roadmap-title {
    font-size: 36px;
    font-weight: 600;
    color: #222;
    line-height: 1.2;
    margin-bottom: 8px;
}

.roadmap-description {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.roadmap-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ========== FOUNDATION SECTION ========== */
.foundation-banner {
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.foundation-banner h2 {
    color: white;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    padding: 0 var(--content-left);
}

.foundation-section {
    background: white;
    padding: 0;
    position: relative;
    z-index: 2;
}

.foundation-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 600px;
    align-items: stretch;
}

.foundation-item:nth-child(odd) {
    background: white;
}

.foundation-item:nth-child(even) {
    background: #f8f8f8;
}

.foundation-content {
    padding: 80px var(--content-left) 80px var(--content-left);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.foundation-content h3 {
    font-size: 30px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
    margin-bottom: 24px;
}

.foundation-content p {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 28px;
}

.foundation-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.foundation-content li {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 32px;
    position: relative;
}

.foundation-content li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #F2F1F5;
    font-size: 24px;
    line-height: 1.4;
}

.foundation-content li:last-child {
    margin-bottom: 0;
}

.foundation-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.foundation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.foundation-item:nth-child(odd) .foundation-content {
    order: 1;
    padding-right: 60px;
}

.foundation-item:nth-child(odd) .foundation-image {
    order: 2;
}

.foundation-item:nth-child(even) .foundation-content {
    order: 2;
    padding-left: 60px;
}

.foundation-item:nth-child(even) .foundation-image {
    order: 1;
}

/* ========== CHANGE ENABLEMENT SECTION ========== */
.change-enablement-section {
    background: white;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.change-enablement-container {
    padding-left: var(--content-left);
    padding-right: var(--content-right);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: center;
}

.change-enablement-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.change-enablement-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.change-enablement-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.change-enablement-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
    margin-bottom: 8px;
}

.change-enablement-content p {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ========== WHAT WE OFFER SECTION ========== */
.what-we-offer-section {
    background: white;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.content-container {
    margin: 0 7.5%;
    margin-right: 100px;
}

.what-we-offer-header {
    text-align: center;
    margin-bottom: 60px;
}

.what-we-offer-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 20px;
}

.what-we-offer-header .subtitle {
    font-size: 19px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.3s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(to bottom, rgba(5, 7, 20, 0.6) 0%, rgba(8, 26, 47, 0.7) 100%);
}

.service-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(15deg) scale(1.1);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.service-title {
    color: white;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.service-card:hover .service-title {
    transform: translateY(-5px);
}

.service-description {
    color: white;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.service-card:hover .service-description {
    max-height: 200px;
    opacity: 1;
    margin-top: 8px;
}

/* ========== CTA BANNER SECTION ========== */
.cta-banner-section {
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.cta-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-banner-text {
    flex: 1;
}

.cta-banner-text h2 {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-banner-text p {
    font-size: 18px;
    color: white;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-banner-button {
    flex-shrink: 0;
}

.cta-banner-btn {
    display: inline-block;
    padding: 14px 36px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 2px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.cta-banner-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.cta-banner-btn:hover {
    color: white;
    border-bottom-color: #050714;
}

.cta-banner-btn:hover::before {
    height: 100%;
}

/* ========== FOOTER SECTION ========== */
.footer-section {
    background: white;
    padding: 80px 0 0 0;
    position: relative;
    z-index: 2;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 0.7fr;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 24px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 14px;
    width: 90%;
}

.footer-column ul li a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: block;
    width: 100%;
}

.footer-column ul li a:hover {
    color: #050714;
}

.footer-column sup {
    font-size: 11px;
    top: -0.3em;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    font-size: 20px;
}

.social-icon:hover {
    background: #050714;
    color: white;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.gptw-badge {
    width: 100px;
    height: auto;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-logo img {
    height: 64px;
    width: auto;
}

.footer-copyright {
    flex: 1;
    text-align: center;
    color: #666;
    font-size: 15px;
}

.footer-search {
    display: flex;
    gap: 0;
    max-width: 400px;
    width: 100%;
}

.footer-search input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-right: none;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
    min-width: 0;
}

.footer-search input:focus {
    border-color: #050714;
}

.footer-search input::placeholder {
    color: #999;
}

.footer-search button {
    padding: 14px 28px;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 60px;
}

.footer-search button:hover {
    background: linear-gradient(135deg, #081A2F 0%, #0B2A3D 60%, #050714 100%);
}

.footer-links {
    background: #f5f5f5;
    padding: 20px 0;
    text-align: center;
}

.footer-links-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #050714;
}

.footer-links-separator {
    color: #ccc;
}

/* ========== TABLET RESPONSIVE ========== */
@media (max-width: 1024px) {
    :root {
        --content-left: 60px;
        --content-right: 60px;
    }

    .logo-container {
        top: 75px;
    }

    .logo-container.banner-hidden {
        top: 45px;
    }

    .menu-toggle-container {
        top: 80px;
    }

    .menu-toggle-container.banner-hidden {
        top: 50px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-description {
        font-size: 18px;
    }

    .roadmap-section {
        padding: 60px 0;
    }

    .roadmap-content {
        gap: 60px;
    }

    .roadmap-title {
        font-size: 42px;
    }

    .roadmap-description {
        font-size: 17px;
    }

    .foundation-banner h2 {
        font-size: 40px;
    }

    .foundation-item {
        min-height: 500px;
    }

    .foundation-content {
        padding: 60px var(--content-left) 60px var(--content-left);
    }

    .foundation-content h3 {
        font-size: 36px;
    }

    .foundation-content p,
    .foundation-content li {
        font-size: 17px;
    }

    .foundation-item:nth-child(odd) .foundation-content {
        padding-right: 40px;
    }

    .foundation-item:nth-child(even) .foundation-content {
        padding-left: 40px;
    }

    .change-enablement-section {
        padding: 60px 0;
    }

    .change-enablement-container {
        gap: 60px;
    }

    .change-enablement-content h2 {
        font-size: 32px;
    }

    .change-enablement-content p {
        font-size: 17px;
    }

    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .services-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-image-wrapper {
        height: 350px;
    }
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    :root {
        --content-left: 20px;
        --content-right: 20px;
    }

    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .challenges-container,
    .roadmap-container,
    .change-enablement-container,
    .content-container {
        padding-left: var(--content-left) !important;
        padding-right: var(--content-right) !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .challenges-section,
    .roadmap-section,
    .foundation-section,
    .change-enablement-section,
    .cta-banner-section,
    .footer-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .foundation-content {
        padding-left: var(--content-left) !important;
        padding-right: var(--content-left) !important;
    }

    .foundation-item:nth-child(odd) .foundation-content,
    .foundation-item:nth-child(even) .foundation-content {
        padding-left: var(--content-left) !important;
        padding-right: var(--content-left) !important;
    }

    .cta-banner-content {
        padding-left: var(--content-left);
        padding-right: var(--content-right);
    }

    .footer-columns,
    .footer-bottom-content,
    .footer-links-content {
        padding-left: var(--content-left);
        padding-right: var(--content-right);
    }

    .dropdown-container {
        margin-left: var(--content-left);
        margin-right: var(--content-right);
        padding-left: 0;
        padding-right: 0;
    }

    .foundation-banner h2 {
        padding-left: var(--content-left);
        padding-right: var(--content-right);
    }

    .webinar-banner {
        height: auto;
        padding: 10px 12px;
        flex-wrap: wrap;
    }

    .webinar-content {
        flex-direction: column;
        gap: 10px;
        padding-right: 35px;
        width: 100%;
        max-width: 100%;
    }

    .webinar-text {
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
        width: 100%;
    }

    .watch-btn {
        padding: 8px 20px;
        font-size: 12px;
        width: auto;
        text-align: center;
    }

    .close-banner {
        right: 12px;
        top: 10px;
    }

    .close-banner svg {
        width: 16px;
        height: 16px;
    }

    .logo-container {
        position: fixed !important;
        left: var(--content-left) !important;
        top: 80px !important;
        z-index: 900 !important;
    }

    .logo-container.banner-hidden {
        top: 20px !important;
    }

    .logo-container img {
        height: 50px !important;
        width: auto !important;
    }

    .menu-toggle-container {
        position: fixed !important;
        right: var(--content-right) !important;
        top: 80px !important;
        z-index: 900 !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .menu-toggle-container.banner-hidden {
        top: 20px !important;
    }

    .menu-toggle {
        display: flex !important;
        padding: 10px !important;
        border-radius: 4px !important;
    }

    .menu-toggle svg {
        width: 28px !important;
        height: 28px !important;
        stroke: white !important;
        stroke-width: 2.5 !important;
    }

    .sticky-navbar {
        padding: 10px var(--content-right) 10px var(--content-left);
    }

    .sticky-navbar img {
        height: 45px;
    }

    .sticky-navbar .nav-right {
        gap: 12px;
    }

    .sticky-navbar .consultation-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .dropdown-header {
        padding: 12px var(--content-right) 12px var(--content-left);
    }

    .dropdown-logo img {
        height: 45px;
    }

    .dropdown-consultation-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .dropdown-container {
        margin: 0 15px;
        padding: 30px 15px;
    }

    .dropdown-content {
        gap: 0;
    }

    .dropdown-section-wrapper {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .dropdown-section-wrapper:last-child {
        border-bottom: none;
    }

    .dropdown-section-title {
        font-size: 18px;
        margin-bottom: 0;
        padding: 10px 0;
        cursor: pointer;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
        transition: all 0.3s ease;
    }

    .dropdown-section-title:hover {
        opacity: 0.8;
    }

    .dropdown-section-title::after {
        content: '›';
        font-size: 28px;
        font-weight: 300;
        transform: rotate(90deg);
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .dropdown-section-wrapper.active .dropdown-section-title::after {
        transform: rotate(-90deg);
    }

    .dropdown-items-grid {
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 12px;
        animation: slideDownMobile 0.3s ease-out;
    }

    .dropdown-section-wrapper.active .dropdown-items-grid {
        display: grid;
    }

    @keyframes slideDownMobile {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown-item {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-item:first-child {
        border-top: none;
    }

    .dropdown-item a {
        font-size: 15px;
        padding: 14px 0;
        padding-left: 16px;
        display: block;
        transition: all 0.2s ease;
    }

    .dropdown-item a:hover {
        opacity: 1;
        padding-left: 24px;
        background: rgba(255, 255, 255, 0.05);
    }

    .social-links {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-section {
        min-height: 400px;
        height: 80vh;
    }

    .hero-content {
        padding: 0 var(--content-left);
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-cta-btn {
        padding: 12px 32px;
        font-size: 14px;
    }

   

    .roadmap-section {
        padding: 60px 0;
    }

    .roadmap-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .roadmap-title {
        font-size: 32px;
    }

    .roadmap-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .roadmap-image {
        order: -1;
    }

    .foundation-banner {
        padding: 40px 0;
    }

    .foundation-banner h2 {
        font-size: 32px;
        padding: 0 var(--content-left);
    }

    .foundation-item {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .foundation-content {
        padding: 50px var(--content-left) 50px var(--content-left) !important;
        order: 2 !important;
    }

    .foundation-image {
        order: 1 !important;
        height: 400px;
    }

    .foundation-content h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .foundation-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .foundation-content li {
        font-size: 16px;
        margin-bottom: 16px;
        padding-left: 28px;
    }

    .foundation-content li::before {
        font-size: 20px;
    }

    .change-enablement-section {
        padding: 60px 0;
    }

    .change-enablement-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .change-enablement-image {
        order: -1;
    }

    .change-enablement-content {
        gap: 20px;
    }

    .change-enablement-content h2 {
        font-size: 28px;
    }

    .change-enablement-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    .what-we-offer-section {
        padding: 60px 0;
    }

    .what-we-offer-header h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .what-we-offer-header .subtitle {
        font-size: 16px;
    }

    .services-grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-image-wrapper {
        height: 300px;
    }

    .service-overlay {
        padding: 25px;
    }

    .service-icon {
        top: 25px;
        right: 25px;
        width: 44px;
        height: 44px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-description {
        font-size: 14px;
        max-height: none;
        opacity: 1;
        margin-top: 8px;
    }

    .cta-banner-section {
        padding: 40px 0;
    }

    .cta-banner-content {
        flex-direction: column;
        gap: 20px;
    }

    .cta-banner-text h2 {
        font-size: 24px;
    }

    .cta-banner-text p {
        font-size: 16px;
    }

    .cta-banner-btn {
        width: 100%;
        text-align: center;
    }

    .footer-section {
        padding: 60px 0 0 0;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .footer-column h3 {
        font-size: 20px;
    }

    .footer-column ul li a {
        font-size: 14px;
    }

    .footer-bottom {
        padding: 25px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding: 0 15px;
    }

    .footer-logo {
        order: 1;
        text-align: center;
    }

    .footer-logo img {
        height: 55px;
    }

    .footer-copyright {
        order: 2;
        font-size: 14px;
        text-align: center;
    }

    .footer-search {
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    .footer-search input {
        padding: 12px 16px;
        font-size: 14px;
        border: 1px solid #e0e0e0;
    }

    .footer-search button {
        padding: 12px 24px;
        font-size: 16px;
        min-width: 60px;
    }

    .footer-links-content {
        flex-direction: column;
        gap: 12px;
    }

    .footer-links-separator {
        display: none;
    }
}

/* ========== SMALL MOBILE DEVICES ========== */
@media (max-width: 480px) {
    :root {
        --content-left: 15px;
        --content-right: 15px;
    }

    .challenges-container,
    .roadmap-container,
    .change-enablement-container,
    .content-container {
        padding-left: var(--content-left) !important;
        padding-right: var(--content-right) !important;
    }

    .foundation-content,
    .foundation-item:nth-child(odd) .foundation-content,
    .foundation-item:nth-child(even) .foundation-content {
        padding-left: var(--content-left) !important;
        padding-right: var(--content-left) !important;
    }

    .dropdown-container {
        margin-left: var(--content-left);
        margin-right: var(--content-right);
    }

    .foundation-banner h2 {
        padding-left: var(--content-left);
        padding-right: var(--content-right);
    }

    .webinar-banner {
        padding: 8px 10px;
    }

    .webinar-text {
        font-size: 11px;
    }

    .watch-btn {
        padding: 7px 16px;
        font-size: 11px;
    }

    .logo-container {
        top: 100px !important;
    }

    .logo-container.banner-hidden {
        top: 35px !important;
    }

    .logo-container img {
        height: 38px !important;
    }

    .menu-toggle-container {
        top: 90px !important;
    }

    .menu-toggle-container.banner-hidden {
        top: 35px !important;
    }

    .menu-toggle svg {
        width: 24px !important;
        height: 24px !important;
    }

    .sticky-navbar {
        padding: 8px var(--content-right) 8px var(--content-left);
    }

    .sticky-navbar img {
        height: 38px;
    }

    .sticky-navbar .consultation-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .dropdown-header {
        padding: 10px var(--content-right) 10px var(--content-left);
    }

    .dropdown-logo img {
        height: 38px;
    }

    .dropdown-right {
        gap: 10px;
    }

    .dropdown-consultation-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .close-menu svg {
        width: 22px;
        height: 22px;
    }

    .dropdown-content {
        gap: 25px;
    }

    .dropdown-container {
        margin: 0 12px;
        padding: 25px 12px;
    }

    .dropdown-section-title {
        font-size: 16px;
        padding: 3px 0;
    }

    .dropdown-section-title::after {
        font-size: 24px;
    }

    .dropdown-item a {
        font-size: 14px;
        padding: 12px 0;
        padding-left: 12px;
    }

    .dropdown-item a:hover {
        padding-left: 20px;
    }

    .hero-section {
        min-height: 450px;
    }

    .hero-content {
        padding: 0 var(--content-left);
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-cta-btn {
        padding: 10px 28px;
        font-size: 13px;
    }

   

    .roadmap-section {
        padding: 40px 0;
    }

    .roadmap-content {
        gap: 30px;
    }

    .roadmap-title {
        font-size: 26px;
    }

    .roadmap-description {
        font-size: 15px;
        line-height: 1.5;
    }

    .foundation-banner {
        padding: 30px 0;
    }

    .foundation-banner h2 {
        font-size: 26px;
    }

    .foundation-content {
        padding: 40px var(--content-left) 40px var(--content-left) !important;
    }

    .foundation-image {
        height: 300px;
    }

    .foundation-content h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .foundation-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .foundation-content li {
        font-size: 15px;
        margin-bottom: 14px;
        padding-left: 26px;
    }

    .change-enablement-section {
        padding: 40px 0;
    }

    .change-enablement-container {
        gap: 30px;
    }

    .change-enablement-content h2 {
        font-size: 24px;
    }

    .change-enablement-content p {
        font-size: 15px;
        line-height: 1.5;
    }

    .service-image-wrapper {
        height: 280px;
    }

    .what-we-offer-header h2 {
        font-size: 24px;
    }

    .service-overlay {
        padding: 20px;
    }

    .service-icon {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .service-icon svg {
        width: 20px;
        height: 20px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 13px;
    }

    .cta-banner-text h2 {
        font-size: 22px;
    }

    .cta-banner-text p {
        font-size: 15px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-content {
        gap: 14px;
        padding: 0 8px;
    }

    .footer-logo img {
        height: 45px;
    }

    .footer-copyright {
        font-size: 12px;
        padding: 0 5px;
        line-height: 1.4;
    }

    .footer-search input {
        padding: 10px 10px;
        font-size: 12px;
    }

    .footer-search button {
        padding: 10px 16px;
        font-size: 15px;
        min-width: 48px;
    }
}
@media(max-width:375){
           /* Footer */
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-content {
        gap: 14px;
        padding: 0 8px;
    }

    .footer-logo img {
        height: 45px;
    }

    .footer-copyright {
        font-size: 12px;
        padding: 0 5px;
        line-height: 1.4;
    }

    .footer-search {
        width: 100%;
        max-width: 100%;
    }

    .footer-search input {
        padding: 10px 10px;
        font-size: 12px;
        border: 1px solid #e0e0e0;
    }

    .footer-search button {
        padding: 10px 16px;
        font-size: 15px;
        min-width: 48px;
    }
}
/* ========== VERY SMALL SCREENS (360px and below) ========== */
@media (max-width: 360px) {
    .footer-bottom-content {
        padding: 0 5px;
    }

    .footer-search input {
        padding: 9px 8px;
        font-size: 11px;
    }

    .footer-search button {
        padding: 9px 14px;
        font-size: 14px;
        min-width: 46px;
    }

    .footer-copyright {
        font-size: 11px;
    }

    .footer-logo img {
        height: 42px;
    }
}