* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --content-left: 100px;
    --content-right: 100px;
    --primary-gradient: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    --primary-dark: #050714;
    --primary-medium: #0B2A3D;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* ========== CONTENT CONTAINER ========== */
.content-container {
    padding-left: var(--content-left);
    padding-right: var(--content-right);
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
}

/* ========== WEBINAR BANNER ========== */
.webinar-banner {
    position: fixed;
    height: 7%;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-gradient);
    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: var(--primary-dark);
    border: none;
    border-bottom: 2px solid var(--primary-dark);
    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: var(--primary-dark);
    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: var(--primary-dark);
    border-top: 0.4px solid var(--primary-dark);
    border-left: 1px solid var(--primary-dark);
    border-right: 1px solid var(--primary-dark);
    border-bottom: 3px solid var(--primary-dark);
    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: var(--primary-dark);
    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: var(--primary-gradient);
    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: var(--primary-gradient);
    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: var(--primary-dark);
    border: none;
    border-bottom: 3px solid var(--primary-dark);
    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: var(--primary-dark);
    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 ========== */
.hero-section {
    position: relative;
    width: 100%;
    height: 700px;
    min-height: 500px;
    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; /* This will fill 100% width - may crop top/bottom */
    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: 1400px;
    width: 100%;
    padding: 0 var(--content-left);
    text-align: center;
    color: white;
}

.hero-content .digital-strategy-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: center;
}

.hero-content .digital-strategy-description {
    font-size: 18px;
    line-height: 1.7;
    color: white;
    margin-bottom: 45px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-content .digital-strategy-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* ========== BREADCRUMB SECTION ========== */
.breadcrumb-section {
    background: white;
    padding: 28px 0;
    position: relative;
    z-index: 2;
}

.breadcrumb-container {
    padding-left: var(--content-left);
    padding-right: var(--content-right);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #666;
    font-weight: 400;
}

.breadcrumb-current {
    color: #333;
    font-weight: 400;
}

.content-section {
    background: white;
    position: relative;
    z-index: 2;
}
/* Key Obstacles Section */
.row {
    max-width: 1430px;
    margin: 0 auto;
    padding: 18px 24px;
}

.row .content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.row .content p {
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
    margin: 0;
    max-width: 1430px;
}

.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    align-items: center;
    gap: 0;
}

.content-image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.content-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    padding-left: 7.5%;
    padding-right: 100px;
}

.content-text-right {
    padding: 60px 80px;
    padding-left: 80px;
    padding-right: calc(100px + 7.5% - 80px);
}

.content-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
    line-height: 1.3;
}

.content-text p {
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 35px;
}

.talk-to-expert {
    display: inline-block;
    width: 220px;
    color: #050714;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 2px solid #050714;
    padding: 12px 30px;
    padding-bottom: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.talk-to-expert::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.talk-to-expert:hover {
    color: white;
    border-bottom-color: #050714;
}

.talk-to-expert:hover::before {
    height: 100%;
}


/* ========== TRANSFORM YOUR VISION SECTION ========== */
.transform-vision-section {
    background: #F5F7FA;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.transform-vision-container {
    padding-left: var(--content-left);
    padding-right: var(--content-right);
    max-width: 1400px;
    margin: 0 auto;
}

.transform-vision-heading {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 70px;
    line-height: 1.2;
}

.transform-vision-content {
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 80px;
    align-items: center;
}

.transform-vision-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.transform-vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.transform-vision-image:hover img {
    transform: scale(1.05);
}

.transform-vision-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.transform-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
}

.transform-intro strong {
    font-weight: 700;
    color: #222;
}

.transform-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* ========== WHAT WE OFFER SECTION ========== */
.what-we-offer-section {
    background: white;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.what-we-offer-container {
    padding-left: var(--content-left);
    padding-right: var(--content-right);
    max-width: 1400px;
    margin: 0 auto;
}

.what-we-offer-heading {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.what-we-offer-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 70px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 45px 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
    transform: translateY(-8px);
    border-color: var(--primary-dark);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #F2F6F8 0%, #E9F0F4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-gradient);
    transform: scale(1.1);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    stroke: #0B2A3D;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon svg {
    stroke: white;
}

.service-title {
    font-size: 21px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-dark);
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* ========== OUR APPROACH SECTION ========== */
.our-approach-section {
    background: #F5F7FA;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.our-approach-container {
    padding-left: var(--content-left);
    padding-right: var(--content-right);
    max-width: 1400px;
    margin: 0 auto;
}

.our-approach-heading {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.our-approach-subtitle {
    font-size: 19px;
    color: #666;
    text-align: center;
    margin-bottom: 70px;
    line-height: 1.6;
}

.approach-content {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 80px;
    align-items: start;
}

/* Timeline Styles */
.approach-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 30px;
    position: relative;
    padding-bottom: 50px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 60px;
    width: 2px;
    height: calc(100% - 10px);
    background: linear-gradient(180deg, #0B2A3D 0%, rgba(11, 42, 61, 0.3) 100%);
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.timeline-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(5, 7, 20, 0.25);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(5, 7, 20, 0.35);
}

.timeline-content {
    padding-top: 5px;
}

.timeline-title {
    font-size: 23px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-title {
    color: var(--primary-dark);
}

.timeline-description {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

/* Approach Image */
.approach-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 100px;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.approach-image:hover img {
    transform: scale(1.05);
}

/* ========== BUTTONS ========== */
.btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--primary-dark);
    color: white;
    border-bottom: 3px solid var(--primary-dark);
}

.btn-primary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: white;
    transition: height 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: #050714;
}

.btn-primary:hover::before {
    height: 100%;
}

.btn-secondary {
    background: white;
    color: var(--primary-dark);
    border-bottom: 2px solid white;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: white;
}

.btn-secondary:hover::before {
    height: 100%;
}

/* ========== 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-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;
}

.social-icon:hover {
    background: #050714;
    color: white;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.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;
}

@media (max-width: 1400px) {
    .content-row {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .content-image-wrapper {
        height: 450px;
    }

    .content-text,
    .content-text-right {
        padding: 50px 60px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .content-text h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .content-text p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .blue-section h2 {
        font-size: 26px;
    }
}

/* ========== TABLET RESPONSIVE ========== */
@media (max-width: 1024px) {
    :root {
        --content-left: 60px;
        --content-right: 60px;
    }

    .content-container {
        padding-left: var(--content-left);
        padding-right: var(--content-right);
    }

    .logo-container {
        top: 75px;
    }

    .logo-container.banner-hidden {
        top: 45px;
    }

    .menu-toggle-container {
        top: 80px;
    }

    .menu-toggle-container.banner-hidden {
        top: 50px;
    }

    .hero-section {
        height: 75vh;
        min-height: 600px;
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero-content .digital-strategy-title {
        font-size: 52px;
        margin-bottom: 25px;
    }

    .hero-content .digital-strategy-description {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .hero-content .digital-strategy-buttons {
        gap: 20px;
    }

    .btn {
        padding: 14px 35px;
        font-size: 15px;
    }

    .transform-vision-section {
        padding: 80px 0;
    }

    .transform-vision-heading {
        font-size: 42px;
        margin-bottom: 60px;
    }

    .transform-vision-content {
        gap: 60px;
    }

    .transform-intro {
        font-size: 19px;
    }

    .transform-description {
        font-size: 17px;
    }
     /* Content rows - image first on mobile */
    .content-row {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .content-row > div:has(img),
    .content-row > div:has(.content-image),
    .content-row > .content-image-wrapper {
        order: 1;
    }

    .content-row > div:has(.content-text),
    .content-row .content-text,
    .content-row .content-text-right {
        order: 2;
    }

    .content-image-wrapper {
        height: 300px;
    }

    .content-text,
    .content-text-right {
        padding: 40px 30px;
    }

    .content-text h2 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .content-text p {
        font-size: 16px;
        margin-bottom: 24px;
    }


    .what-we-offer-section {
        padding: 80px 0;
    }

    .what-we-offer-heading {
        font-size: 42px;
        margin-bottom: 18px;
    }

    .what-we-offer-subtitle {
        font-size: 18px;
        margin-bottom: 60px;
    }

    .services-grid {
        gap: 30px;
    }

    .service-card {
        padding: 40px 30px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 24px;
    }

    .service-icon svg {
        width: 32px;
        height: 32px;
    }

    .service-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .service-description {
        font-size: 15px;
    }

    .our-approach-section {
        padding: 80px 0;
    }

    .our-approach-heading {
        font-size: 42px;
        margin-bottom: 18px;
    }

    .our-approach-subtitle {
        font-size: 18px;
        margin-bottom: 60px;
    }

    .approach-content {
        gap: 60px;
    }

    .timeline-number {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .timeline-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .timeline-description {
        font-size: 16px;
    }

    .approach-image {
        min-height: 500px;
    }

    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner-text h2 {
        font-size: 28px;
    }

    .cta-banner-text p {
        font-size: 17px;
    }

    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    :root {
        --content-left: 20px;
        --content-right: 20px;
    }

    .content-container {
        padding-left: var(--content-left);
        padding-right: var(--content-right);
    }

    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .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: 500px;
        height: 70vh;
    }

    .hero-content {
        padding: 0 var(--content-left);
        padding-top: 40px;
    }

    .hero-content .digital-strategy-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero-content .digital-strategy-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 35px;
    }

    .hero-content .digital-strategy-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
        font-size: 15px;
    }

    .breadcrumb-section {
        padding: 20px 0;
    }

    .breadcrumb {
        font-size: 14px;
        gap: 8px;
    }
     .row {
        padding: 32px 16px;
    }

    .row .content h2 {
        font-size: 22px;
    }

    .row .content p {
        font-size: 15px;
    }

    .content-row {
        display: flex;
        flex-direction: column;
    }

    .content-image-wrapper {
        height: 250px;
    }

    .content-text,
    .content-text-right {
        padding: 30px 20px;
    }

    .content-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .content-text p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .talk-to-expert {
        width: 200px;
        padding: 10px 24px;
        font-size: 15px;
    }


    .transform-vision-section {
        padding: 60px 0;
    }

    .transform-vision-heading {
        font-size: 32px;
        margin-bottom: 40px;
        line-height: 1.3;
    }

    .transform-vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .transform-vision-image {
        order: -1;
        border-radius: 8px;
    }

    .transform-vision-text {
        gap: 20px;
    }

    .transform-intro {
        font-size: 17px;
        line-height: 1.7;
    }

    .transform-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .what-we-offer-section {
        padding: 60px 0;
    }

    .what-we-offer-heading {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .what-we-offer-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 35px 28px;
    }

    .service-card:hover {
        transform: translateY(-4px);
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 22px;
    }

    .service-icon svg {
        width: 30px;
        height: 30px;
    }

    .service-title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .service-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .our-approach-section {
        padding: 60px 0;
    }

    .our-approach-heading {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .our-approach-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .approach-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .approach-timeline {
        order: 2;
    }

    .approach-image {
        order: 1;
        min-height: 400px;
        position: relative;
        top: 0;
        border-radius: 8px;
    }

    .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 20px;
        padding-bottom: 40px;
    }

    .timeline-item:not(:last-child)::before {
        left: 24px;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .timeline-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .timeline-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .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%;
    }

    .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-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;
    }

    .content-container {
        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-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: 520px;
        height: 65vh;
    }

    .hero-content {
        padding-top: 160px;
    }

    .hero-content .digital-strategy-title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .hero-content .digital-strategy-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .breadcrumb-section {
        padding: 15px 0;
    }

    .breadcrumb {
        font-size: 13px;
        gap: 6px;
    }
    .row {
        padding: 24px 12px;
    }

    .row .content h2 {
        font-size: 20px;
    }

    .row .content p {
        font-size: 14px;
        line-height: 1.6;
    }
    .content-image-wrapper {
        height: 220px;
    }

    .content-text,
    .content-text-right {
        padding: 25px 15px;
    }

    .content-text h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .content-text p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .transform-vision-section {
        padding: 50px 0;
    }

    .transform-vision-heading {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .transform-vision-content {
        gap: 35px;
    }

    .transform-vision-image {
        border-radius: 6px;
    }

    .transform-intro {
        font-size: 16px;
        line-height: 1.6;
    }

    .transform-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .what-we-offer-section {
        padding: 50px 0;
    }

    .what-we-offer-heading {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .what-we-offer-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .services-grid {
        gap: 25px;
    }

    .service-card {
        padding: 30px 24px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 20px;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }

    .service-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .service-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .our-approach-section {
        padding: 50px 0;
    }

    .our-approach-heading {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .our-approach-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .approach-content {
        gap: 40px;
    }

    .approach-image {
        min-height: 350px;
    }

    .timeline-item {
        grid-template-columns: 45px 1fr;
        gap: 18px;
        padding-bottom: 35px;
    }

    .timeline-item:not(:last-child)::before {
        left: 21px;
    }

    .timeline-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .timeline-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .timeline-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .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: 25px 0;
    }

    .footer-bottom-content {
        gap: 16px;
        padding: 0 10px;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-copyright {
        font-size: 13px;
        padding: 0 10px;
        line-height: 1.4;
    }

    .footer-search input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .footer-search button {
        padding: 10px 18px;
        font-size: 16px;
        min-width: 52px;
    }
}

@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;
    }
}