body {
    background-color: #030B16;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dragging {
    user-select: none !important;
}

body.dragging .clients-say-carousel-track,
body.dragging .clients-say-carousel-track * {
    user-select: none !important;
    -webkit-user-select: none !important;
    -ms-user-select: none !important;
}

body.page-transition {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(3px);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter Tight', sans-serif;
    color: #FFFFFF;
}

/* Add styles for specific elements based on Figma data */

.navbar {
    background-color: rgba(11, 41, 81, 0.4);
    max-width: 1240px;
    height: 80px;
    border-radius: 105px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 15px;
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1000;
}

/* Specific navbar background for portfolio-inner and blog-inner pages */
.portfolio-inner-page .navbar,
.blog-inner-page .navbar {
    background-color: rgb(3 11 22 / 90%);
}

.navbar-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    width: 119.64px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.navigation li {
    display: flex;
    align-items: center;
    gap: 24px;
}

.navigation a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    text-transform: titlecase;
    color: #FFFFFF;
    text-decoration: none;
}

.navigation li:not(:last-child)::after {
    content: '';
    width: 0;
    height: 11.31px;
    border-left: 1px solid #2D455E;
}

/* Navbar link hover */
.navigation a:hover {
    color: #A8B6C6;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 0;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video background styles */
.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

/* Fallback image handling */
.hero-background video + img {
    display: none;
}

/* Show fallback image if video fails or is not supported */
.hero-background video:not([src]) + img,
.hero-background video[src=""] + img {
    display: block;
}

/* Respect user's reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero-background video {
        display: none;
    }
    .hero-background img {
        display: block !important;
    }
}

/* Mobile optimization for video */
@media (max-width: 768px) {
    .hero-background video {
        object-fit: cover;
        object-position: center center;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    max-width: 820px;
    margin: 331px auto 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    max-width: 820px;
    margin: 331px auto 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.hero-text h1 {
    font-size: 62px;
    font-weight: 700;
    line-height: 1.21;
    text-transform: uppercase;
    margin: 0;
}

.hero-text .unforgettable-word {
    font-weight: 700;
}

.hero-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    color: #96C2FB;
    margin: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero buttons default desktop styles - will be overridden for mobile/tablet */
.hero-buttons .main-button,
.hero-buttons .button-stroke {
    padding: 15px 21px;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
    min-width: 200px;
    height: auto;
    white-space: nowrap;
    border-radius: 48px;
    transition: all 0.3s ease;
}

/* Universal Primary Button - Sky Blue Filled */
.main-button,
.primary-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 21px;
    border-radius: 48px;
    background-color: #0C6AE3;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.21;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content; /* Figma: horizontal: hug */
    height: fit-content; /* Figma: vertical: hug */
    white-space: nowrap;
    text-decoration: none;
}

/* Universal Primary Button Hover */
.main-button:hover,
.primary-button:hover {
    background-color: #125CBA;
    text-decoration: none;
}

.button-stroke {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 21px;
    border-radius: 48px;
    background-color: rgba(12, 106, 227, 0);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.21;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    cursor: pointer;
    text-decoration: none;
}

/* Button stroke hover */
.button-stroke:hover {
    background-color: rgba(12, 106, 227, 0.1);
    text-decoration: none;
}

/* Portfolio banner button hover */
.portfolio-cta-section .button-stroke {
    transition: background 0.2s, color 0.2s;
}

.portfolio-cta-section .button-stroke:hover {
    background: #fff;
    color: #2386EC;
    text-decoration: none;
}

.core-offerings-section {
    background-color: #071221;
    width: 100%;
    margin: 0 auto;
    padding: 100px 100px 100px;
    box-sizing: border-box;
}

.core-offerings-container {
    display: flex;
    flex-direction: column;
    gap: 105px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    box-sizing: border-box;
}

.core-offerings-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1239.67px;
    margin: 0 auto;
    justify-content: center;
}

.core-offerings-header h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.21;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    width: auto;
    flex-shrink: 0;
}

.line {
    width: 100%;
    height: 0;
    border-top: 1.5px solid #0C6AE3;
    flex-grow: 1;
}

.offering-cards-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.offering-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 22px;
    border-radius: 32px;
    border: 2px solid #0C6AE3;
    width: calc(33.33% - 24px);
    max-width: 397.15px;
    box-sizing: border-box;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    background: none;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
    color: inherit;
}

.offering-card .card-icon,
.offering-card .card-icon-hover {
    display: flex;
    justify-content: center;
    align-items: center;
}

.offering-card .card-icon {
    width: 40px;
    height: 36.97px;
    border-radius: 16px;
    margin-right: 12px;
}

.offering-card .card-icon-hover {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0C6AE3;
    position: absolute;
    right: 22px;
    top: 22px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.offering-card:hover .card-icon-hover {
    opacity: 1;
    pointer-events: auto;
}

.offering-card .card-icon-hover img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Specific styling for card-content within offering cards */
.offering-card .card-content {
    padding: 0px;
}

.card-content h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.21;
    text-transform: uppercase;
    margin: 0;
}

.card-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    color: #96C2FB;
    margin: 0;
}

/* Offer card hover */
.offering-card:hover {
    background: rgba(12, 106, 227, 0.1);
}

.case-studies-section {
    background-color: #030B16;
    width: 100%;
    padding: 148px 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.case-studies-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.case-studies-carousel {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.carousel-images {
    width: 626px;
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Ensure mobile carousel is hidden on desktop */
@media (min-width: 769px) {
    .carousel-mobile-only {
        display: none !important;
    }
    
    .carousel-images {
        display: flex !important;
    }
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
    padding-left: 0px;
}

.carousel-img {
    width: 610px;
    height: 400px;
    object-fit: cover;
    border-radius: 32px;
    margin-right: 16px;
    box-shadow: 0 0 24px rgba(0,0,0,0.2);
    transition: box-shadow 0.3s;
    z-index: 1;
}

.carousel-img:last-child {
    margin-right: 0;
}

.carousel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-text {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 35%;
    max-width: 382px;
    flex-grow: 0;
    flex-shrink: 0;
    align-items: flex-start;
    order: 0;
}

.carousel-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.carousel-title-subtitle {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.carousel-title-subtitle h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.21;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
}

.carousel-title-subtitle p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    color: #96C2FB;
    margin: 0;
    text-align: left;
}

.carousel-pagination-arrows {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.carousel-pagination {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
    width: 80px;
    min-width: 80px;
    text-align: center;
    display: inline-block;
}

.carousel-arrows {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.carousel-arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    padding: 0;
}

.carousel-arrows button img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Carousel arrows hover (example) */
.carousel-arrows button:hover {
    background-color: rgba(12, 106, 227, 0.1);
}

.case-title-button {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}

.case-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.case-text h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.21;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
}

.case-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    color: #96C2FB;
    margin: 0;
    text-align: left;
}

/* --- Carousel Testimonial Section (4 cards, peek, no fade, swipe only) --- */
.clients-say-section {
    background: #071221;
    padding: 120px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 80px;
}
.clients-say-carousel-track {
    display: flex;
    flex-direction: row;
    gap: 32px;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
    flex-wrap: nowrap;
}
.carousel-viewport {
    overflow: hidden;
    width: 1180px;
    max-width: 100%;
    margin: 0 auto;
}
.carousel-viewport:active, .carousel-viewport.dragging {
    cursor: grabbing;
}
.clients-say-card {
    flex: 0 0 auto;
    background: #111927;
    border-radius: 32px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    min-width: 340px;
    max-width: 340px;
    width: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 48px 40px 40px 40px;
    box-sizing: border-box;
    color: #B6C2E2;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.2s;
}
.clients-say-card.opener {
    background: #0C6AE3;
    color: #fff;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
}
.clients-say-card .quote-icon {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1;
}
.clients-say-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 32px;
    font-weight: 900;
    font-style: italic;
    margin: 0 0 8px 0;
    line-height: 1.1;
    letter-spacing: 0.5px;
    color: #fff;
}
.clients-say-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #E3F0FF;
}
.stars {
    display: flex;
    gap: 4px;
}
.stars .star {
    color: #FFD600;
    font-size: 28px;
}
.clients-say-card.testimonial {
    background: #030B16;
    color: #B6C2E2;
    gap: 32px;
    justify-content: space-between;
}
.clients-say-card .testimonial-quote {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #566984;
    line-height: 1.4;
}
.testimonial-client {
    display: flex;
    align-items: center;
    gap: 16px;
}
.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.client-name {
    font-weight: 700;
    color: #fff;
    font-size: 18px;
}
.client-title {
    font-size: 15px;
    color: #96C2FB;
}
/* Remove arrows and fade mask */
.carousel-arrow { display: none !important; }
.carousel-viewport::after { display: none !important; }
@media (max-width: 1300px) {
    .carousel-viewport {
        width: 95vw;
        min-width: 0;
    }
    .clients-say-card {
        min-width: 280px;
        max-width: 280px;
        width: 280px;
        padding: 32px 20px 28px 20px;
    }
}
@media (max-width: 900px) {
    .carousel-viewport {
        width: 100%;
        min-width: 0;
    }
    .carousel-track {
        gap: 16px;
    }
    .clients-say-card {
        min-width: 90vw;
        max-width: 90vw;
        width: 90vw;
        right: 0;
    }
}
/* --- End Carousel Testimonial Section --- */

.pagination-dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(12, 106, 227, 0.5);
}

.dot.active {
    background-color: #0C6AE3;
}

.logo-carousel-section {
    background-color: #030B16;
    width: 100%;
    min-width: 100%;
    height: 120px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.logo-carousel-container {
    overflow: hidden;
    width: 100%;
    min-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo-carousel-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
    align-items: center;
    gap: 112px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.logo-item {
    width: 150px;
    height: 150px;
    
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

footer {
    background-color: #010409;
    width: 100%;
    height: 400px;
    padding: 84px 99.5px;
    box-sizing: border-box;
    margin: 0;
}

.footer-container {
    display: flex;
    flex-direction: row;
    gap: 126px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-logo-description {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    max-width: 400px;
}

.footer-logo {
    width: 111px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-logo-description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    color: #96C2FB;
    margin: 0;
}

.footer-quick-links,
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 200px;
}

.footer-quick-links h4,
.footer-contact-info h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.21;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
}

.footer-quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-quick-links li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    color: #96C2FB;
}

.footer-quick-links a {
    color: #96C2FB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-quick-links a:hover {
    color: #FFFFFF;
}

.footer-contact-info p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    color: #96C2FB;
    margin: 0;
}

/* Why Oasis? Section Styles */
.why-oasis-section {
    background-color: #071221;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 50px;
    box-sizing: border-box;
    margin: 0;
}

.why-oasis-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.why-oasis-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1239.67px;
    margin: 0 auto;
    justify-content: center;
}

.why-oasis-header h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.21;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
    width: auto;
    flex-shrink: 0;
}

.why-oasis-features {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    width: 100%;
    max-width: 1240px;
}

.feature-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: calc(25% - 24px);
    max-width: 295px;
    box-sizing: border-box;
    text-align: left;
    flex-grow: 1;
    flex-basis: 0;
}

.feature-icon {
    width: 58.11px;
    height: 58.11px;
    border-radius: 16px;
    background-color: rgba(12, 106, 227, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon img {
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.feature-text h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.21;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
}

.feature-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    color: #96C2FB;
    margin: 0;
}

.banner-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #030b16;
    padding-top: 88px;
    padding-bottom: 88px;
}

.banner-section-dark-bg {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #030b16;
    padding: 80px 0;
    padding-top: 0px;
}

.banner-container {
    background: #0C6AE3;
    border-radius: 32px;
    width: 100%;
    max-width: 1180px;
    min-height: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 63px 197px;
    box-sizing: border-box;
}

.banner-title {
    color: #fff;
    font-family: 'Inter Tight', sans-serif;
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
}

.banner-subtitle {
    color: #B6D3F7;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 32px 0;
    max-width: 700px;
    text-transform: none; /* Preserve original capitalization */
}

.banner-button {
    padding: 15px 21px;
    border-radius: 48px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-button:hover {
    background: #fff;
    color: #2386EC;
    text-decoration: none;
}

/* Card button hover */
.card-button:hover {
    background-color: #125CBA;
}

.stars-svg-placeholder {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    margin-top: 8px;
    margin-bottom: 8px;
    background: none;
    border-radius: 0;
    opacity: 1;
    width: auto;
    height: auto;
}
.star-svg {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.star-svg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* === ABOUT PAGE PIXEL-PERFECT STYLES (Figma MCP) === */

.about-header-section {
    position: relative;
    width: 100%;
    height: 600px;
    background: none;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.about-header-bg img,
.about-header-bg video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 600px;
    object-fit: cover;
    z-index: 0;
    pointer-events: none; /* Prevent video interaction */
}

/* Video-specific enhancements */
.about-header-bg video {
    background-color: #030B16; /* Fallback color while loading */
}

/* Accessibility: Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .about-header-bg video {
        display: none;
    }
    .about-header-bg img {
        display: block;
    }
}
/* Universal Page Header Content */
.page-header-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px 148px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

/* Blog Page Specific Header Content */
.blog-page .page-header-content.hero-text {
    padding: 0 100px 95px 100px;
}
/* Universal Page Header Tag */
.page-header-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px 10px;
    background: #0C6AE3;
    border-radius: 48px;
    box-sizing: border-box;
}
.tag-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tag-icon img {
    width: 24px;
    height: 24px;
    display: block;
}
.tag-text {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.21;
    text-align: left;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.about-header-title {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.21;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}
.about-header-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    color: #96C2FB;
    margin: 0;
    max-width: 820px;
}

.our-story-section {
    background: #030B16;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    height: 800px;
    position: relative;
}
.our-story-container {
    max-width: 1440px;
    margin: 100px auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.our-story-timeline {
    position: relative;
    width: 1239.67px;
    height: 594px;
    margin: 64px auto 0;
    margin-left: 100.17px;
}
.timeline-line {
    position: absolute;
    left: 620px;
    top: 0;
    width: 1.5px;
    height: 594px;
    background: #0C6AE3;
    z-index: 1;
}
.timeline-item {
    position: absolute;
    width: 397.15px;
    z-index: 2;
}
.timeline-item:nth-child(2) { /* 2017 */
    left: 159px;
    top: 58px;
}
.timeline-item:nth-child(3) { /* 2019 */
    left: 684px;
    top: 158px;
}
.timeline-item:nth-child(4) { /* 2021 */
    left: 159px;
    top: 258px;
}
.timeline-item:nth-child(5) { /* 2022 */
    left: 684px;
    top: 358px;
}
.timeline-item:nth-child(6) { /* 2023 */
    left: 159px;
    top: 458px;
}
.story-card {
    background: none;
    border: 2px solid #0C6AE3;
    border-radius: 32px;
    padding: 22px;
    width: 353.15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;
    position: relative;
    transition: background 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}
.story-card:hover {
    background: rgba(12, 106, 227, 0.1);
    border-color: rgba(12, 106, 227, 0.8);
}
.story-card .card-icon-hover {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0C6AE3;
    position: absolute;
    right: 22px;
    top: 22px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
}
.story-card:hover .card-icon-hover {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}
.story-year {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    line-height: 1.21;
    height: 19px;
    margin: 0;
    transition: color 0.3s ease;
}
.story-desc {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #96C2FB;
    line-height: 1.21;
    height: 57px;
    margin: 0;
    transition: color 0.3s ease;
}
.timeline-dot {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 612px;
    width: 16px;
    height: 16px;
}
.timeline-dot:nth-child(7) { /* 2017 - first dot after 5 timeline-items + 1 timeline-line */
    top: 114px;
}
.timeline-dot:nth-child(8) { /* 2019 */
    top: 214px;
}
.timeline-dot:nth-child(9) { /* 2021 */
    top: 314px;
}
.timeline-dot:nth-child(10) { /* 2022 */
    top: 414px;
}
.timeline-dot:nth-child(11) { /* 2023 */
    top: 514px;
}
.dot-outer {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0C6AE3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dot-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFFFFF;
}

.mission-values-section {
    background: #030B16;
    width: 100%;
    padding: 96px 100px 140px 100px;
    box-sizing: border-box;
}
.mission-values-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}
.mission-values-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #96C2FB;
    text-align: center;
    max-width: 820px;
    margin-bottom: 32px;
}
.values-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
}
.value-card {
    background: none;
    border: 2px solid #0C6AE3;
    border-radius: 32px;
    padding: 22px;
    width: 295px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    box-sizing: border-box;
    transition: background 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}
.value-card:hover {
    background: rgba(12, 106, 227, 0.1);
    border-color: rgba(12, 106, 227, 0.8);
}
.value-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}
.value-card:hover .value-icon {
    transform: scale(1.05);
}
.value-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}
.value-desc {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #96C2FB;
    line-height: 1.21;
    transition: color 0.3s ease;
}

/* === TEAM SNAPSHOTS SECTION (Figma MCP) === */

.team-snapshots-section {
    background: #071221;
    width: 100%;
    padding: 77px 100px;
    box-sizing: border-box;
}
.team-snapshots-container {
    max-width: 1239.83px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.team-quote {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #96C2FB;
    line-height: 1.21;
    text-align: center;
    margin: 0;
    max-width: 820px;
    align-self: center;
}
.team-cards-grid {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}
.team-card {
    width: 294.41px;
    height: 359.93px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 32px;
    overflow: hidden;
}
.team-card-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: #030B16;
    border-radius: 32px;
    overflow: hidden;
}
.team-image {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    z-index: 1;
    border-radius: 32px;
    overflow: hidden;
}
.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 32px;
}
.blue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0C6AE3;
    mix-blend-mode: color;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 32px;
}
.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 135px;
    height: auto;
    background: #0C6AE3;
    z-index: 3;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 16px 0 20px 0;
    box-sizing: border-box;
    border-radius: 0 0 32px 32px;
}
.team-info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 294px;
    min-height: 99px;
    height: auto;
    margin: 0 auto;
}
.team-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 251px;
    height: 41px;
}
.team-name {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
    width: 100%;
}
.team-position {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #96C2FB;
    margin: 0;
    text-align: left;
    width: 100%;
}
.team-divider {
    width: 100%;
    height: 1px;
    background: #2A80EE;
    margin: 0;
    border: none;
}
.team-description {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #96C2FB;
    line-height: 1.21;
    text-align: left;
    margin: 0;
    width: 251px;
    min-height: 38px;
}

/* HOVER EFFECTS */
.team-card:hover .blue-overlay {
    opacity: 0;
}
.team-card:hover .team-info {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1280px) {
    .team-cards-grid {
        flex-wrap: wrap;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .team-snapshots-section {
        padding: 60px 20px;
    }
    .team-cards-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    /* Force team images to be visible on mobile */
    .team-card {
        width: 100%;
        max-width: 350px;
        height: 400px;
        position: relative;
    }
    
    .team-card-frame {
        position: relative;
        width: 100%;
        height: 100%;
        background: #030B16;
        border-radius: 32px;
        overflow: hidden;
    }
    
    /* Mobile Team Cards - Simplified Structure */
    .team-card {
        width: 100%;
        max-width: 350px;
        height: 400px;
        position: relative;
        border-radius: 32px;
        overflow: hidden;
        background: #030B16;
        margin: 0 auto;
    }
    
    .team-card-frame {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 32px;
        overflow: hidden;
    }
    
    /* Force images to display on mobile */
    .team-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        border-radius: 32px;
        overflow: hidden;
    }
    
    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        border-radius: 32px;
    }
    
    /* Mobile: Make team info always visible at bottom */
    .team-info {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        min-height: 120px;
        background: rgba(12, 106, 227, 0.95);
        backdrop-filter: blur(10px);
        z-index: 3;
        opacity: 1;
        transform: translateY(0);
        border-radius: 0 0 32px 32px;
        padding: 16px 0;
    }
    
    .team-info-content {
        text-align: center;
        padding: 0 16px;
    }
    
    .team-name {
        font-size: 18px;
        color: #FFFFFF;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .team-position {
        font-size: 14px;
        color: #96C2FB;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .team-description {
        font-size: 14px;
        color: #96C2FB;
        line-height: 1.4;
        text-align: center;
        margin: 0;
    }
    
    /* Hide blue overlay on mobile */
    .blue-overlay {
        display: none;
    }
}

/* === PAGE TRANSITIONS - OPTION 2: SCALE + BLUR TRANSITION === */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #030B16 0%, #0B1A2E 100%);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.page-loader.active {
    opacity: 1;
    visibility: visible;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    animation: scaleIn 0.6s ease-out;
}

.loader-logo {
    width: 80px;
    height: 80px;
    animation: breathe 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(12, 106, 227, 0.5));
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(12, 106, 227, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px rgba(12, 106, 227, 0.8));
    }
}

.loading-text {
    color: #0C6AE3;
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Page transition states */
.page-enter {
    opacity: 0;
    transform: scale(1.05);
    filter: blur(3px);
}

.page-enter-active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-exit {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
}

.page-exit-active {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(3px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 
=== ALTERNATIVE TRANSITION STYLES ===
Uncomment one of these sections to try different effects:

// OPTION 2: SCALE + BLUR TRANSITION
body {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.page-transition {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(3px);
}

.page-enter {
    opacity: 0;
    transform: scale(1.05);
    filter: blur(3px);
}

.page-enter-active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-exit {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
}

.page-exit-active {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(3px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

// OPTION 3: VERTICAL SLIDE TRANSITION
body {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.page-transition {
    opacity: 0;
    transform: translateY(-30px);
}

.page-enter {
    opacity: 0;
    transform: translateY(50px);
}

.page-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-exit {
    opacity: 1;
    transform: translateY(0);
}

.page-exit-active {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

// OPTION 4: MODERN WIPE TRANSITION
body {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.page-transition {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
}

.page-enter {
    opacity: 1;
    clip-path: inset(0 0 0 100%);
}

.page-enter-active {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-exit {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

.page-exit-active {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
*/ 

/* Services Page Styles */
.services-hero {
    background: linear-gradient(180deg, rgba(3, 11, 22, 0.9) 0%, rgba(3, 11, 22, 0.8) 100%), url('assets/services-hero-bg.svg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 120px;
}

.services-hero .tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(12, 106, 227, 0.2);
    border: 1px solid #0C6AE3;
    border-radius: 24px;
    color: #96C2FB;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.services-hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-hero .hero-description {
    font-size: 18px;
    line-height: 1.5;
    color: #A8B6C6;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    padding: 80px 100px;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1240px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 22px;
    border-radius: 32px;
    border: 2px solid #0C6AE3;
    max-width: 397.15px;
    box-sizing: border-box;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    background: none;
    transition: border-color 0.2s, background 0.2s;
}

.service-card:hover {
    background: rgba(12, 106, 227, 0.1);
}

.service-card .card-icon-hover {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0C6AE3;
    position: absolute;
    right: 22px;
    top: 22px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card:hover .card-icon-hover {
    opacity: 1;
    pointer-events: auto;
}

.service-card .card-icon-hover img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-icon {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    object-fit: contain;
    pointer-events: none;
}
.service-card h3 {
    font-size: 24px;
    margin-bottom: 4px;
}

.service-card p {
    color: #A8B6C6;
    line-height: 1.5;
    margin-top: 0;
}

/* Methodology Section */
.methodology {
    padding: 80px 0;
    background: rgba(11, 41, 81, 0.1);
}

.methodology .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.methodology .section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.methodology .section-description {
    color: #96C2FB;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 48px;
    text-align: center;
    padding-top: 42px;
}

.methodology-steps {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.methodology-step {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-icon-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    transform: translate(-50%, -50%);
    object-fit: contain;
    pointer-events: none;
}
.methodology-step h3 {
    font-size: 24px;
    margin-bottom: 4px;
}

.methodology-step p {
    color: #A8B6C6;
    line-height: 1.5;
    margin-top: 0;
}

/* Service Deep Dives */
.service-deep-dives {
    padding: 100px 0;
}

.deep-dives-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 808px;
    margin: 0 auto;
    padding-top: 80px;
}

.deep-dive-item {
    background-color: #071221;
    border-radius: 13px;
    padding: 24px;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    transition: background-color 0.3s ease;
}

.deep-dive-item:hover {
    background-color: #081A32;
}

.deep-dive-item.active {
    background-color: rgba(12, 106, 227, 0.1);
}

.deep-dive-header {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.deep-dive-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.deep-dive-header h3 {
    font-size: 20px;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.deep-dive-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    align-self: center;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deep-dive-item.active .deep-dive-arrow {
    transform: rotate(180deg);
}

.deep-dive-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
    color: #96C2FB;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.deep-dive-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.detail-column h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.detail-column p {
    font-size: 14px;
    color: #96C2FB;
    margin: 0;
}

.inquire-btn {
    text-decoration: none;
    text-align: center;
    align-self: flex-end;
}

.deep-dive-item.active .deep-dive-content {
    max-height: 500px; /* Adjust as needed */
    padding: 24px;
}

.deep-dive-content ul {
    list-style-type: none;
    padding-left: 0;
}

.deep-dive-content li {
    margin-bottom: 8px;
}

/* Responsive Styles */
@media (max-width: 1280px) {
    .services-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .methodology-steps {
        flex-wrap: wrap;
    }
    
    .methodology-step {
        flex: 0 0 calc(33.33% - 16px);
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 36px;
    }
    
    .services-cards {
        grid-template-columns: 1fr;
    }
    
    .methodology-step {
        flex: 0 0 100%;
    }
    
    .deep-dive-header h3 {
        font-size: 18px;
    }
}

/* Portfolio Page Styles */






.portfolio-header-title {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.21;
    text-transform: uppercase;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    max-width: 100%;
}

.portfolio-header-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    text-transform: none; /* Preserve original capitalization */
    text-align: center;
    color: #96C2FB;
    margin: 0;
    max-width: 100%;
}

/* Portfolio Categories Section */
.portfolio-categories-section {
    padding: 60px 0;
    background-color: #030B16;
}

.portfolio-categories-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-filters {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 48px;
    background-color: rgba(12, 106, 227, 0);
    border: 1px solid #0C6AE3;
    color: #FFFFFF;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.21;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 31px;
}

.category-btn.active {
    background-color: #0C6AE3;
    color: #FFFFFF;
}

.category-btn:hover {
    background-color: #0C6AE3;
    color: #FFFFFF;
}

/* Portfolio Items Section */
.portfolio-items-section {
    padding: 60px 0;
    background-color: #030B16;
}

.portfolio-items-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.portfolio-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
    width: 100%;
}

.portfolio-card {
    width: calc((100% - 48px) / 3);
    background-color: #061325;
    border: 2px solid #0C6AE3;
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.3s ease, opacity 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: 580px; /* Fixed height for all cards */
}

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

.card-image-link {
    display: block;
    text-decoration: none;
    width: 100%;
    flex: 0 0 auto; /* Don't grow or shrink */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.card-image-link:hover {
    transform: scale(1.02);
}

.card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(12 106 227 / 0%) 0%, rgba(12, 106, 227, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .card-overlay {
    opacity: 1;
}

.card-button-hover {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background-color: #0C6AE3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-sizing: border-box;
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-height: 0; /* Allow flexbox shrinking */
    overflow: hidden; /* Prevent content overflow */
}

.card-tags {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.card-tags .tag {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 12px;
    border-radius: 48px;
    border: 1px solid #0C6AE3;
    background-color: rgba(12, 106, 227, 0);
    color: #FFFFFF;
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.21;
    height: 31px;
    box-sizing: border-box;
}

.card-info {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 8px;
    flex: 0 0 auto; /* Don't grow or shrink */
}

.card-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.21;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
}

.card-description {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-transform: none; /* Preserve original capitalization */
    color: #96C2FB;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    line-clamp: 3; /* Standard property for compatibility */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 67px; /* 3 lines × 1.4 line height × 16px font size ≈ 67px */
}

.card-results {
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: none; /* Preserve original capitalization */
    color: #0C6AE3;
    margin: 0;
    flex: 1; /* Take up available space */
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Limit to 4 lines max */
    line-clamp: 4; /* Standard property for compatibility */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 78px; /* 4 lines × 1.3 line height × 15px font size ≈ 78px */
}

.case-study-btn {
    gap: 10px;
    width: 100%;
    max-width: 355px;
    flex: 0 0 auto; /* Don't grow or shrink */
    margin-top: auto; /* Push to bottom */
}

/* Fix for anchor tags styled as case study buttons */
a.case-study-btn {
    text-decoration: none;
    display: flex;
    box-sizing: border-box;
}

/* Portfolio Pagination Section */
.portfolio-pagination-section {
    padding: 40px 0;
    background-color: #030B16;
}

.portfolio-pagination-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.pagination-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.pagination-arrow {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    background-color: rgba(12, 106, 227, 0);
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-arrow:hover {
    background-color: #0C6AE3;
    border-color: #0C6AE3;
}

.pagination-numbers {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.pagination-number {
    width: 48px;
    height: 48px;
    border-radius: 30px;
    background-color: rgba(12, 106, 227, 0);
    border: 1px solid #0C6AE3;
    color: #FFFFFF;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-number.active {
    background-color: #0C6AE3;
    color: #FFFFFF;
}

.pagination-number:hover {
    background-color: #0C6AE3;
    color: #FFFFFF;
}

/* Portfolio CTA Section */
.portfolio-cta-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #030B16;
    padding: 88px 0;
}

.portfolio-cta-container {
    background: #0C6AE3;
    border-radius: 32px;
    width: 100%;
    max-width: 1180px;
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 63px 197px;
    box-sizing: border-box;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    width: 100%;
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-width: 733px;
}

.cta-text h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.21;
    text-transform: uppercase;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.cta-text p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    color: #96C2FB;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1280px) {
    .portfolio-grid {
        gap: 20px;
    }
    
    .portfolio-card {
        width: calc((100% - 40px) / 3);
        height: 540px; /* Slightly smaller on tablet */
    }
    
    .portfolio-cta-container {
        margin: 0 40px;
        padding: 40px 100px;
    }
}

@media (max-width: 960px) {
    .portfolio-grid {
        gap: 16px;
    }
    
    .portfolio-card {
        width: calc((100% - 16px) / 2);
        height: 520px; /* Optimized for 2-column layout */
    }
    
    .card-content {
        padding: 25px;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .portfolio-header-title {
        font-size: 48px;
    }
    
    .portfolio-grid {
        gap: 16px;
    }
    
    .portfolio-card {
        width: 100%;
        height: 500px; /* Mobile single column */
    }
    
    .card-content {
        padding: 20px;
        gap: 16px;
    }
    
    .card-results {
        font-size: 14px;
        -webkit-line-clamp: 3; /* Less lines on mobile */
        line-clamp: 3; /* Standard property for compatibility */
        max-height: 55px; /* Adjusted for smaller font */
    }
    
    .category-filters {
        gap: 4px;
    }
    
    .category-btn {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .portfolio-cta-container {
        margin: 0 20px;
        padding: 32px 20px;
    }
    
    .cta-text h2 {
        font-size: 24px;
    }
    
    .pagination-wrapper {
        gap: 8px;
    }
    
    .pagination-arrow,
    .pagination-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
} 

/* Blog Styles */





.blog-header-title {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.21;
    text-transform: uppercase;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.blog-category-filters {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
}

.blog-category-btn {
    background-color: rgba(12, 106, 227, 0);
    border: 1px solid #FFFFFF;
    border-radius: 48px;
    padding: 15px 21px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.21;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-category-btn.active,
.blog-category-btn:hover {
    background-color: #0C6AE3;
    border-color: #0C6AE3;
}

.blog-header-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    text-transform: none; /* Preserve original capitalization */
    text-align: center;
    color: #96C2FB;
    margin: 0;
    max-width: 600px;
}

/* Blog Content Section */
.blog-content-section {
    width: 100%;
    background: #030B16;
    padding: 48px 0 120px;
}

.blog-content-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.blog-posts-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
    max-width: 836px;
}

.blog-post-card {
    display: flex;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.blog-post-card.search-hidden {
    display: none !important;
}

.blog-post-image {
    flex: 0 0 233px;
    width: 233px;
    height: 175px;
    border-radius: 32px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 571px; /* Figma: exact width from layout_8NLUEB */
    max-width: 571px;
}

.blog-post-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: stretch; /* Figma: alignSelf: stretch */
}

.blog-post-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px; /* Figma: fontSize: 16 */
    font-weight: 600; /* Figma: fontWeight: 600 */
    line-height: 1.21; /* Figma: lineHeight: 1.2099609375em */
    text-transform: uppercase; /* Figma: textCase: UPPER */
    color: #FFFFFF;
    margin: 0;
}

.blog-post-excerpt {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px; /* Figma: fontSize: 16 */
    font-weight: 400; /* Figma: fontWeight: 400 */
    line-height: 1.21; /* Figma: lineHeight: 1.2099609375em */
    text-transform: none; /* Preserve original capitalization */
    color: #96C2FB;
    margin: 0;
}

/* Blog Continue Button - Specific styling for blog context */
.blog-post-content .main-button {
    align-self: flex-start; /* Ensures button stays left-aligned and doesn't stretch */
    flex-shrink: 0; /* Prevents button from shrinking */
}

.blog-continue-btn {
    align-self: flex-start;
}

.blog-post-separator {
    width: 100%;
    height: 1px;
    background-color: #0B264C;
    margin: 0;
}

.blog-load-more {
    display: flex;
    justify-content: center;
    width: 100%;
}

.blog-load-more-btn {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    text-transform: title-case;
    text-align: center;
    color: #96C2FB;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-top: 16px;
}

.blog-load-more-btn:hover {
    color: #FFFFFF;
}

.blog-search-box {
    width: 100%;
    max-width: 836px;
    display: flex;
    justify-content: center;
}

.search-input-container {
    position: relative;
    width: 100%;
    background-color: #132031;
    border-radius: 32px;
    display: flex;
    align-items: center;
    padding: 18px 24px;
    gap: 16px;
    min-height: 52px;
    box-sizing: border-box;
}

.blog-search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.21;
    color: #96C2FB;
}

.blog-search-input::placeholder {
    color: #96C2FB;
}

.search-icon {
    flex: 0 0 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1280px) {
    .blog-content-container {
        gap: 32px;
    }
}

@media (max-width: 960px) {
    .blog-content-container {
        gap: 32px;
    }
    
    .blog-post-card {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .blog-post-image {
        flex: none;
        width: 100%;
        height: 240px;
    }
    
    .blog-continue-btn {
        align-self: center;
    }
}

@media (max-width: 768px) {
    /* Blog Page Header Mobile */
    .blog-page .page-header-content.hero-text {
        padding: 0 20px 60px 20px;
    }
    
    .blog-page .about-header-section {
        height: 500px;
    }
    
    .blog-header-title {
        font-size: 48px;
    }
    
    .blog-category-filters {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 12px;
        margin: 20px 0 0 0;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 20px;
        margin-left: -20px;
        margin-right: -20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .blog-category-filters::-webkit-scrollbar {
        display: none;
    }
    
    .blog-category-btn {
        font-size: 14px;
        padding: 12px 18px;
        flex: 0 0 auto;
        min-width: fit-content;
        white-space: nowrap;
    }
    
    .blog-content-section {
        padding: 32px 0 80px;
    }
    
    .blog-content-container {
        padding: 0 20px;
    }
    
    .blog-posts-list {
        gap: 32px;
    }
    
    .blog-post-card {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .blog-post-image {
        flex: none;
        width: 100%;
        height: 200px;
    }
    
    .blog-post-content {
        width: 100%;
        max-width: 100%;
        gap: 20px;
    }
    
    .blog-post-title {
        font-size: 18px;
        line-height: 1.3;
        text-align: left;
    }
    
    .blog-post-excerpt {
        font-size: 14px;
        line-height: 1.4;
        text-align: left;
    }
    
    .blog-post-content .main-button {
        width: 100%;
        max-width: 280px;
        align-self: flex-start;
    }
    
    .search-input-container {
        padding: 14px 20px;
        min-height: 44px;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    /* Blog Page Header Small Mobile */
    .blog-page .page-header-content.hero-text {
        padding: 0 15px 50px 15px;
        gap: 16px;
    }
    
    .blog-page .about-header-section {
        height: 450px;
    }
    
    .page-header-content {
        gap: 12px;
    }
    
    .blog-header-title {
        font-size: 36px;
    }
    
    .blog-category-filters {
        gap: 10px;
        margin: 16px 0 0 0;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 15px;
        margin-left: -15px;
        margin-right: -15px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .blog-category-filters::-webkit-scrollbar {
        display: none;
    }
    
    .blog-category-btn {
        font-size: 12px;
        padding: 10px 16px;
        flex: 0 0 auto;
        min-width: fit-content;
        white-space: nowrap;
    }
    
    .blog-content-container {
        padding: 0 15px;
    }
    
    .blog-post-card {
        gap: 12px;
    }
    
    .blog-post-image {
        height: 180px;
    }
    
    .blog-post-content {
        gap: 16px;
    }
    
    .blog-post-title {
        font-size: 16px;
        text-align: left;
    }
    
    .blog-post-excerpt {
        font-size: 13px;
        text-align: left;
    }
    
    .blog-post-content .main-button {
        width: 100%;
        max-width: 100%;
        font-size: 14px;
        padding: 14px 20px;
    }
    
    .search-input-container {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .blog-post-separator {
        margin: 16px 0;
    }
} 

/* Portfolio Inner Page Styles */
.portfolio-featured-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-top: 0; /* Remove gap - navbar is handled separately */
}

.portfolio-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(3, 11, 22, 0) 0%, rgba(3, 11, 22, 0.8) 100%);
}

.portfolio-inner-content {
    background-color: #030B16;
    padding: 64px 0 100px;
}

.portfolio-inner-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 100px;
    box-sizing: border-box;
}

.portfolio-inner-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px; /* Figma: fontSize: 42 */
    font-weight: 700; /* Figma: fontWeight: 700 */
    line-height: 1.21; /* Figma: lineHeight: 1.2102272396995908em */
    text-transform: uppercase; /* Figma: textCase: UPPER */
    color: #FFFFFF;
    margin: 0 0 24px 0;
}

.portfolio-inner-tags {
    display: flex;
    align-items: center;
    gap: 8px; /* Figma: gap: 8px */
    margin-bottom: 48px;
}

.portfolio-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px; /* Figma: padding: 12px */
    border: 1px solid #0C6AE3; /* Figma: stroke_RKAP7B */
    border-radius: 48px; /* Figma: borderRadius: 48px */
    background: transparent;
    color: #FFFFFF;
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px; /* Figma: fontSize: 14 */
    font-weight: 400; /* Figma: fontWeight: 400 */
    line-height: 1.21; /* Figma: lineHeight: 1.2099609375em */
    height: 31px; /* Figma: height: 31 */
    box-sizing: border-box;
}

.portfolio-content-grid {
    display: grid;
    grid-template-columns: 506px 1fr; /* Figma: width: 506 for main content */
    gap: 48px;
    align-items: start;
}

.portfolio-main-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.portfolio-content-sections {
    display: flex;
    flex-direction: column;
    gap: 24px; /* Figma: gap: 24px */
}

.content-section {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Figma: gap: 8px */
}

.section-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px; /* Figma: fontSize: 16 */
    font-weight: 700; /* Figma: fontWeight: 700 */
    line-height: 1.21; /* Figma: lineHeight: 1.2099609375em */
    text-transform: uppercase; /* Figma: textCase: UPPER */
    color: #FFFFFF;
    margin: 0;
}

.section-description {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px; /* Figma: fontSize: 16 */
    font-weight: 400; /* Figma: fontWeight: 400 */
    line-height: 1.21; /* Figma: lineHeight: 1.2099609375em */
    text-transform: none; /* Preserve original capitalization */
    color: #96C2FB;
    margin: 0;
}

.deliverables-section {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Figma: gap: 16px */
}

.deliverables-grid {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Figma: gap: 16px */
}

.deliverable-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
}

.portfolio-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stats-card,
.testimonial-card,
.cta-card {
    background: #071221; /* Figma: fill_NF1Z76 */
    border-radius: 21px; /* Figma: borderRadius: 21px */
    padding: 32px;
    box-sizing: border-box;
}

.card-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px; /* Figma: fontSize: 16 */
    font-weight: 700; /* Figma: fontWeight: 700 */
    line-height: 1.21; /* Figma: lineHeight: 1.2099609375em */
    text-transform: uppercase; /* Figma: textCase: UPPER */
    color: #FFFFFF;
    margin: 0 0 24px 0;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Figma: gap: 16px */
    width: 250px; /* Figma: width: 250.58447265625 */
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px; /* Figma: gap: 8px */
    text-align: left;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.21;
}

.stat-label {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #96C2FB;
    text-transform: uppercase;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 24px; /* Figma: gap: 24px */
    width: 456px; /* Figma: width: 456.32568359375 */
}

.testimonial-quote {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px; /* Figma: fontSize: 16 */
    font-weight: 400; /* Figma: fontWeight: 400 */
    line-height: 1.21; /* Figma: lineHeight: 1.2099609375em */
    text-transform: none; /* Preserve original capitalization */
    color: #96C2FB;
    margin: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px; /* Figma: gap: 4px */
}

.author-name {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

.author-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #96C2FB;
}

.cta-description {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px; /* Figma: fontSize: 16 */
    font-weight: 400; /* Figma: fontWeight: 400 */
    line-height: 1.21; /* Figma: lineHeight: 1.2099609375em */
    text-transform: none; /* Preserve original capitalization */
    color: #96C2FB;
    margin: 0 0 24px 0;
}

.cta-card .main-button {
    width: 251px; /* Figma: width: 251 */
}

.portfolio-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 64px;
    padding: 32px;
    background: #071221; /* Figma: fill_NF1Z76 */
    border-radius: 21px; /* Figma: borderRadius: 21px */
}

.nav-back,
.nav-next {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px; /* Figma: fontSize: 16 */
    font-weight: 400; /* Figma: fontWeight: 400 */
    line-height: 1.21; /* Figma: lineHeight: 1.2099609375em */
    color: #96C2FB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-back:hover,
.nav-next:hover {
    color: #FFFFFF;
}

.nav-back {
    text-align: left; /* Figma: textAlignHorizontal: LEFT */
}

.nav-next {
    text-align: right; /* Figma: textAlignHorizontal: RIGHT */
}

/* ========================================
   RESPONSIVE DESIGN SYSTEM
   ======================================== */

/* Device Breakpoints:
   - Mobile: up to 480px
   - Mobile Large: 481px to 768px  
   - Tablet: 769px to 1024px
   - Laptop: 1025px to 1440px
   - Desktop: 1441px and above
*/

/* GLOBAL RESPONSIVE UTILITIES */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* TOUCH OPTIMIZATION */
.touch-device button,
.touch-device a,
.touch-device input,
.touch-device select,
.touch-device textarea {
    min-height: 44px; /* Apple's recommended touch target size */
    min-width: 44px;
}

.touch-optimized {
    touch-action: manipulation; /* Disable double-tap zoom */
}

/* Fix for iOS Safari viewport height */
:root {
    --vh: 1vh;
}

@supports (-webkit-touch-callout: none) {
    .hero-section {
        height: calc(var(--vh, 1vh) * 100);
        min-height: 500px;
    }
}

/* ORIENTATION AND LANDSCAPE OPTIMIZATIONS */
@media (orientation: landscape) and (max-height: 600px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-content {
        margin: 0 auto;
        gap: 24px;
    }
    
    .hero-text h1 {
        font-size: 32px;
        line-height: 1.1;
    }
    
    .navbar {
        height: 50px;
        top: 10px;
    }
}

/* HIGH DPI / RETINA DISPLAY OPTIMIZATIONS */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-background img {
        image-rendering: -webkit-optimize-contrast;
    }
    
    .logo img,
    .offering-card .card-icon img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Improve scrolling on mobile */
body {
    -webkit-overflow-scrolling: touch;
}

/* RESPONSIVE UTILITY CLASSES */
.hide-on-mobile {
    display: block;
}

.show-on-mobile {
    display: none;
}

.hide-on-tablet {
    display: block;
}

.show-on-tablet {
    display: none;
}

.hide-on-desktop {
    display: block;
}

.show-on-desktop {
    display: none;
}

/* Responsive text alignment */
.text-center-mobile {
    text-align: left;
}

.text-left-mobile {
    text-align: left;
}

/* Responsive spacing */
.mb-mobile-only {
    margin-bottom: 0;
}

.mt-mobile-only {
    margin-top: 0;
}

/* Mobile-specific utility classes */
@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
    
    .show-on-mobile {
        display: block !important;
    }
    
    .text-center-mobile {
        text-align: center !important;
    }
    
    .text-left-mobile {
        text-align: left !important;
    }
    
    .mb-mobile-only {
        margin-bottom: 16px !important;
    }
    
    .mt-mobile-only {
        margin-top: 16px !important;
    }
    
    .full-width-mobile {
        width: 100% !important;
    }
    
    .no-padding-mobile {
        padding: 0 !important;
    }
}

/* Tablet-specific utility classes */
@media (min-width: 769px) and (max-width: 1024px) {
    .hide-on-tablet {
        display: none !important;
    }
    
    .show-on-tablet {
        display: block !important;
    }
}

/* Desktop-specific utility classes */
@media (min-width: 1025px) {
    .hide-on-desktop {
        display: none !important;
    }
    
    .show-on-desktop {
        display: block !important;
    }
}

/* LARGE DESKTOP (1441px+) - Default styles above */

/* LAPTOP (1025px to 1440px) */
@media (max-width: 1440px) {
    .hero-section {
        height: 800px;
    }
    
    .hero-content {
        margin-top: 280px;
        max-width: 700px;
    }
    
    .hero-text h1 {
        font-size: 56px;
    }
    
    .core-offerings-section {
        padding: 80px 80px 160px;
    }
    
    .offering-cards-container {
        gap: 20px;
    }
    
    /* Typography scaling for laptop */
    h1 { font-size: 56px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
    h5 { font-size: 18px; }
    h6 { font-size: 16px; }
    
    p, .body-text {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .btn, .main-button, .button-stroke {
        font-size: 16px;
        padding: 14px 20px;
    }
}

/* TABLET (769px to 1024px) */
@media (max-width: 1024px) {
    .navbar {
        max-width: 95%;
        height: 70px;
        top: 20px;
        padding: 0 20px;
    }
    
    .navigation ul {
        gap: 16px;
    }
    
    .navigation a {
        font-size: 14px;
    }
    
    .hero-section {
        height: 700px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        margin: 0 auto;
        max-width: 600px;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 48px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        align-items: center;
    }
    
    /* Keep hero buttons full width with desktop styling */
    .hero-buttons .main-button,
    .hero-buttons .button-stroke {
        width: 100%;
        max-width: 400px;
        padding: 15px 21px;
        font-size: 16px;
        font-weight: 600;
        white-space: nowrap;
    }
    
    .core-offerings-section {
        padding: 60px 40px 120px;
    }
    
    .offering-cards-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .offering-card {
        width: 100%;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    /* Center card icon and hide hover on tablet */
    .offering-card .card-icon {
        margin: 0 0 16px 0;
        align-self: center;
    }
    
    .offering-card .card-icon-hover {
        display: none !important;
    }
    
    /* Typography scaling for tablet */
    h1 { font-size: 48px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }
    h4 { font-size: 18px; }
    h5 { font-size: 16px; }
    h6 { font-size: 14px; }
    
    p, .body-text {
        font-size: 15px;
        line-height: 1.4;
    }
    
    .btn, .main-button, .button-stroke {
        font-size: 15px;
        padding: 12px 18px;
    }
    
    /* Override: Hero buttons keep full width desktop styling on tablet */
    .hero-buttons .main-button,
    .hero-buttons .button-stroke {
        font-size: 16px !important;
        padding: 15px 21px !important;
        width: 100% !important;
        max-width: 400px;
    }
    
    /* Logo Carousel Responsive */
    .logo-carousel-section {
        padding: 60px 40px;
    }
    
    /* Testimonials Carousel Responsive */
    .clients-say-section {
        padding: 60px 40px;
    }
    
    .clients-say-card {
        min-width: 280px;
        padding: 20px;
    }
    
    /* Process Steps Responsive */
    .process-steps-container {
        flex-direction: column;
        gap: 24px;
    }
    
    .process-step {
        text-align: center;
        max-width: 100%;
    }
    
    /* Case Studies Tablet - Enhanced Layout */
    .case-studies-section {
        padding: 80px 0;
    }
    
    .case-studies-carousel {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
    }
    
    /* Make carousel text full width and place at bottom on tablet */
    .carousel-text {
        width: 100%;
        max-width: 100%;
        order: 2;
        text-align: center;
        align-items: center;
    }
    
    .carousel-title-subtitle h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .carousel-title-subtitle p {
        text-align: center;
        font-size: 15px;
    }
    
    /* Make carousel images full width and place at top on tablet */
    .carousel-images {
        width: 100%;
        max-width: 100%;
        height: 320px;
        order: 1;
        margin: 0;
        padding: 0;
        position: relative;
    }
    
    .carousel-track {
        margin: 0;
        padding: 0;
        position: relative;
        left: 0;
    }
    
    .carousel-img {
        width: 100%;
        height: 320px;
        margin-right: 0;
        margin-left: 0;
        flex-shrink: 0;
        position: relative;
    }
    
    /* Center pagination and arrows */
    .carousel-pagination-arrows {
        justify-content: center;
        gap: 24px;
    }
    
    .carousel-pagination {
        font-size: 48px;
        width: 70px;
        min-width: 70px;
    }
    
    .case-studies-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .case-study-card {
        width: 100%;
    }
    
    /* About Page Tablet Responsive (1024px) */
    /* About Header Section */
    .about-header-section {
        height: 550px;
    }
    
    .page-header-content {
        padding: 0 40px 120px 40px;
        gap: 28px;
    }
    
    .page-header-content h1 {
        font-size: 48px;
        line-height: 1.1;
    }
    
    .page-header-content p {
        font-size: 18px;
        line-height: 1.4;
        max-width: 600px;
    }
    
    /* Our Story Section - Tablet Roadmap */
    .our-story-section {
        padding: 80px 40px;
        height: auto;
    }
    
    .our-story-container {
        margin: 0 auto;
        height: auto;
    }
    
    .our-story-timeline {
        position: relative;
        width: 100%;
        height: auto;
        margin: 50px 0 0 0;
        padding-left: 60px;
    }
    
    /* Left-side vertical timeline line for tablet */
    .timeline-line {
        position: absolute;
        left: 30px;
        top: 0;
        width: 3px;
        height: 100%;
        background: #0C6AE3;
        z-index: 1;
        display: block;
    }
    
    .timeline-item {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin-bottom: 50px;
        padding-left: 30px;
    }
    
    .timeline-item:last-child {
        margin-bottom: 0;
    }
    
    /* Reset absolute positioning for tablet */
    .timeline-item:nth-child(2),
    .timeline-item:nth-child(3),
    .timeline-item:nth-child(4),
    .timeline-item:nth-child(5),
    .timeline-item:nth-child(6) {
        position: relative;
        left: auto;
        top: auto;
    }
    
    .story-card {
        padding: 28px;
        text-align: left;
        width: 100%;
        border: 2px solid #0C6AE3;
        border-radius: 20px;
        background: none;
    }
    
    .story-card:hover {
        background: rgba(12, 106, 227, 0.1);
        border-color: rgba(12, 106, 227, 0.8);
    }
    
    .story-year {
        font-size: 22px;
        margin-bottom: 16px;
        color: #FFFFFF;
        font-weight: 700;
    }
    
    .story-desc {
        font-size: 16px;
        line-height: 1.4;
        color: #96C2FB;
        margin: 0;
    }
    
    /* Timeline dots for tablet */
    .timeline-dot {
        position: absolute;
        left: 22px;
        z-index: 3;
        width: 18px;
        height: 18px;
        transform: none;
        margin: 0;
    }
    
    /* Position dots for tablet spacing */
    .timeline-dot:nth-child(7) {
        top: 30px;
    }
    
    .timeline-dot:nth-child(8) {
        top: calc(30px + 1 * (50px + 100px));
    }
    
    .timeline-dot:nth-child(9) {
        top: calc(30px + 2 * (50px + 100px));
    }
    
    .timeline-dot:nth-child(10) {
        top: calc(30px + 3 * (50px + 100px));
    }
    
    .timeline-dot:nth-child(11) {
        top: calc(30px + 4 * (50px + 100px));
    }
    
    .dot-outer {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #0C6AE3;
    }
    
    .dot-inner {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #FFFFFF;
        margin: 5px;
    }
    
    /* Mission & Values Section */
    .mission-values-section {
        padding: 80px 40px;
    }
    
    .mission-values-desc {
        font-size: 18px;
        line-height: 1.4;
        max-width: 600px;
        margin: 0 auto 50px auto;
    }
    
    .values-cards {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .value-card {
        padding: 32px;
        text-align: center;
    }
    
    .value-title {
        font-size: 20px;
        margin: 20px 0 16px 0;
    }
    
    .value-desc {
        font-size: 16px;
        line-height: 1.4;
    }
    
    /* Team Snapshots Section */
    .team-snapshots-section {
        padding: 80px 40px;
    }
    
    .team-quote {
        font-size: 24px;
        line-height: 1.3;
        max-width: 600px;
        margin: 0 auto 50px auto;
    }
    
    .team-cards-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .team-card {
        width: calc(50% - 16px);
        max-width: 320px;
        height: 450px;
    }
    
    .team-card-frame {
        height: 100%;
        width: 100%;
    }
    
    /* Ensure team images are visible on tablet */
    .team-image {
        position: absolute;
        top: -1px;
        left: -1px;
        width: calc(100% + 2px);
        height: calc(100% + 2px);
        z-index: 1;
        border-radius: 32px;
        overflow: hidden;
        display: block;
    }
    
    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        border-radius: 32px;
    }
    
    .team-name {
        font-size: 20px;
        text-align: center;
    }
    
    .team-position {
        font-size: 15px;
        text-align: center;
    }
    
    .team-description {
        font-size: 15px;
        line-height: 1.4;
        text-align: center;
    }
    
    /* Banner Section */
    .banner-section {
        padding: 60px 40px;
    }
    
    .banner-section-dark-bg {
        padding: 80px 40px 100px 40px;
    }
    
    .banner-container {
        padding: 50px 40px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .banner-title {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .banner-subtitle {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 32px;
    }
    
    .banner-button {
        max-width: 300px;
        padding: 18px 28px;
        font-size: 16px;
    }
    
    /* Services Page Tablet Responsive */
    .services-grid {
        padding: 80px 40px;
    }
    
    .services-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .service-card {
        padding: 20px;
        max-width: none;
    }
    
    .service-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 15px;
        line-height: 1.4;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
    }
    
    .service-icon-img {
        width: 36px;
        height: 36px;
    }
    
    /* Blog Page Tablet Responsive */
    .blog-page .page-header-content.hero-text {
        padding: 0 40px 142px 40px;
    }
    
    .blog-page .about-header-section {
        height: 550px;
    }
    
    .blog-category-filters {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 16px;
        margin: 24px 0 0 0;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 40px;
        margin-left: -40px;
        margin-right: -40px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .blog-category-filters::-webkit-scrollbar {
        display: none;
    }
    
    .blog-category-btn {
        font-size: 15px;
        padding: 14px 20px;
        flex: 0 0 auto;
        min-width: fit-content;
        white-space: nowrap;
    }
    
    /* Service Deep Dives Tablet Responsive */
    .service-deep-dives {
        padding: 80px 40px;
    }
    
    .deep-dives-list {
        padding-top: 60px;
        max-width: 700px;
    }
    
    .deep-dive-item {
        padding: 20px;
    }
    
    .deep-dive-header h3 {
        font-size: 18px;
    }
    
    .deep-dive-content {
        padding: 0 20px;
    }
    
    .deep-dive-item.active .deep-dive-content {
        padding: 20px;
        max-height: 600px;
    }
    
    .deep-dive-details {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .detail-column h4 {
        font-size: 13px;
    }
    
    .detail-column p {
        font-size: 15px;
    }
    
    .inquire-btn {
        width: 100%;
        max-width: 300px;
        margin: 16px auto 0 auto;
        padding: 16px 24px;
        font-size: 15px;
        align-self: center;
    }
}

/* MOBILE HAMBURGER MENU STYLES */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
}

.hamburger-icon,
.close-icon {
    color: #FFFFFF;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Default state: show hamburger, hide close */
.hamburger-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.close-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

/* Active state: hide hamburger, show close */
.mobile-menu-toggle.active .hamburger-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.mobile-menu-toggle.active .close-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

/* Hover effects */
.mobile-menu-toggle:hover .hamburger-icon,
.mobile-menu-toggle:hover .close-icon {
    color: #0C6AE3;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(7, 18, 33, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-navigation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 32px;
    text-align: center;
}

.mobile-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-navigation a {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-navigation a:hover {
    color: #0C6AE3;
}

.navbar-cta-mobile {
    margin-top: 16px;
    padding: 16px 24px;
    font-size: 16px;
}

/* MOBILE LARGE (481px to 768px) */
@media (max-width: 768px) {
    .navbar {
        height: 60px;
        top: 15px;
        padding: 0 15px;
    }
    
    .logo {
        width: 100px;
        height: 40px;
    }
    
    .navigation {
        display: none;
    }
    
    .navbar-cta-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        margin: 0 auto;
        max-width: 90%;
        gap: 32px;
        padding: 0 15px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
        line-height: 1.1;
    }
    
    .hero-text p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .hero-buttons {
        gap: 16px;
        width: 100%;
        align-items: center;
    }
    
    /* Keep hero buttons full width with desktop styling on mobile */
    .hero-buttons .main-button,
    .hero-buttons .button-stroke {
        width: 100%;
        max-width: 400px;
        padding: 15px 21px;
        font-size: 16px;
        font-weight: 600;
        white-space: nowrap;
    }
    
    .core-offerings-section {
        padding: 40px 20px 80px;
    }
    
    .core-offerings-header h2 {
        font-size: 24px;
    }
    
    .line {
        display: none; /* Hide decorative lines on mobile */
    }
    
    .offering-cards-container {
        flex-direction: column !important;
        gap: 16px;
        display: flex !important;
    }
    
    /* Banner Section Mobile */
    .banner-section {
        padding: 40px 20px;
    }
    
    .banner-section-dark-bg {
        padding: 60px 20px 80px 20px;
    }
    
    .banner-container {
        padding: 40px 24px; /* Much smaller side padding */
        border-radius: 24px; /* Slightly smaller border radius */
        margin: 0 auto;
    }
    
    .banner-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .banner-subtitle {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 24px;
        max-width: 100%;
    }
    
    .offering-card {
        padding: 20px;
        text-align: center;
        flex-direction: column;
        align-items: center;
        width: 100% !important;
        max-width: none !important;
        flex-basis: auto !important;
        flex-grow: 0 !important;
        flex-shrink: 0 !important;
    }
    
    /* Center card icon and hide hover on mobile */
    .offering-card .card-icon {
        margin: 0 0 16px 0;
        align-self: center;
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
    }
    
    .offering-card .card-icon img {
        width: 40px !important;
        height: 40px !important;
        object-fit: contain;
        display: block !important;
        visibility: visible !important;
    }
    
    .offering-card .card-icon-hover {
        display: none !important;
    }
    
    .offering-card .card-content {
        display: flex !important;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .offering-card h3 {
        font-size: 18px;
        color: #FFFFFF !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .offering-card p {
        font-size: 14px;
        line-height: 1.4;
        color: #96C2FB !important;
        display: block !important;
        visibility: visible !important;
    }
    
    /* Logo Carousel Mobile */
    .logo-carousel-section {
        padding: 40px 20px;
    }
    
    .logo-item img {
        max-height: 40px;
    }
    
    /* Testimonials Carousel Mobile */
    .clients-say-section {
        padding: 40px 0;
    }
    
    .carousel-viewport {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .clients-say-carousel-track {
        gap: 16px;
    }
    
    .clients-say-card {
        min-width: 280px;
        max-width: 280px;
        width: 280px;
        padding: 24px 20px;
        box-sizing: border-box;
    }
    
    .clients-say-card.opener {
        gap: 16px;
    }
    
    .clients-say-title {
        font-size: 20px;
        line-height: 1.1;
    }
    
    .clients-say-subtitle {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .testimonial-quote {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 16px;
    }
    
    .client-avatar {
        width: 40px;
        height: 40px;
    }
    
    .quote-icon {
        font-size: 48px !important;
    }
    
    /* Process Steps Mobile */
    .process-steps-container {
        gap: 20px;
    }
    
    .process-step h3 {
        font-size: 18px;
    }
    
    .process-step p {
        font-size: 14px;
    }
    
    /* Case Studies Mobile - Complete Restructure */
    .case-studies-section {
        padding: 60px 0;
    }
    
    .case-studies-carousel {
        flex-direction: column;
        gap: 32px;
        align-items: stretch;
    }
    
    /* Make carousel text full width and place at bottom */
    .carousel-text {
        width: 100%;
        max-width: 100%;
        order: 2;
        text-align: left;
        align-items: flex-start;
    }
    
    .carousel-title-subtitle h2 {
        font-size: 24px;
        text-align: center;
    }
    
    .carousel-title-subtitle p {
        text-align: left;
        font-size: 14px;
    }
    
    /* Make carousel images full width and place at top */
    .carousel-images {
        width: 100%;
        max-width: 100%;
        height: 250px;
        order: 1;
        margin: 0;
        padding: 0;
        position: relative;
        overflow: hidden;
    }
    
    .carousel-track {
        display: flex;
        margin: 0;
        padding: 0;
        position: relative;
        left: 0;
        height: 100%;
    }
    
    .carousel-img {
        width: 100%;
        height: 250px;
        margin-right: 0;
        margin-left: 0;
        flex-shrink: 0;
        position: relative;
        object-fit: cover;
    }
    
    /* Mobile-only carousel: Hidden by default */
    .carousel-mobile-only {
        display: none !important; /* Force hidden on all screens by default */
        width: 100%;
        height: 250px;
        position: relative;
        overflow: hidden;
        border-radius: 32px;
    }
    
    .mobile-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    
    .mobile-slide.active {
        opacity: 1;
    }
    
    .mobile-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 32px;
    }
    
    /* On mobile: Show mobile carousel, hide desktop carousel */
    .carousel-images {
        display: none !important;
    }
    
    .carousel-mobile-only {
        display: block !important;
    }
    
    /* Center pagination and arrows */
    .carousel-pagination-arrows {
        justify-content: center;
        gap: 20px;
    }
    
    .carousel-pagination {
        font-size: 36px;
        width: 60px;
        min-width: 60px;
    }
    
    .case-studies-container {
        gap: 16px;
    }
    
    .case-study-card {
        padding: 16px;
    }
    
    .case-study-card h3 {
        font-size: 18px;
    }
    
    .case-study-card p {
        font-size: 14px;
    }
    
    /* Case Studies View Case Study Button - Full Width on Mobile */
    .case-title-button {
        width: 100%;
        align-items: stretch;
    }
    
    .case-title-button .button-stroke,
    #carousel-btn {
        width: 100%;
        max-width: none;
        margin-top: 16px;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
        text-align: center;
    }
    
    /* Forms Mobile */
    .form-container {
        padding: 20px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    /* Footer Mobile - Consistent with Desktop */
    footer {
        height: auto;
        padding: 60px 20px;
        background-color: #010409;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 40px;
        text-align: left;
        align-items: flex-start;
        max-width: 100%;
        margin: 0;
    }
    
    .footer-logo-description {
        align-items: flex-start;
        text-align: left;
        max-width: 100%;
        gap: 24px;
        width: 100%;
    }
    
    .footer-logo-description p {
        font-size: 16px;
        line-height: 1.21;
        text-align: left;
        color: #96C2FB;
        font-weight: 400;
        margin: 0;
    }
    
    .footer-quick-links,
    .footer-contact-info {
        max-width: 100%;
        text-align: left;
        align-items: flex-start;
        width: 100%;
    }
    
    .footer-quick-links h4,
    .footer-contact-info h4 {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.21;
        text-transform: uppercase;
        color: #FFFFFF;
        margin: 0 0 16px 0;
    }
    
    .footer-quick-links ul {
        gap: 16px;
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
    }
    
    .footer-quick-links li {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.21;
        color: #96C2FB;
    }
    
    .footer-quick-links a {
        color: #96C2FB;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-quick-links a:hover {
        color: #FFFFFF;
    }
    
    .footer-contact-info p {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.21;
        color: #96C2FB;
        margin: 0 0 16px 0;
    }
    
    .footer-contact-info p:last-child {
        margin-bottom: 0;
    }
    
    /* Typography scaling for mobile large */
    h1 { font-size: 36px; }
    h2 { font-size: 24px; }
    h3 { font-size: 18px; }
    h4 { font-size: 16px; }
    h5 { font-size: 14px; }
    h6 { font-size: 13px; }
    
    p, .body-text {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .btn, .main-button, .button-stroke {
        font-size: 14px;
        padding: 12px 18px;
    }
    
    /* Override: Hero buttons keep full width desktop styling on mobile */
    .hero-buttons .main-button,
    .hero-buttons .button-stroke {
        font-size: 16px !important;
        padding: 15px 21px !important;
        width: 100% !important;
        max-width: 400px;
    }
    
        /* Portfolio specific responsive */
    .portfolio-featured-image {
        height: 250px;
        margin-top: 0;
    }
    
    .portfolio-inner-container {
        padding: 0 20px;
    }
    
    .portfolio-inner-title {
        font-size: 32px;
    }
    
    .portfolio-navigation {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .nav-back,
    .nav-next {
        justify-content: center;
    }
    
    .stats-card,
    .testimonial-card,
    .cta-card {
        padding: 24px;
    }
    
    .cta-card .main-button {
        width: 100%;
    }
    
    /* Why Oasis Section - Mobile Single Column Layout */
    .why-oasis-section {
        padding-top: 80px;
        padding-bottom: 50px;
    }
    
    .why-oasis-container {
        gap: 50px;
        padding: 0 20px;
    }
    
    .why-oasis-features {
        flex-direction: column;
        gap: 40px;
        align-items: center; /* Center align on mobile */
    }
    
    .feature-block {
        width: 100%;
        max-width: 320px;
        align-items: center; /* Center align feature blocks on mobile */
        text-align: center; /* Center align text on mobile */
    }
    
    .feature-text {
        align-items: center; /* Center align feature text on mobile */
        text-align: center; /* Center align text content on mobile */
    }
    
    /* About Page Mobile Responsive - Large Mobile (768px) */
    /* About Header Section */
    .about-header-section {
        height: 500px;
    }
    
    .page-header-content {
        padding: 0 20px 100px 20px;
        gap: 24px;
    }
    
    .page-header-content h1 {
        font-size: 36px;
        line-height: 1.1;
    }
    
    .page-header-content p {
        font-size: 16px;
        line-height: 1.4;
    }
    
    .page-header-tag {
        padding: 8px 12px;
    }
    
    .tag-text {
        font-size: 13px;
    }
    
    /* Our Story Section - Mobile Roadmap */
    .our-story-section {
        padding: 60px 20px;
        height: auto;
    }
    
    .our-story-container {
        max-width: 100%;
        margin: 0 auto;
        height: auto;
    }
    
    .our-story-timeline {
        position: relative;
        width: 100%;
        height: auto;
        margin: 40px 0 0 0;
        padding-left: 40px;
    }
    
    /* Left-side vertical timeline line */
    .timeline-line {
        position: absolute;
        left: 20px;
        top: 0;
        width: 2px;
        height: 100%;
        background: #0C6AE3;
        z-index: 1;
        display: block;
    }
    
    /* Single column timeline items */
    .timeline-item {
        position: relative;
        width: 100%;
        max-width: none;
        margin-bottom: 40px;
        padding-left: 20px;
    }
    
    .timeline-item:last-child {
        margin-bottom: 0;
    }
    
    /* Reset all absolute positioning */
    .timeline-item:nth-child(2),
    .timeline-item:nth-child(3),
    .timeline-item:nth-child(4),
    .timeline-item:nth-child(5),
    .timeline-item:nth-child(6) {
        position: relative;
        left: auto;
        top: auto;
    }
    
    .story-card {
        width: 100%;
        max-width: 350px;
        padding: 20px;
        text-align: left;
        border: 2px solid #0C6AE3;
        border-radius: 16px;
        background: none;
        position: relative;
        margin-left: 0;
    }
    
    .story-card:hover {
        background: rgba(12, 106, 227, 0.1);
        border-color: rgba(12, 106, 227, 0.8);
    }
    
    .story-year {
        font-size: 18px;
        margin-bottom: 12px;
        color: #FFFFFF;
        font-weight: 700;
    }
    
    .story-desc {
        font-size: 15px;
        line-height: 1.4;
        color: #96C2FB;
        margin: 0;
    }
    
    /* Timeline dots positioned on the left timeline */
    .timeline-dot {
        position: absolute;
        left: 12px;
        z-index: 3;
        width: 16px;
        height: 16px;
        transform: none;
        margin: 0;
    }
    
    /* Position each dot at the start of its corresponding timeline item */
    .timeline-dot:nth-child(7) { /* 2017 dot - positioned at first item */
        top: 24px;
    }
    
    .timeline-dot:nth-child(8) { /* 2019 dot - positioned at second item */
        top: calc(24px + 1 * (40px + 80px)); /* 24px + item_height + margin */
    }
    
    .timeline-dot:nth-child(9) { /* 2021 dot - positioned at third item */
        top: calc(24px + 2 * (40px + 80px));
    }
    
    .timeline-dot:nth-child(10) { /* 2022 dot - positioned at fourth item */
        top: calc(24px + 3 * (40px + 80px));
    }
    
    .timeline-dot:nth-child(11) { /* 2023 dot - positioned at fifth item */
        top: calc(24px + 4 * (40px + 80px));
    }
    
    .dot-outer {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #0C6AE3;
    }
    
    .dot-inner {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #FFFFFF;
        margin: 4px;
    }
    
    /* Mission & Values Section */
    .mission-values-section {
        padding: 60px 20px;
    }
    
    .mission-values-container {
        max-width: 100%;
    }
    
    .mission-values-desc {
        font-size: 16px;
        line-height: 1.4;
        padding: 0 10px;
        margin-bottom: 40px;
    }
    
    .values-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .value-card {
        padding: 24px;
        text-align: center;
    }
    
    .value-title {
        font-size: 18px;
        margin: 16px 0 12px 0;
    }
    
    .value-desc {
        font-size: 15px;
        line-height: 1.4;
    }
    
    /* Team Snapshots Section - Simple Mobile Fix */
    .team-snapshots-section {
        padding: 60px 20px;
    }
    
    .team-snapshots-container {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .team-quote {
        font-size: 20px;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 40px;
    }
    
    /* Team grid layout */
    .team-cards-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    /* Team cards with working images */
    .team-card {
        display: block !important;
        width: 100% !important;
        max-width: 350px !important;
        height: 400px !important;
        position: relative !important;
        border-radius: 32px !important;
        overflow: hidden !important;
        background: #030B16 !important;
    }
    
    .team-card-frame {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        position: relative !important;
        background: #030B16 !important;
        border-radius: 32px !important;
        overflow: hidden !important;
    }
    
    /* Simple image approach - put image as first child */
    .team-card-frame::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    .team-card:nth-child(1) .team-card-frame::before {
        background-image: url('assets/img/team1.jpg') !important;
    }
    
    .team-card:nth-child(2) .team-card-frame::before {
        background-image: url('assets/img/team2.jpg') !important;
    }
    
    .team-card:nth-child(3) .team-card-frame::before {
        background-image: url('assets/img/team3.jpg') !important;
    }
    
    .team-card:nth-child(4) .team-card-frame::before {
        background-image: url('assets/img/team4.jpg') !important;
    }
    
    /* Hide original image structure */
    .team-image {
        display: none !important;
    }
    
    .blue-overlay {
        display: none !important;
    }
    
    /* Team info overlay */
    .team-info {
        display: block !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(12, 106, 227, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        padding: 20px !important;
        z-index: 10 !important;
        border-radius: 0 0 32px 32px !important;
    }
    
    .team-info-content {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .team-details {
        display: block !important;
        text-align: center !important;
        margin-bottom: 8px !important;
    }
    
    .team-name {
        display: block !important;
        font-size: 18px !important;
        color: #FFFFFF !important;
        font-weight: 700 !important;
        margin-bottom: 4px !important;
        text-align: center !important;
        text-transform: uppercase !important;
    }
    
    .team-position {
        display: block !important;
        font-size: 14px !important;
        color: #96C2FB !important;
        margin-bottom: 8px !important;
        text-align: center !important;
    }
    
    .team-divider {
        display: block !important;
        width: 100% !important;
        height: 1px !important;
        background: #2A80EE !important;
        border: none !important;
        margin: 8px 0 !important;
    }
    
    .team-description {
        display: block !important;
        font-size: 14px !important;
        color: #96C2FB !important;
        line-height: 1.4 !important;
        text-align: center !important;
        margin: 0 !important;
    }
    
    /* Services Page Mobile Responsive */
    .services-grid {
        padding: 60px 20px;
    }
    
    .services-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .service-card {
        padding: 16px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .service-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .service-card p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
    }
    
    .service-icon-img {
        width: 32px;
        height: 32px;
    }
    
    .service-card .card-icon-hover {
        display: none;
    }
    
    /* Service Deep Dives Mobile Responsive */
    .service-deep-dives {
        padding: 80px 20px;
    }
    
    .deep-dives-list {
        padding-top: 60px;
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }
    
    .deep-dive-item {
        padding: 20px;
        margin: 0 4px;
        align-items: flex-start;
    }
    
    .deep-dive-header {
        flex: 1;
        gap: 16px;
        align-items: center;
    }
    
    .deep-dive-header h3 {
        font-size: 18px;
        line-height: 1.3;
        flex: 1;
    }
    
    .deep-dive-arrow {
        flex-shrink: 0;
        align-self: center;
    }
    
    .deep-dive-content {
        padding: 0;
    }
    
    .deep-dive-item.active .deep-dive-content {
        padding: 20px 0 0 0;
        max-height: 800px;
    }
    
    /* Fix: Change 3-column grid to 1-column on mobile */
    .deep-dive-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .detail-column h4 {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .detail-column p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    /* Fix: Make inquire button full width */
    .inquire-btn {
        width: 100%;
        max-width: none;
        margin-top: 8px;
        padding: 16px 24px;
        font-size: 14px;
        text-align: center;
        align-self: stretch;
    }
    
    /* Banner Section */
    .banner-section {
        padding: 50px 20px;
    }
    
    .banner-container {
        padding: 40px 24px;
        border-radius: 24px;
    }
    
    .banner-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .banner-subtitle {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 24px;
    }
    
    .banner-button {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 16px;
    }
}

/* MOBILE (up to 480px) */
@media (max-width: 480px) {
    .navbar {
        height: 55px;
        top: 10px;
        padding: 0 10px;
    }

    .core-offerings-container {
        gap: 32px;
    }
    
    /* Why Oasis Section - Mobile Single Column */
    .why-oasis-section {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    
    .why-oasis-container {
        gap: 40px;
        padding: 0 20px;
    }
    
    .why-oasis-features {
        flex-direction: column;
        gap: 32px;
        align-items: center; /* Center align on small mobile */
    }
    
    .feature-block {
        width: 100%;
        max-width: 280px;
        align-items: center; /* Center align feature blocks on small mobile */
        text-align: center; /* Center align text on small mobile */
    }
    
    .feature-text {
        align-items: center; /* Center align feature text on small mobile */
        text-align: center; /* Center align text content on small mobile */
    }
    
    .logo {
        width: 80px;
        height: 32px;
    }
    
    .hero-section {
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        margin: 0 auto;
        gap: 24px;
        padding: 0 10px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 13px;
    }
    
    .core-offerings-section {
        padding: 30px 15px 60px;
    }
    
    .core-offerings-header h2 {
        font-size: 28px;
    }
    
    .offering-card {
        padding: 16px;
        flex-direction: column;
        align-items: center;
        width: 100% !important;
        max-width: none !important;
        flex-basis: auto !important;
        flex-grow: 0 !important;
        flex-shrink: 0 !important;
    }
    
    /* Center card icon and hide hover on small mobile */
    .offering-card .card-icon {
        margin: 0 0 12px 0;
        align-self: center;
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 36px;
        height: 36px;
    }
    
    .offering-card .card-icon img {
        width: 36px !important;
        height: 36px !important;
        object-fit: contain;
        display: block !important;
        visibility: visible !important;
    }
    
    .offering-card .card-icon-hover {
        display: none !important;
    }
    
    .offering-card .card-content {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .offering-card h3 {
        font-size: 16px;
        color: #FFFFFF !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .offering-card p {
        font-size: 13px;
        color: #96C2FB !important;
        display: block !important;
        visibility: visible !important;
    }
    
    /* Services Page Small Mobile Responsive */
    .services-grid {
        padding: 50px 15px;
    }
    
    .services-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 14px;
        max-width: 100%;
        gap: 16px;
    }
    
    .service-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .service-card p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-icon-img {
        width: 28px;
        height: 28px;
    }
    
    /* Service Deep Dives Small Mobile Responsive */
    .service-deep-dives {
        padding: 60px 15px;
    }
    
    .deep-dives-list {
        padding-top: 50px;
    }
    
    .deep-dive-item {
        padding: 16px;
        margin: 0 2px;
    }
    
    .deep-dive-header {
        gap: 12px;
        align-items: center;
    }
    
    .deep-dive-header h3 {
        font-size: 16px;
        line-height: 1.3;
    }
    
    .deep-dive-icon {
        width: 40px;
        height: 40px;
    }
    
    .deep-dive-content {
        padding: 0;
    }
    
    .deep-dive-item.active .deep-dive-content {
        padding: 16px 0 0 0;
        max-height: 900px;
    }
    
    .deep-dive-details {
        gap: 16px;
    }
    
    .detail-column h4 {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .detail-column p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .inquire-btn {
        padding: 14px 20px;
        font-size: 13px;
        margin-top: 6px;
    }
    
    /* General buttons get smaller on small mobile, but hero buttons stay desktop size */
    .main-button,
    .button-stroke {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* About Page Mobile Responsive - Small Mobile (480px) */
    /* About Header Section */
    .about-header-section {
        height: 450px;
    }
    
    .page-header-content {
        padding: 0 15px 80px 15px;
        gap: 20px;
    }
    
    .page-header-content h1 {
        font-size: 28px;
        line-height: 1.1;
    }
    
    .page-header-content p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .page-header-tag {
        padding: 6px 10px;
    }
    
    .tag-icon {
        width: 20px;
        height: 20px;
    }
    
    .tag-icon img {
        width: 20px;
        height: 20px;
    }
    
    .tag-text {
        font-size: 12px;
    }
    
    /* Our Story Section - Small Mobile Roadmap */
    .our-story-section {
        padding: 50px 15px;
        height: auto;
    }
    
    .our-story-container {
        margin: 0 auto;
        height: auto;
    }
    
    .our-story-timeline {
        padding-left: 35px;
        margin: 32px 0 0 0;
    }
    
    /* Smaller left-side timeline line */
    .timeline-line {
        left: 18px;
        width: 2px;
    }
    
    .timeline-item {
        max-width: 100%;
        margin-bottom: 32px;
        padding-left: 18px;
    }
    
    .story-card {
        padding: 18px;
        max-width: 320px;
        border-radius: 12px;
    }
    
    .story-year {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .story-desc {
        font-size: 14px;
        line-height: 1.4;
    }
    
    /* Smaller timeline dots */
    .timeline-dot {
        left: 10px;
        width: 14px;
        height: 14px;
    }
    
    /* Adjust dot positions for smaller spacing */
    .timeline-dot:nth-child(7) {
        top: 20px;
    }
    
    .timeline-dot:nth-child(8) {
        top: calc(20px + 1 * (32px + 70px));
    }
    
    .timeline-dot:nth-child(9) {
        top: calc(20px + 2 * (32px + 70px));
    }
    
    .timeline-dot:nth-child(10) {
        top: calc(20px + 3 * (32px + 70px));
    }
    
    .timeline-dot:nth-child(11) {
        top: calc(20px + 4 * (32px + 70px));
    }
    
    .dot-outer {
        width: 14px;
        height: 14px;
    }
    
    .dot-inner {
        width: 6px;
        height: 6px;
        margin: 4px;
    }
    
    /* Mission & Values Section */
    .mission-values-section {
        padding: 50px 15px;
    }
    
    .mission-values-desc {
        font-size: 14px;
        line-height: 1.4;
        padding: 0 5px;
        margin-bottom: 32px;
    }
    
    .values-cards {
        gap: 20px;
        max-width: 100%;
    }
    
    .value-card {
        padding: 20px;
    }
    
    .value-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .value-icon img {
        width: 40px;
        height: 40px;
    }
    
    .value-title {
        font-size: 16px;
        margin: 12px 0 10px 0;
    }
    
    .value-desc {
        font-size: 14px;
        line-height: 1.4;
    }
    
    /* Team Snapshots Section - Small Mobile */
    .team-snapshots-section {
        padding: 50px 15px;
    }
    
    .team-snapshots-container {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .team-quote {
        font-size: 18px;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 32px;
    }
    
    /* Simple background image approach for small mobile */
    .team-card {
        width: 100% !important;
        max-width: 300px !important;
        height: 350px !important;
        margin: 0 auto !important;
        gap: 24px !important;
    }
    
    /* Hide complex structure, use background images */
    .team-image {
        display: none !important;
    }
    
    .blue-overlay {
        display: none !important;
    }
    
    .team-info {
        padding: 16px !important;
        background: rgba(12, 106, 227, 0.9) !important;
    }
    
    .team-name {
        font-size: 16px !important;
        text-align: center !important;
    }
    
    .team-position {
        font-size: 13px !important;
        text-align: center !important;
    }
    
    .team-description {
        font-size: 13px !important;
        line-height: 1.4 !important;
        text-align: center !important;
    }
    
    /* Banner Section Small Mobile */
    .banner-section {
        padding: 40px 15px;
    }
    
    .banner-section-dark-bg {
        padding: 50px 15px 60px 15px;
    }
    
    .banner-container {
        padding: 32px 20px;
        border-radius: 20px;
    }
    
    .banner-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .banner-subtitle {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .banner-button {
        width: 100%;
        max-width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    /* Override for hero buttons to keep full width desktop appearance */
    .hero-buttons .main-button,
    .hero-buttons .button-stroke {
        padding: 15px 21px;
        font-size: 16px;
        font-weight: 600;
        width: 100%;
        max-width: 400px;
    }
    
    /* Logo Carousel Small Mobile */
    .logo-carousel-section {
        padding: 30px 15px;
    }
    
    .logo-item img {
        max-height: 32px;
    }
    
    /* Testimonials Carousel Small Mobile */
    .clients-say-section {
        padding: 30px 0px;
    }
    
    .clients-say-card {
        min-width: 240px;
        padding: 24px;
    }
    
    .clients-say-title {
        font-size: 18px;
    }
    
    .clients-say-subtitle {
        font-size: 12px;
    }
    
    .testimonial-quote {
        font-size: 13px;
    }
    
    /* Process Steps Small Mobile */
    .process-step h3 {
        font-size: 16px;
    }
    
    .process-step p {
        font-size: 13px;
    }
    
    /* Case Studies Small Mobile - Enhanced Mobile Layout */
    .case-studies-section {
        padding: 50px 0;
    }
    
    .carousel-images {
        height: 200px;
    }
    
    .carousel-img {
        height: 200px;
        margin-right: 6px;
    }
    
    .carousel-title-subtitle h2 {
        font-size: 20px;
    }
    
    .carousel-title-subtitle p {
        font-size: 13px;
    }
    
    .carousel-pagination {
        font-size: 36px;
        width: 50px;
        min-width: 50px;
    }
    
    .carousel-pagination-arrows {
        gap: 16px;
    }
    
    .case-study-card {
        padding: 12px;
    }
    
    .case-study-card h3 {
        font-size: 16px;
    }
    
    .case-study-card p {
        font-size: 13px;
    }
    
    /* Forms Small Mobile */
    .form-container {
        padding: 15px;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px;
        font-size: 13px;
    }
    
    /* Typography scaling for small mobile */
    h1 { font-size: 28px; }
    h2 { font-size: 20px; }
    h3 { font-size: 16px; }
    h4 { font-size: 14px; }
    h5 { font-size: 13px; }
    h6 { font-size: 12px; }
    
    p, .body-text {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .btn, .main-button, .button-stroke {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    /* Override: Hero buttons keep full width desktop styling on small mobile */
    .hero-buttons .main-button,
    .hero-buttons .button-stroke {
        font-size: 16px !important;
        padding: 15px 21px !important;
        width: 100% !important;
        max-width: 400px;
    }
    
    /* Portfolio Small Mobile */
    .portfolio-featured-image {
        height: 220px;
        margin-top: 0;
    }
    
    .portfolio-inner-container {
        padding: 0 15px;
    }
    
    .portfolio-inner-title {
        font-size: 28px;
    }
    
    /* Footer Small Mobile - Consistent with Desktop */
    footer {
        padding: 50px 15px;
    }
    
    .footer-container {
        gap: 32px;
    }
    
    .footer-logo-description {
        gap: 20px;
    }
    
    .footer-logo-description p {
        font-size: 14px;
        line-height: 1.21;
    }
    
    .footer-quick-links h4,
    .footer-contact-info h4 {
        font-size: 14px;
        margin-bottom: 14px;
    }
    
    .footer-quick-links ul {
        gap: 14px;
    }
    
    .footer-quick-links li {
        font-size: 14px;
        line-height: 1.21;
    }
    
    .footer-contact-info p {
        font-size: 14px;
        line-height: 1.21;
        margin: 0 0 14px 0;
    }
    
    .footer-contact-info p:last-child {
        margin-bottom: 0;
    }
}

/* CONTACT PAGE STYLES */
.contact-form-section {
    padding: 80px 50px;
    background-color: #030B16;
}

.contact-form-container {
    max-width: 1240px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-card {
    background: #071221;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(12, 106, 227, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(49%) sepia(96%) saturate(1576%) hue-rotate(202deg) brightness(97%) contrast(96%);
}

.contact-info-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #FFFFFF;
}

.contact-info-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 4px 0;
    line-height: 1.4;
}

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

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0C6AE3;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(12, 106, 227, 0.1);
    border: 1px solid rgba(12, 106, 227, 0.2);
}

.social-link:hover {
    background: rgba(12, 106, 227, 0.2);
    border-color: rgba(12, 106, 227, 0.4);
    transform: translateX(4px);
}

.social-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.contact-form-wrapper {
    background: #071221;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #132031;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0C6AE3;
    background: #1a2a3a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #132031;
    color: #FFFFFF;
}

.checkbox-group {
    margin: 24px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #0C6AE3;
    border-color: #0C6AE3;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
}

.contact-submit-btn {
    width: 100%;
    margin-top: 16px;
}

/* Contact Services Preview */
.contact-services-preview {
    padding: 80px 50px;
    background-color: #030B16;
}

.contact-services-container {
    max-width: 1240px;
    margin: 0 auto;
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.service-preview-card {
    background: #071221;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-preview-card:hover {
    background: #0a1a2e;
    border-color: rgba(12, 106, 227, 0.3);
    transform: translateY(-4px);
}

.service-preview-icon {
    width: 64px;
    height: 64px;
    background: rgba(12, 106, 227, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-preview-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(49%) sepia(96%) saturate(1576%) hue-rotate(202deg) brightness(97%) contrast(96%);
}

.service-preview-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #FFFFFF;
}

.service-preview-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Contact FAQ Section */
.contact-faq-section {
    padding: 80px 50px;
    background-color: #030B16;
}

.contact-faq-container {
    max-width: 1240px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.faq-item {
    background: #071221;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #FFFFFF;
}

.faq-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Contact Page Mobile Responsiveness */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form-section,
    .contact-services-preview,
    .contact-faq-section {
        padding: 60px 20px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .services-preview-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-preview-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .contact-form-section,
    .contact-services-preview,
    .contact-faq-section {
        padding: 40px 15px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .faq-item {
        padding: 24px;
    }
}

/* LEGACY RESPONSIVE (keeping existing for compatibility) */
@media (max-width: 1280px) {
    .portfolio-inner-container {
        padding: 0 50px;
    }
    
    .portfolio-content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .testimonial-content {
        width: 100%;
    }
    
    .stats-grid {
        width: 100%;
    }
}

/* Empty State Styles for Static Admin */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #96C2FB;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(150, 194, 251, 0.3);
    border-radius: 12px;
    margin: 20px 0;
}

.empty-state p {
    margin: 10px 0;
    line-height: 1.6;
}

.empty-state p:first-child {
    font-size: 1.1em;
    font-weight: 500;
    color: #FFFFFF;
}

/* Admin Item Styles */
.admin-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
}

.admin-item h3 {
    color: #FFFFFF;
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.admin-item p {
    color: #96C2FB;
    margin: 5px 0;
    line-height: 1.5;
}

.item-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.edit-btn, .view-btn, .delete-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.edit-btn, .view-btn {
    background: #3B82F6;
    color: white;
}

.delete-btn {
    background: #EF4444;
    color: white;
}

.edit-btn:hover, .view-btn:hover {
    background: #2563EB;
}

.delete-btn:hover {
    background: #DC2626;
}