body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #f8fafc;
    color: #1e293b;
    -webkit-font-smoothing: antialiased;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spin-slow {
    animation: spin 3s linear infinite;
}

.spin-fast {
    animation: spin 2s linear infinite reverse;
}

.logo-ring {
    transform-origin: center;
    animation: spin 4s linear infinite;
}

.logo-ring.delay {
    transform-origin: center;
    animation: spin 3s linear infinite reverse;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* HEADER */
header {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* BUTTONS */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

/* RIPPLE ANIMATION */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px !important;
}




.desktop-nav {
    display: flex;
    gap: 32px;
    margin-left: auto;
    margin-right: 48px;
}

.nav-link {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

/* Animated underline draw on hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #10afe3, #60a5fa);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #10afe3;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link svg {
    color: #94a3b8;
    transition: transform 0.2s ease;
}

.nav-link:hover svg {
    color: #10afe3;
    transform: rotate(180deg);
}

.btn-demo {
    background: #10afe3;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(16, 175, 227, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-demo:hover {
    background: #0b90c5;
    box-shadow: 0 8px 22px rgba(16, 175, 227, 0.45);
    transform: translateY(-2px) scale(1.04);
    color: white;
}

.btn-demo:active {
    transform: translateY(1px) scale(0.97);
    box-shadow: 0 2px 8px rgba(16, 175, 227, 0.2);
    transition: all 0.1s ease;
}

.brand-auto {
    color: #0f415c;
}

.brand-mic {
    color: #0f415c;
}

.brand-ai {
    color: #10afe3;
}

.footer .brand-auto,
.footer .brand-mic {
    color: #ffffff !important;
}

.footer .brand-ai {
    color: #10afe3 !important;
}









.gradient-text {
    background: linear-gradient(90deg, #10afe3, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    animation: spin 2s linear infinite;
    transform-origin: center;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO */
.hero {
    display: none;
    /* Hero class appears unused in index.html, using experience-section instead */
}




.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    /* Vertically align text and image */
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 24px;
    color: #0f172a;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: translateY(-5px);
}

/* EXPERIENCE SECTION */
/* EXPERIENCE SECTION (HERO) */
@keyframes bgShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.experience-section {
    padding: 110px 0 80px 0 !important;
    background: linear-gradient(135deg, #0a1628 0%, #0f2847 40%, #0c3a5e 70%, #0e4d6e 100%);
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 700px 450px at 15% 50%, rgba(16, 175, 227, 0.10), transparent),
        radial-gradient(ellipse 500px 350px at 85% 30%, rgba(29, 78, 216, 0.08), transparent);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(16, 175, 227, 0.15);
    color: #10afe3;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    border: 1px solid rgba(16, 175, 227, 0.25);
    animation: fadeSlideUp 0.6s ease-out both;
}

.experience-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    animation: fadeSlideUp 0.6s ease-out 0.2s both;
}

.experience-content h2 span {
    background: linear-gradient(90deg, #10afe3, #0b7bb8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-content p {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 32px;
    animation: fadeSlideUp 0.6s ease-out 0.4s both;
}

.experience-content p strong {
    color: #ffffff;
}

.experience-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(16, 175, 227, 0.15);
    animation: floatImage 5s ease-in-out infinite, fadeSlideUp 0.8s ease-out 0.6s both;
}

/* Floating Animation Utility */
@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}


/* BUTTON */
.btn {
    display: inline-block;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.btn-primary {
    background: linear-gradient(135deg, #10afe3, #0b7bb8);
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(16, 175, 227, 0.3);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 28px rgba(16, 175, 227, 0.45);
    background: linear-gradient(135deg, #18c2f8, #0e90d4);
}

.btn-primary:active {
    transform: translateY(1px) scale(0.97);
    box-shadow: 0 3px 10px rgba(16, 175, 227, 0.25);
    transition: all 0.1s ease;
}

/* SERVICES SECTION */
.services-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-radius: 40px;
    margin: 0 20px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    scroll-margin-top: 80px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 50px;
    color: #0f172a;
    letter-spacing: -0.5px;
}

/* TABS SECTION REDESIGN */
.tabs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 auto 60px;
    padding: 8px;
    background: rgba(241, 245, 249, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    width: fit-content;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.tab-indicator {
    position: absolute;
    height: calc(100% - 16px);
    top: 8px;
    left: 8px;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 4px 12px rgba(16, 175, 227, 0.12),
        0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
    pointer-events: none;
    border: 1px solid rgba(16, 175, 227, 0.1);
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: #475569;
    cursor: pointer;
    border-radius: 32px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    border: 1px solid transparent;
}

.tab-btn .tab-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.tab-btn .tab-icon svg {
    width: 100%;
    height: 100%;
}

.tab-btn .tab-text {
    white-space: nowrap;
}

/* Hover: subtle lift and color change */
.tab-btn:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #10afe3;
    transform: translateY(-1px);
}

.tab-btn:hover .tab-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Active State: Premium Blue Gradient */
.tab-btn.active {
    background: transparent;
    color: #0b7bb8;
    border-color: transparent;
    transform: translateY(0);
}

.tab-btn.active .tab-icon {
    opacity: 1;
    color: #10afe3;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #10afe3;
    border-radius: 50%;
    box-shadow: 0 0 8px #10afe3;
}

/* ── SCROLL REVEAL BASE STATES ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays for sequential reveals */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* PANELS */
.tab-panels-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.tab-panel {
    display: none;
    animation: fadeSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-panel.active {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    /* Optimized ratio for wide premium images */
    gap: 60px;
    align-items: center;
    /* Vertically align text and tab image */
}

.tab-panel h3 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 16px;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.tab-panel p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.6;
}

.tab-image img {
    width: 100%;
    height: 420px;
    /* Increased height to show more detail in the ratio */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.tab-panel:hover .tab-image img {
    transform: scale(1.02);
}

/* Enhanced tab panel transition — 3D slide in from slightly below with perspective */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px) rotateX(4deg) scale(0.98);
        filter: blur(1px);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
        filter: blur(0);
    }
}

/* Float animation for active tab image */
@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.tab-panel.active .tab-image img {
    animation: floatImage 4s ease-in-out infinite;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

/* DROPDOWN */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    transition: color 0.2s;
}

.dropdown:hover .dropbtn,
.dropbtn:hover {
    color: #10afe3;
}

.dropdown:hover .dropbtn svg {
    transform: rotate(180deg);
}


.dropdown-content {
    display: none;
    position: absolute;
    min-width: 260px;
    z-index: 105;
    top: 100%;
    padding-top: 10px;
    /* Bridge the gap */
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown-menu {
    background-color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    overflow: hidden;
}


.dropdown:hover .dropdown-content {
    display: block;
    animation: dropFadeSlide 0.3s forwards;
}


@keyframes dropFadeSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content a {
    color: #475569;
    padding: 14px 24px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.dropdown-content a:hover {
    background-color: #f8fafc;
    color: #10afe3;
}

/* FEATURE LIST */
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

/* Staggered fade-in for each list item */
@keyframes listItemIn {
    from {
        opacity: 0;
        transform: translateX(-14px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tab-panel.active .feature-list li {
    animation: listItemIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.tab-panel.active .feature-list li:nth-child(1) {
    animation-delay: 0.15s;
}

.tab-panel.active .feature-list li:nth-child(2) {
    animation-delay: 0.28s;
}

.tab-panel.active .feature-list li:nth-child(3) {
    animation-delay: 0.41s;
}

.feature-list li {
    font-size: 1.05rem;
    color: #334155;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: color 0.2s ease;
}

.feature-list li:hover {
    color: #0f172a;
}

.feature-list li span {
    color: #10afe3;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.feature-list li:hover span {
    transform: scale(1.2);
}

/* METRICS GRID */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.tab-panel.active .metric-box {
    animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.tab-panel.active .metric-box:nth-child(1) {
    animation-delay: 0.2s;
}

.tab-panel.active .metric-box:nth-child(2) {
    animation-delay: 0.35s;
}

.tab-panel.active .metric-box:nth-child(3) {
    animation-delay: 0.5s;
}

.metric-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 6px 8px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 55px;
    position: relative;
    overflow: hidden;
}

.metric-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #10afe3, #60a5fa);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(16, 175, 227, 0.12);
    border-color: #10afe3;
    background: #fdfeff;
}

.metric-box:hover::before {
    opacity: 1;
}

.metric-number {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10afe3, #0b7bb8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2px;
    display: block;
    letter-spacing: -0.5px;
}

.metric-label {
    font-size: 0.6rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

/* LEARN MORE LINK */
.tab-content-text .learn-more-link,
.learn-more-link {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #10afe3, #0b7bb8) !important;
    color: white !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(16, 175, 227, 0.25);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.tab-content-text .learn-more-link:hover,
.learn-more-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 24px rgba(16, 175, 227, 0.45);
    color: white !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, #18c2f8, #0e90d4) !important;
}

.tab-content-text .learn-more-link:active,
.learn-more-link:active {
    transform: translateY(1px) scale(0.97);
    box-shadow: 0 2px 8px rgba(16, 175, 227, 0.2);
    transition: all 0.1s ease;
}

/* MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.open .modal-container {
    transform: translateY(0) scale(1);
}

.modal-container h2 {
    margin-top: 0;
    font-size: 2rem;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.modal-container p {
    color: #64748b;
    margin-bottom: 24px;
}

.close-modal {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.5rem;
    color: #94a3b8;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #0f172a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: #f8fafc;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10afe3;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(16, 175, 227, 0.15);
}

.submit-btn {
    margin-top: 10px;
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* FOOTER */
.footer {
    background-color: #050811;
    color: #e2e8f0;
    padding: 30px 0 20px !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 320px;
    margin: 0;
}

.footer-brand-links {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    justify-content: flex-start;
}

.footer-brand-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-brand-links a:hover {
    color: #10afe3;
}

/* New Offerings Layout */
.footer-offerings {
    text-align: center;
}

.footer-offerings h4 {
    color: #ffffff;
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    gap: 40px;
    max-width: fit-content;
    margin: 0 auto;
}

.footer-links h4 {
    color: #ffffff;
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #10afe3;
    padding-left: 5px;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0 !important;
    display: flex;
    justify-content: flex-start !important;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
    text-align: left !important;
}



.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #10afe3;
}


.gradient-text {
    background: linear-gradient(90deg, #10afe3, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* RESPONSIVE */
/* RESPONSIVE NAVIGATION */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2001;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: #e2e8f0;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background-color: #0f172a;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.hamburger span:nth-child(2) {
    margin: 4px 0;
}

.hamburger.active {
    background: #e2e8f0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 80px 40px 40px;
    transform: translateX(100%);
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.85, 0, 0.15, 1);
    overflow-y: auto;
    box-sizing: border-box;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
    visibility: visible;
}

/* Close button inside mobile nav overlay */
.mobile-nav-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2100;
    transition: background 0.2s, transform 0.2s;
    line-height: 1;
}

.mobile-nav-close:hover {
    background: #e2e8f0;
    transform: scale(1.1);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-nav-links a,
.mobile-nav-links .mobile-dropdown-btn {
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #0f172a;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    width: 100%;
    text-align: left;
}

.mobile-nav-overlay.active .mobile-nav-links a,
.mobile-nav-overlay.active .mobile-nav-links .mobile-dropdown-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered entry animation */
.mobile-nav-overlay.active .mobile-nav-links>*:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-overlay.active .mobile-nav-links>*:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav-overlay.active .mobile-nav-links>*:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav-overlay.active .mobile-nav-links>*:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav-overlay.active .mobile-nav-links>*:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding-left: 20px;
    margin-top: 16px;
    border-left: 2px solid #e2e8f0;
}

.mobile-dropdown-content.active {
    display: flex;
}

.mobile-dropdown-content a {
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #64748b;
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 60px;
    opacity: 0;
    transition: opacity 0.5s ease 0.6s;
}

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


@media (max-width: 991px) {

    .desktop-nav,
    .nav-actions .btn-demo {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .nav-content {
        height: 70px !important;
    }
}


@media (max-width: 768px) {

    .hero-grid,
    .tab-panel.active,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-brand-links {
        justify-content: center;
        width: 100%;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-brand p {
        margin: 0 auto;
        text-align: center;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-links a {
        margin-bottom: 10px;
    }

    .footer-bottom {
        justify-content: center !important;
        text-align: center !important;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .experience-section {
        padding: 40px 0 !important;
    }

    .services-section {
        margin: 0 10px 20px;
        padding: 60px 0;
        border-radius: 20px;
    }

    .tab-image img {
        height: 180px;
    }

    .tabs-container {
        display: none !important;
    }

    .tab-panels-wrapper {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 0;
        margin: 0 -20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .tab-panels-wrapper::-webkit-scrollbar {
        display: none;
    }

    .tab-panel {
        display: flex !important;
        flex: 0 0 100%;
        scroll-snap-align: center;
        flex-direction: column;
        padding: 0 20px;
        box-sizing: border-box;
        text-align: center;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .tab-panel.active {
        display: flex !important;
        grid-template-columns: none;
        gap: 20px;
    }

    .tab-image img {
        height: 240px;
        margin-bottom: 20px;
    }

    .tab-content-text {
        padding: 0;
    }

    .services-carousel-wrapper {
        position: relative;
        margin: 10px 0 30px;
        padding: 0;
    }

    .carousel-arrow {
        position: absolute;
        top: 130px;
        /* Centered on the 240px image height + margin */
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #10afe3;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

    .carousel-arrow.prev {
        left: 5px;
    }

    .carousel-arrow.next {
        right: 5px;
    }

    .carousel-arrow:hover {
        background: #ffffff;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 12px 30px rgba(16, 175, 227, 0.25);
    }

    .carousel-arrow:active {
        transform: translateY(-50%) scale(0.9);
    }

    .carousel-arrow svg {
        width: 14px;
        height: 14px;
    }

    .pagination-dots {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-bottom: 25px;
    }

    .pagination-dots .dot {
        width: 8px;
        height: 8px;
        background: #e2e8f0;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .pagination-dots .dot.active {
        background: #10afe3;
        width: 10px;
        height: 10px;
    }

    .dot.active {
        background-color: #10afe3;
        transform: scale(1.3);
        box-shadow: 0 0 10px rgba(16, 175, 227, 0.4);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background-color: #0f172a;
    color: white;
    padding: 20px 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: calc(100% - 62px) calc(100% - 62px);
}

.cookie-banner.show {
    bottom: 0;
    transform: scale(1);
    opacity: 1;
}

.cookie-banner.minimizing {
    transform: scale(0.1);
    opacity: 0;
    bottom: -100px;
}

.cookie-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 20px 0;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #cbd5e1;
}

.cookie-link {
    color: #10afe3 !important;
    text-decoration: underline !important;
    text-underline-offset: 4px;
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cookie-details {
    position: fixed;
    bottom: -100%;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: 0 auto;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: #ffffff;
    border-radius: 20px;
    z-index: 10001;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}

.cookie-details.open {
    bottom: 100px;
    /* Sits above the banner */
    max-height: 70vh;
    overflow-y: auto;
    padding-bottom: 20px;
    border: 1px solid #e2e8f0;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.cookie-details.open::-webkit-scrollbar {
    width: 6px;
}

.cookie-details.open::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 10px;
}

.cookie-details-inner {
    padding: 24px;
    color: #0f172a;
    text-align: left;
}

.cookie-details-inner h4 {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.cookie-details-inner p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 24px;
}

.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.category-info {
    max-width: 80%;
}

.category-info strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.category-info p {
    margin: 0;
    font-size: 0.85rem;
}

.always-active {
    color: #059669;
    font-weight: 700;
    font-size: 0.85rem;
}

.cookie-details-footer {
    padding-top: 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* TOGGLE SWITCH - Premium iOS Style */
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked+.slider {
    background: linear-gradient(135deg, #10afe3, #0b7bb8);
}

input:focus+.slider {
    box-shadow: 0 0 0 3px rgba(16, 175, 227, 0.2);
}

input:checked+.slider:before {
    transform: translateX(22px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.btn-cookie-primary {
    background: #10afe3;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-cookie-primary:hover {
    background: #ffffff;
    color: #0f172a;
    transform: translateY(-2px);
}

.btn-cookie-secondary {
    background: transparent;
    color: #cbd5e1;
    border: 1px solid #334155;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

/* Premium Refinement for Cancel Button visibility */
.cookie-details .btn-cookie-secondary {
    background: #ffffff;
    color: #000000;
    border: 1px solid #cbd5e1;
    transition: all 0.3s ease;
}

.cookie-details .btn-cookie-secondary:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cookie-details .btn-cookie-secondary:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}

.btn-cookie-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-color: #475569;
}

.btn-cookie-symbol {
    width: 32px;
    height: 32px;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem !important;
    border-radius: 50%;
    line-height: 1;
}

/* MODAL STYLES (for Cookie Policy) */
.modal {
    display: none;
    position: fixed;
    z-index: 20000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
}

.modal.open {
    display: block;
}

.cookie-policy-card {
    background-color: #ffffff;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
}

.cookie-policy-card h3 {
    margin-top: 0;
    font-size: 1.75rem;
    color: #0f172a;
}

.cookie-policy-card p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
}

.close {
    color: #94a3b8;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

/* COOKIE TOGGLE BUTTON - Premium Upgrade */
.cookie-toggle {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: transparent;
    color: #10afe3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0);
    opacity: 0;
}

.cookie-toggle.show {
    transform: scale(1);
    opacity: 1;
}

.cookie-toggle:hover {
    background-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: #10afe3;
}

.cookie-toggle svg {
    width: 32px;
    height: 32px;
    transition: transform 0.4s ease;
}

.cookie-toggle:hover svg {
    transform: rotate(20deg);
}

/* Tooltip for Cookie Toggle */
.toggle-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    background: #0f172a;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.toggle-tooltip::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #0f172a;
}

.cookie-toggle:hover .toggle-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-15px);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px 0;
    }

    .cookie-main-content {
        flex-direction: column;
        gap: 16px;
        padding: 10px 0;
        text-align: center;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .cookie-actions button {
        flex: 1;
        min-width: 140px;
        font-size: 0.85rem;
        padding: 12px 18px;
    }

    /* Make Accept All the most prominent on mobile */
    .cookie-actions .btn-cookie-primary {
        flex: 1 1 100%;
        order: -1;
        font-size: 0.95rem;
        padding: 14px;
    }
}

/* WORKFORCE SECTION STYLES */
.workforce-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.workforce-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.sub-badge {
    color: #10afe3;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.workforce-text h2 {
    font-size: 2.8rem;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.workforce-text h2 span {
    color: #10afe3;
}

.workforce-text p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
}

.pillar-grid-mini {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pillar-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pillar-dot {
    width: 6px;
    height: 6px;
    background: #10afe3;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(16, 175, 227, 0.5);
}

.pillar-item strong {
    color: #0f172a;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.pillar-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #64748b;
}

.workforce-visual {
    background: linear-gradient(135deg, rgba(16, 175, 227, 0.05) 0%, rgba(16, 175, 227, 0) 100%);
    border-radius: 30px;
    padding: 60px;
    border: 1px dashed rgba(16, 175, 227, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-card-main {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 280px;
    border: 1px solid #f1f5f9;
}

.stat-main {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #0f172a 0%, #10afe3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    height: 1px;
    background: #f1f5f9;
}

@media (max-width: 992px) {
    .workforce-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .workforce-section {
        padding: 70px 0;
    }

    .workforce-text h2 {
        font-size: 2.2rem;
    }
}