@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* =========================================
   CSS VARIABLES (THEME COLORS)
   ========================================= */
:root {
    --primary-blue: #2B3990;
    --primary-pink: #9E208C;
    --bg-color: #312e8f;
    --text-white: #ffffff;

    /* Responsive spacing */
    --page-padding: 8%;
    --mobile-padding: 5%;
}

/* =========================================
   GLOBAL RESET
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    background-color: var(--bg-color);
    color: var(--text-white);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

img {
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    word-break: break-word;
}

section,
header,
footer,
main,
nav,
div {
    min-width: 0;
}

/* =========================================
   NAVIGATION BAR STYLES
   ========================================= */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px var(--page-padding);
    position: fixed;
    width: 100%;
    max-width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.logo-img {
    max-height: 75px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    min-width: 0;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary-pink);
}

.btn-say-hello {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-say-hello:hover {
    background: var(--primary-blue);
    color: white;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    transform-origin: left center;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 160px var(--page-padding) 80px;
    position: relative;
    justify-content: space-between;
    contain: paint;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    width: 100%;
    min-width: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 1px;
    transform: scaleX(1.05);
    transform-origin: left;
    position: relative;
    overflow: hidden;
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: translateX(-200%) skewX(-20deg);
    animation: scan-shine 4s infinite;
    will-change: transform;
    pointer-events: none;
}

@keyframes scan-shine {
    0% {
        transform: translateX(-200%) skewX(-20deg);
    }

    20% {
        transform: translateX(400%) skewX(-20deg);
    }

    100% {
        transform: translateX(400%) skewX(-20deg);
    }
}

.hero-content h2 {
    color: var(--text-white);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    max-width: 100%;
    overflow-wrap: break-word;
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 0;
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.stat-item h3 span.symbol {
    font-size: 1.5rem;
    margin-left: 2px;
    font-weight: 700;
}

.stat-item p {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.4;
}

/* =========================================
   PARTNERS / CERTIFICATIONS
   ========================================= */
.partners-row {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.partner-card {
    background: white;
    border-radius: 12px;
    width: 125px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    color: black;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    flex: 0 0 auto;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.meta-logo {
    color: #0064e0;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.meta-logo svg {
    width: 24px;
    height: 24px;
    fill: #0064e0;
}

.partner-card .small-text {
    font-size: 0.65rem;
    color: #555;
    text-align: center;
}

.google-logo {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.google-logo svg {
    width: 60px;
    height: 24px;
}

.badge-circle {
    width: 90px;
    height: 90px;
    border: 1px dashed #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.badge-inner {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.badge-icon {
    width: 30px;
    height: 30px;
}

/* =========================================
   RIGHT SIDE - ROCKET & DECORATIONS
   ========================================= */
.hero-right {
    position: relative;
    width: 40%;
    max-width: 600px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    min-width: 0;
}

.tech-ring {
    position: absolute;
    width: 260px;
    height: 260px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: spin-reverse 20s linear infinite;
    z-index: 1;
    will-change: transform;
}

.tech-ring::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid rgba(158, 32, 140, 0.2);
    border-radius: 50%;
    animation: pulse-ring 3s ease-out infinite;
    will-change: transform, opacity;
}

@keyframes spin-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.rocket-img {
    width: 220px;
    max-width: 80%;
    transform: rotate(45deg);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
    will-change: transform;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(-25px) rotate(48deg);
    }
}

.decor {
    position: absolute;
    color: white;
    font-weight: 400;
    animation: pulse 3s infinite alternate;
    will-change: opacity;
    pointer-events: none;
}

.cross {
    font-size: 2rem;
    line-height: 1;
}

.circle-decor {
    width: 15px;
    height: 15px;
    border: 2px solid white;
    border-radius: 50%;
}

.d1 {
    top: 10%;
    left: 20%;
    font-size: 2.5rem;
}

.d2 {
    top: 40%;
    right: 5%;
    font-size: 1.5rem;
}

.d3 {
    bottom: 35%;
    right: 15%;
    font-size: 2rem;
}

.d4 {
    bottom: 25%;
    left: 0%;
    font-size: 1.8rem;
}

.d5 {
    bottom: 15%;
    left: 35%;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

/* =========================================
   CANVAS BACKGROUND
   ========================================= */
#canvas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

/* =========================================
   BRAND SLIDER SECTION
   ========================================= */
.brands-section {
    background-color: #ffffff;
    padding: 40px var(--page-padding);
    position: relative;
    z-index: 10;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.05);
    width: 100%;
    overflow: hidden;
}

.brand-slider-container {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.brand-slider-container::-webkit-scrollbar {
    display: none;
}

.brand-slider-container:active {
    cursor: grabbing;
}

.brand-slider-track {
    display: flex;
    gap: 25px;
    width: max-content;
}

.brand-box {
    flex: 0 0 200px;
    height: 100px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    user-select: none;
    pointer-events: none;
    color: #111;
    overflow: hidden;
    padding: 12px;
    box-sizing: border-box;
}

.brand-box img,
.brand-box .brand-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* =========================================
   OUR SERVICES SECTION
   ========================================= */
.services-section {
    position: relative;
    padding: 130px var(--page-padding) 100px;
    scroll-margin-top: 80px;
    background: linear-gradient(180deg, #110e3d, var(--bg-color));
    overflow: hidden;
    z-index: 10;
    contain: paint;
}

.services-bg-tech {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.1) 2px,
        transparent 2px
    );
    background-size: 40px 40px;
    animation: pan-tech-grid 30s linear infinite;
    z-index: 1;
    opacity: 0.6;
    will-change: transform;
}

@keyframes pan-tech-grid {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-50px, -50px);
    }
}

.services-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.3;
    animation: float-orb 8s ease-in-out infinite alternate;
    will-change: transform;
    pointer-events: none;
}

.services-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-pink);
    top: -100px;
    right: -100px;
}

.services-orb-2 {
    width: 300px;
    height: 300px;
    background: #00d2ff;
    bottom: -50px;
    left: -100px;
    animation-delay: -4s;
}

.services-container {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.services-header {
    margin-bottom: 60px;
    max-width: 1000px;
}

.services-header h4 {
    color: var(--primary-pink);
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #d1d5f0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 50px 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    min-width: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-pink);
    box-shadow: 0 20px 40px rgba(158, 32, 140, 0.2);
}

.service-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon svg {
    width: 45px;
    height: 45px;
    fill: none;
    stroke: var(--primary-pink);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.service-card p {
    color: #aeb5e1;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    flex-grow: 1;
}

.btn-card-know {
    background: white;
    color: black;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-card-know:hover {
    background: var(--primary-pink);
    color: white;
    box-shadow: 0 5px 15px rgba(158, 32, 140, 0.4);
}

/* =========================================
   AUDIT & INFO SECTION
   ========================================= */
.audit-section {
    position: relative;
    background: linear-gradient(135deg, #110e3d, #2B3990);
    padding: 100px var(--page-padding);
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    contain: paint;
}

#audit-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: float-orb 10s infinite ease-in-out alternate;
    will-change: transform;
    pointer-events: none;
}

.orb-pink {
    background: var(--primary-pink);
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    opacity: 0.5;
}

.orb-blue {
    background: #00d2ff;
    width: 250px;
    height: 250px;
    bottom: -50px;
    right: -50px;
    opacity: 0.4;
    animation-delay: -5s;
}

@keyframes float-orb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.2);
    }
}

.audit-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    width: 100%;
    max-width: 1400px;
    justify-content: space-between;
}

.audit-content {
    flex: 1;
    min-width: 300px;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.audit-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.audit-content h2 span {
    color: var(--primary-pink);
}

.audit-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #d1d5f0;
}

.audit-content strong {
    color: white;
}

.btn-outline-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 2px solid white;
    color: white;
    background: transparent;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    width: max-content;
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 40px;
    text-decoration: none;
}

.btn-outline-modern:hover {
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.tech-icons-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float-icon 4s infinite ease-in-out;
    will-change: transform;
    flex-shrink: 0;
}

.tech-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.tech-icon:nth-child(3) {
    animation-delay: 1s;
}

.tech-icon:nth-child(4) {
    animation-delay: 1.5s;
}

.tech-icon:nth-child(5) {
    animation-delay: 2s;
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.tech-icon svg {
    width: 24px;
    height: 24px;
}

.audit-form-wrapper {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
}

.glass-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow:
        0 20px 40px rgba(0,0,0,0.3),
        inset 0 0 0 1px rgba(255,255,255,0.05);
}

.glass-form h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
    min-width: 0;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-group input:focus {
    border-color: var(--primary-pink);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(158, 32, 140, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    color: #ccc;
}

.checkbox-group input {
    accent-color: var(--primary-pink);
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

.fake-captcha {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    color: #333;
    font-size: 0.9rem;
}

.fake-captcha .check-box {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 2px;
    background: white;
    flex-shrink: 0;
}

.fake-captcha .logo-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.6rem;
    color: #555;
}

.btn-submit-gradient {
    width: 100%;
    padding: 15px;
    background: linear-gradient(
        90deg,
        var(--primary-pink),
        var(--primary-blue)
    );
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    letter-spacing: 1px;
}

.btn-submit-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(158, 32, 140, 0.4);
}

.secure-text {
    text-align: center;
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

/* =========================================
   OUR WORK / CASE STUDIES SECTION
   ========================================= */
.portfolio-section {
    position: relative;
    background: linear-gradient(
        -45deg,
        #110e3d,
        #0f0c29,
        #23114a,
        #110e3d
    );
    background-size: 400% 400%;
    animation: bg-gradient-flow 15s ease infinite;
    padding: 130px var(--page-padding) 100px;
    scroll-margin-top: 80px;
    overflow: hidden;
    color: white;
    z-index: 10;
    contain: paint;
    will-change: background-position;
}

@keyframes bg-gradient-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.tech-grid-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    perspective: 1000px;
    z-index: 1;
    overflow: hidden;
    opacity: 0.3;
    pointer-events: none;
}

.tech-grid-bg {
    position: absolute;
    width: 200%;
    height: 200%;
    bottom: -50%;
    left: -50%;
    background-image:
        linear-gradient(
            rgba(158, 32, 140, 0.4) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(158, 32, 140, 0.4) 1px,
            transparent 1px
        );
    background-size: 50px 50px;
    transform: rotateX(75deg);
    animation: grid-move 20s linear infinite;
    will-change: transform;
}

@keyframes grid-move {
    0% {
        transform: rotateX(75deg) translateY(0);
    }

    100% {
        transform: rotateX(75deg) translateY(50px);
    }
}

.port-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.4;
    animation: float-orb 10s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    will-change: transform;
    pointer-events: none;
}

.port-orb-pink {
    background: var(--primary-pink, #ff0f7b);
    width: 400px;
    height: 400px;
    top: 5%;
    right: -100px;
}

.port-orb-blue {
    background: #00d2ff;
    width: 300px;
    height: 300px;
    bottom: 5%;
    left: -100px;
    animation-delay: -5s;
}

.portfolio-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    align-items: center;
}

.portfolio-content {
    flex: 1 1 320px;
    max-width: 100%;
    min-width: 320px;
}

.section-subtitle {
    color: var(--primary-pink, #ff0f7b);
    font-size: 1.8rem;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-subtitle::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary-pink, #ff0f7b);
    flex-shrink: 0;
}

.section-title {
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
    overflow-wrap: break-word;
}

.section-title span {
    background: linear-gradient(
        90deg,
        #fff,
        rgba(255,255,255,0.3)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.section-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d1d5f0;
    margin-bottom: 40px;
    max-width: 500px;
}

.portfolio-section .section-desc {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.cs-stat-box {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--primary-pink, #ff0f7b);
    padding: 20px;
    border-radius: 0 16px 16px 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 1px 1px 0 rgba(255,255,255,0.05);
    transition:
        transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background 0.3s;
}

.cs-stat-box:hover {
    transform: translateX(10px) translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow:
        inset 1px 1px 0 rgba(255,255,255,0.1),
        0 10px 20px rgba(0,0,0,0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
}

.stat-number .symbol {
    color: var(--primary-pink, #ff0f7b);
    font-size: 1.5rem;
    margin-left: 2px;
}

.cs-stat-box p {
    font-size: 0.85rem;
    color: #aeb5e1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.show-more-btn {
    display: inline-block;
    margin-bottom: 40px;
    padding: 12px 35px;
    background: var(--primary-pink, #ff0f7b);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(255, 15, 123, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.show-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 15, 123, 0.5);
    color: white;
}

.slider-controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: white;
    color: #110e3d;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

#left-slide-wrapper,
.portfolio-showcase {
    transition:
        transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.5s ease-out;
    will-change: transform, opacity;
}

.portfolio-showcase {
    flex: 1 1 320px;
    max-width: 100%;
    min-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    transform-style: preserve-3d;
    transition:
        transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.glass-dashboard {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateZ(20px);
    width: 100%;
}

.browser-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.url-bar {
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 6px 15px;
    font-size: 0.7rem;
    color: #ccc;
    margin-left: 10px;
    flex-grow: 1;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-img {
    position: relative;
    width: 100%;
    height: 350px;
}

.dashboard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(17, 14, 61, 0.95) 0%,
        rgba(17, 14, 61, 0.2) 60%,
        transparent 100%
    );
}

.floating-element {
    position: absolute;
    transform-style: preserve-3d;
    animation: float-element 6s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    will-change: transform;
}

.float-search {
    bottom: 20%;
    left: -10%;
    display: flex;
    transform: translateZ(70px);
    box-shadow:
        0 25px 50px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.1);
    border-radius: 50px;
    overflow: hidden;
    max-width: calc(100vw - 30px);
}

.search-input {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #111;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 280px;
}

.search-btn {
    background: var(--primary-pink, #ff0f7b);
    padding: 15px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.float-badge {
    bottom: 10%;
    right: -5%;
    transform: translateZ(90px);
    animation-delay: -3s;
}

.badge-ribbon {
    background: linear-gradient(135deg, #ff0f7b, #f89b29);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    box-shadow:
        0 20px 40px rgba(255, 15, 123, 0.4),
        inset 0 2px 5px rgba(255,255,255,0.5);
    border: 3px solid rgba(255,255,255,0.9);
}

.badge-ribbon .hash {
    font-size: 1.5rem;
    margin-right: 2px;
    opacity: 0.9;
}

@keyframes float-element {
    0% {
        transform: translateY(0px) translateZ(70px);
    }

    100% {
        transform: translateY(-20px) translateZ(70px);
    }
}

/* =========================================
   AI DIGITAL WORLD SECTION
   ========================================= */
.ai-section {
    position: relative;
    padding: 100px var(--page-padding);
    background: linear-gradient(180deg, #110e3d, var(--bg-color));
    color: white;
    overflow: hidden;
    z-index: 5;
    contain: paint;
}

#ai-canvas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.7;
    pointer-events: none;
}

.ai-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 1;
    opacity: 0.35;
    animation: float-orb 12s ease-in-out infinite alternate;
    will-change: transform;
    pointer-events: none;
}

.ai-orb-1 {
    width: 350px;
    height: 350px;
    background: var(--primary-pink);
    top: -50px;
    right: 5%;
}

.ai-orb-2 {
    width: 250px;
    height: 250px;
    background: #00d2ff;
    bottom: 10%;
    left: -50px;
    animation-delay: -6s;
}

.ai-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.ai-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.ai-text-content {
    flex: 1 1 50%;
    min-width: 0;
}

.ai-title {
    font-size: 2.8rem;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
    overflow-wrap: break-word;
}

.ai-title span {
    color: var(--primary-pink);
    display: block;
}

.ai-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #aeb5e1;
    letter-spacing: 0.5px;
}

.ai-text-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #d1d5f0;
}

.ai-text-content strong {
    color: white;
}

.ai-btn {
    margin-top: 15px;
    background: linear-gradient(
        90deg,
        var(--primary-pink),
        #ff0f7b
    );
    border: none;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
}

.ai-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(158, 32, 140, 0.5);
    background: linear-gradient(
        90deg,
        #ff0f7b,
        var(--primary-pink)
    );
}

.ai-graphic-wrapper {
    flex: 1 1 50%;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float-ai-graphic 6s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes float-ai-graphic {
    0% {
        transform: translateY(0px) scale(1);
    }

    100% {
        transform: translateY(-20px) scale(1.02);
    }
}

.ai-svg-node {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(158, 32, 140, 0.4));
}

.ai-pulse-path {
    stroke-dasharray: 10;
    animation: dash-flow 3s linear infinite;
    will-change: stroke-dashoffset;
}

@keyframes dash-flow {
    to {
        stroke-dashoffset: -20;
    }
}

.ai-platforms {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 60px;
}

.platforms-title {
    color: var(--primary-pink);
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    line-height: 1.25;
}

.platforms-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.plat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: 12px;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.plat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-pink);
    box-shadow: 0 10px 25px rgba(158, 32, 140, 0.3);
}

.plat-card.clutch {
    font-family: sans-serif;
    letter-spacing: 1px;
}

.plat-card.trustpilot {
    color: #00b67a;
    display: flex;
    gap: 8px;
    align-items: center;
}

.plat-card.trustpilot span {
    color: white;
}

.plat-card.agency {
    font-style: italic;
}

.plat-card.designrush {
    color: #0044eb;
    font-weight: 900;
    background: white;
}

.plat-card.sortlist {
    background: #0011ff;
    border-color: #0011ff;
    border-radius: 0 12px 12px 0;
    border-left: 4px solid #fff;
}

/* =========================================
   PARTNER SECTION
   ========================================= */
.partner-section {
    position: relative;
    padding: 130px var(--page-padding) 100px;
    scroll-margin-top: 80px;
    background: linear-gradient(
        135deg,
        #0f0c29,
        #110e3d,
        var(--bg-color)
    );
    color: white;
    overflow: hidden;
    z-index: 5;
    contain: paint;
}

.partner-bg-tech {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px
        );
    background-size: 30px 30px;
    animation: pan-tech-grid 25s linear infinite;
    z-index: 1;
    will-change: transform;
}

#partner-canvas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.5;
    pointer-events: none;
}

.partner-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 1;
    opacity: 0.3;
    animation: float-orb 10s ease-in-out infinite alternate;
    will-change: transform;
    pointer-events: none;
}

.partner-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-pink);
    top: -100px;
    left: -100px;
}

.partner-orb-2 {
    width: 300px;
    height: 300px;
    background: #00d2ff;
    bottom: -50px;
    right: -100px;
    animation-delay: -3s;
}

.partner-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.partner-content-block {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.partner-content-block:hover {
    transform: translateY(-5px);
    border-color: rgba(158, 32, 140, 0.3);
}

.partner-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: white;
    letter-spacing: 1px;
    line-height: 1.2;
}

.partner-title span {
    color: var(--primary-pink);
}

.partner-content-block p,
.partner-text-side p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d1d5f0;
}

.partner-content-block strong {
    color: white;
}

.partner-bottom-row {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.partner-text-side {
    flex: 1;
    min-width: 0;
}

.partner-badge-side {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.google-partner-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition:
        transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.google-partner-box:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 50px rgba(158, 32, 140, 0.3);
}

.external-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 16px;
    height: 16px;
    color: #4285F4;
    opacity: 0.7;
}

.g-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.g-text {
    color: #5f6368;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
}

/* =========================================
   OLD FAQ & TRUSTED AGENCY SECTION
   ========================================= */
.faq-section {
    position: relative;
    padding: 130px var(--page-padding) 100px;
    scroll-margin-top: 80px;
    background: linear-gradient(
        to bottom,
        var(--bg-color),
        #110e3d
    );
    color: white;
    overflow: hidden;
    z-index: 5;
}

#faq-canvas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.6;
    pointer-events: none;
}

.faq-container {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.faq-intro-block {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.faq-main-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--primary-pink);
    letter-spacing: 1px;
    line-height: 1.2;
}

.faq-intro-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d1d5f0;
    margin-bottom: 20px;
}

.faq-intro-block p:last-child {
    margin-bottom: 0;
}

.faq-intro-block strong {
    color: white;
}

.faq-wrapper {
    width: 100%;
    background: rgba(17, 14, 61, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 50px;
}

.faq-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--primary-pink);
    margin-bottom: 30px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    transition: color 0.3s ease;
    gap: 20px;
    text-align: left;
}

.accordion-header:hover,
.accordion-header.active-header {
    color: var(--primary-pink);
}

.accordion-header .icon {
    font-size: 1.8rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    line-height: 1;
    flex-shrink: 0;
}

.accordion-header.active-header .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content p {
    padding-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: #aeb5e1;
}

/* =========================================
   TESTIMONIAL SECTION
   ========================================= */
.testimonial-section {
    position: relative;
    padding: 130px var(--page-padding) 100px;
    scroll-margin-top: 80px;
    background: linear-gradient(
        to bottom,
        var(--bg-color),
        #110e3d
    );
    color: white;
    overflow: hidden;
    z-index: 5;
    text-align: center;
    contain: paint;
}

.testi-bg-tech {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 50px 50px;
    animation: pan-tech-grid 20s linear infinite;
    z-index: 1;
    will-change: transform;
}

#testimonial-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.8;
    pointer-events: none;
}

.testimonial-container {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.testi-title {
    color: var(--primary-pink);
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease-out;
    line-height: 1.25;
}

.testi-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 700;
    color: white;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease-out 0.2s;
}

.testi-slider-wrapper {
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease-out 0.4s;
    padding: 20px 0 40px 0;
    width: 100%;
}

.testi-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testi-slide {
    flex: 0 0 100%;
    padding: 40px 60px;
    box-sizing: border-box;
    position: relative;
    min-width: 0;
}

.quote-icon {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.9);
    position: absolute;
    font-family: serif;
    line-height: 1;
    font-weight: 900;
}

.quote-left {
    top: 0;
    left: 0;
}

.quote-right {
    bottom: 0;
    right: 0;
}

.testi-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e2e5fc;
    margin-bottom: 35px;
    font-weight: 400;
}

.testi-author {
    font-weight: 900;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 5px;
}

.testi-role {
    font-size: 0.95rem;
    color: var(--primary-pink);
    font-weight: 600;
}

.testi-company {
    font-size: 0.85rem;
    color: #aeb5e1;
}

.testi-navigation-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(17, 14, 61, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 40px;
    margin-top: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testi-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.testi-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-btn:hover {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(158, 32, 140, 0.4);
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
}

.testi-dot.active {
    background: var(--primary-pink);
    transform: scale(1.3);
}

.testi-animate-in {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* =========================================
   INSIGHTS SECTION
   ========================================= */
.insights-section {
    position: relative;
    padding: 130px var(--page-padding) 100px;
    scroll-margin-top: 80px;
    background: linear-gradient(180deg, #110e3d, var(--bg-color));
    color: white;
    overflow: hidden;
    z-index: 5;
    contain: paint;
}

.insights-bg-tech {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
    animation: pan-tech-grid 40s linear infinite;
    z-index: 1;
    will-change: transform;
}

#insights-canvas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.6;
    pointer-events: none;
}

.insights-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.insights-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: var(--primary-pink);
    letter-spacing: 1px;
    line-height: 1.2;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.insight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    min-width: 0;
}

.insight-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-pink);
    box-shadow: 0 15px 35px rgba(158, 32, 140, 0.3);
}

.insight-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.insight-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insight-card:hover .insight-img-wrapper img {
    transform: scale(1.1);
}

.insight-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(17,14,61,0.9)
    );
}

.insight-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.insight-date {
    color: var(--primary-pink);
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.insight-title-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    overflow-wrap: break-word;
}

.insight-card:hover .insight-title-text {
    color: var(--primary-pink);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
    position: relative;
    padding: 130px var(--page-padding) 100px;
    scroll-margin-top: 80px;
    background: linear-gradient(
        135deg,
        #110e3d,
        var(--bg-color),
        #0f0c29
    );
    color: white;
    overflow: hidden;
    z-index: 5;
    contain: paint;
}

.contact-bg-tech {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px
        );
    background-size: 40px 40px;
    animation: pan-tech-grid 30s linear infinite reverse;
    z-index: 1;
    will-change: transform;
}

#contact-canvas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.5;
    pointer-events: none;
}

.contact-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 1;
    opacity: 0.3;
    animation: float-orb 12s ease-in-out infinite alternate;
    will-change: transform;
    pointer-events: none;
}

.contact-orb-1 {
    width: 350px;
    height: 350px;
    background: var(--primary-pink);
    top: -50px;
    left: -100px;
}

.contact-orb-2 {
    width: 300px;
    height: 300px;
    background: #00d2ff;
    bottom: -50px;
    right: -50px;
    animation-delay: -4s;
}

.contact-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.contact-info-side {
    flex: 1;
    min-width: 320px;
}

.contact-main-title {
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    overflow-wrap: break-word;
}

.contact-main-title span {
    color: var(--primary-pink);
}

.contact-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d1d5f0;
    margin-bottom: 40px;
    max-width: 500px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    min-width: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-detail-item:hover .contact-icon {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(158, 32, 140, 0.4);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.contact-form-side {
    flex: 1.2;
    min-width: 320px;
}

.contact-glass-form {
    padding: 50px;
}

.contact-form-title {
    font-size: 1.15rem !important;
    text-align: left !important;
    margin-bottom: 30px !important;
    color: white;
    line-height: 1.5;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .input-group {
    flex: 1;
    min-width: 0;
}

.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
    appearance: none;
    -webkit-appearance: none;
    font-family: 'Inter', sans-serif;
}

.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--primary-pink);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(158, 32, 140, 0.3);
}

.input-group select option {
    background: var(--bg-color);
    color: white;
}

.input-group textarea {
    resize: vertical;
    min-height: 100px;
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(255,255,255,0.5);
}

.flag-input-group {
    position: relative;
}

.flag-placeholder {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    font-size: 1rem;
    z-index: 10;
}

.flag-placeholder svg {
    opacity: 0.7;
}

.btn-contact-submit {
    width: max-content;
    max-width: 100%;
    padding: 15px 40px;
}

/* =========================================
   FOOTER STYLES
   ========================================= */
.main-footer {
    position: relative;
    background-color: #000;
    color: white;
    padding: 80px var(--page-padding) 0;
    overflow: hidden;
    z-index: 10;
}

.footer-tech-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #000 0%,
        #4a0000 100%
    );
    opacity: 0.6;
    z-index: 1;
}

#footer-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand-side .footer-logo img {
    max-height: 60px;
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: #d8202c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: white;
    color: #d8202c;
}

.footer-links h4,
.contact-box h4 {
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #d8202c;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    min-width: 0;
}

.c-icon {
    color: #d8202c;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item .label {
    font-size: 0.65rem;
    color: #888;
    font-weight: 900;
    margin-bottom: 2px;
}

.contact-item .value {
    font-size: 0.85rem;
    color: #fff;
    overflow-wrap: anywhere;
}

.footer-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
    width: 100%;
}

.copyright-bar {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    text-align: center;
}

.copyright-bar p {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: #666;
    line-height: 1.6;
}

/* =========================================
   TEAM SECTION - MODERNIZED
   ========================================= */
.team-section {
    position: relative;
    padding: 130px var(--page-padding) 100px;
    scroll-margin-top: 80px;
    background: radial-gradient(
        circle at top,
        #23194a 0%,
        #120c29 100%
    );
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

#teamParticleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.team-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.team-section .section-title {
    text-align: left;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.team-card {
    background: rgba(43, 31, 92, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
    min-width: 0;
}

.team-card:hover {
    transform: translateY(-5px);
    background: rgba(53, 40, 107, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.member-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .member-image img {
    transform: scale(1.08);
}

.member-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.member-info h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    letter-spacing: 0.3px;
    line-height: 1.25;
    overflow-wrap: break-word;
}

.member-info .role {
    color: #a396d3;
    font-size: 0.85rem;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 1.3;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #c4b5fd;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-links a:hover {
    background: #6366f1;
    color: #ffffff;
    border-color: #6366f1;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* =========================================
   ASTHA FAQ SECTION
   ========================================= */
.astha-faq-section {
    background-color: #0d0628;
    padding: 130px var(--page-padding) 100px;
    scroll-margin-top: 80px;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    overflow: hidden;
}

.astha-faq-section .faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
    width: 100%;
}

.faq-subtitle {
    color: #ff0f7b;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.3;
}

.astha-faq-section .faq-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
}

.faq-title span {
    color: #ff0f7b;
}

.faq-description {
    color: #a39eb8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.faq-btn {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ff0f7b;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 100%;
}

.faq-btn:hover {
    background: #ff0f7b;
    box-shadow: 0 10px 25px rgba(255, 15, 123, 0.4);
    transform: translateY(-3px);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 15, 123, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active {
    border-color: #ff0f7b;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: #ff0f7b;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    color: #a39eb8;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: #ff0f7b;
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer-inner {
    padding: 0 25px 25px 25px;
    color: #d1cde0;
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid transparent;
}

[data-animate="fade-right"] {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-left"] {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.is-visible {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* =========================================
   TABLET
   ========================================= */
@media (max-width: 1200px) {

    nav {
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero,
    .brands-section,
    .services-section,
    .audit-section,
    .portfolio-section,
    .ai-section,
    .partner-section,
    .faq-section,
    .testimonial-section,
    .insights-section,
    .contact-section,
    .team-section,
    .astha-faq-section,
    .main-footer {
        --page-padding: 5%;
    }

    .hero {
        padding-top: 145px;
    }

    .hero-content h1 {
        font-size: clamp(2.7rem, 5vw, 3.5rem);
    }

    .nav-links {
        gap: 20px;
    }

    .nav-wrapper {
        gap: 20px;
    }

    .services-grid {
        gap: 25px;
    }

    .portfolio-container {
        gap: 35px;
    }

    .ai-content-wrapper {
        gap: 40px;
    }

    .footer-container {
        gap: 25px;
    }
}

/* =========================================
   TABLET / SMALL LAPTOP
   ========================================= */
@media (max-width: 1024px) {

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 145px;
        padding-bottom: 70px;
    }

    .hero-content {
        width: 100%;
        align-items: center;
    }

    .hero-content h1 {
        transform: scaleX(1);
        transform-origin: center;
    }

    .hero-content h2 {
        max-width: 700px;
    }

    .hero-right {
        width: 100%;
        max-width: 700px;
        height: 400px;
        margin-top: 30px;
        transform: scale(0.9);
    }

    .stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .partners-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .audit-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .audit-content {
        max-width: 100%;
        align-items: center;
    }

    .tech-icons-row {
        justify-content: center;
    }

    .audit-form-wrapper {
        width: 100%;
        max-width: 600px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        align-items: center;
        text-align: center;
    }

    .service-icon {
        justify-content: center;
    }

    .portfolio-container {
        flex-direction: column;
        text-align: center;
    }

    .portfolio-content,
    .portfolio-showcase {
        width: 100%;
        max-width: 850px;
        min-width: 0;
    }

    .section-subtitle {
        justify-content: center;
    }

    .section-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .case-study-stats {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

    .slider-controls {
        justify-content: center;
        margin-bottom: 40px;
    }

    .float-search {
        left: 5%;
        bottom: -10%;
    }

    .search-input {
        min-width: 200px;
        font-size: 0.8rem;
    }

    .float-badge {
        right: 5%;
        bottom: -15%;
    }

    .ai-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .ai-text-content,
    .ai-graphic-wrapper {
        width: 100%;
        max-width: 800px;
    }

    .ai-graphic-wrapper {
        margin-top: 30px;
    }

    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        align-items: stretch;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .astha-faq-section .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .astha-faq-section .faq-header {
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================
   LARGE MOBILE / TABLET
   ========================================= */
@media (max-width: 768px) {

    /* ---------- GLOBAL ---------- */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        font-size: 14px;
    }

    section {
        width: 100%;
        max-width: 100%;
    }

    /* Prevent oversized background graphics from creating horizontal scroll */
    .services-orb,
    .orb,
    .port-orb,
    .ai-orb,
    .partner-orb,
    .contact-orb {
        max-width: none;
    }

    /* ---------- NAV ---------- */
    nav {
        padding: 10px 5%;
        min-height: 70px;
    }

    .logo-container {
        max-width: 65%;
    }

    .logo-img {
        max-height: 52px;
        max-width: 145px;
    }

    .menu-toggle {
        display: flex;
        width: 29px;
        height: 20px;
    }

    .nav-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 25px 15px 30px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        gap: 10px;
        overflow-x: hidden;
    }

    .nav-wrapper.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(15px);
        transition: all 0.4s ease;
    }

    .nav-wrapper.active .nav-links li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-wrapper.active .nav-links li:nth-child(1) {
        transition-delay: 0.08s;
    }

    .nav-wrapper.active .nav-links li:nth-child(2) {
        transition-delay: 0.14s;
    }

    .nav-wrapper.active .nav-links li:nth-child(3) {
        transition-delay: 0.20s;
    }

    .nav-wrapper.active .nav-links li:nth-child(4) {
        transition-delay: 0.26s;
    }

    .nav-wrapper.active .nav-links li:nth-child(5) {
        transition-delay: 0.32s;
    }

    .nav-links a {
        display: inline-block;
        padding: 12px 0;
        font-size: 0.85rem;
        white-space: normal;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 6px;
        left: 50%;
        background-color: var(--primary-pink);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-links a:hover::after {
        width: 50%;
    }

    .nav-wrapper .btn-say-hello {
        margin-top: 10px;
        opacity: 0;
        transform: translateY(15px);
        transition: all 0.4s ease 0.35s;
    }

    .nav-wrapper.active .btn-say-hello {
        opacity: 1;
        transform: translateY(0);
    }

    .btn-say-hello {
        padding: 9px 20px;
        font-size: 0.78rem;
    }

    /* ---------- HERO ---------- */
    .hero {
        min-height: auto;
        padding: 115px 5% 50px;
        gap: 10px;
    }

    .hero-content {
        gap: 12px;
    }

    .hero-content h1 {
        font-size: clamp(1.45rem, 5.5vw, 2rem);
        line-height: 1.12;
        letter-spacing: 0.4px;
        max-width: 100%;
    }

    .hero-content h2 {
        font-size: clamp(0.58rem, 2.2vw, 0.72rem);
        line-height: 1.5;
        margin-bottom: 12px;
        letter-spacing: 0.3px;
        max-width: 95%;
    }

    .stats {
        width: 100%;
        gap: 18px 8px;
        margin-bottom: 8px;
        justify-content: center;
    }

    .stat-item {
        width: 42%;
        max-width: 130px;
    }

    .stat-item h3 {
        font-size: clamp(1rem, 4vw, 1.35rem);
        margin-bottom: 3px;
    }

    .stat-item h3 span.symbol {
        font-size: 0.8em;
    }

    .stat-item p {
        font-size: clamp(0.48rem, 1.9vw, 0.62rem);
        line-height: 1.35;
    }

    .partners-row {
        gap: 8px;
        margin-top: 10px;
        justify-content: center;
        width: 100%;
    }

    .partner-card {
        width: 100px;
        height: 100px;
        padding: 10px;
        border-radius: 10px;
    }

    .meta-logo {
        font-size: 0.9rem;
    }

    .meta-logo svg {
        width: 18px;
        height: 18px;
    }

    .partner-card .small-text {
        font-size: 0.5rem;
    }

    .badge-circle {
        width: 66px;
        height: 66px;
    }

    .badge-inner {
        width: 38px;
        height: 38px;
    }

    .badge-icon {
        width: 23px;
        height: 23px;
    }

    .google-logo svg {
        width: 48px;
        height: 20px;
    }

    .hero-right {
        width: 100%;
        height: 320px;
        margin-top: 10px;
        transform: scale(0.72);
        transform-origin: center center;
    }

    /* ---------- GENERIC SECTION SPACING ---------- */
    .services-section,
    .portfolio-section,
    .partner-section,
    .faq-section,
    .testimonial-section,
    .insights-section,
    .contact-section,
    .team-section,
    .astha-faq-section {
        padding-top: 75px;
        padding-bottom: 65px;
    }

    .audit-section,
    .ai-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .brands-section {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    /* ---------- SERVICES ---------- */
    .services-header {
        margin-bottom: 35px;
        text-align: center;
    }

    .services-header h4 {
        font-size: clamp(0.95rem, 3.8vw, 1.2rem);
        line-height: 1.2;
        margin-bottom: 12px;
        letter-spacing: 0.6px;
    }

    .services-header p {
        font-size: 0.78rem;
        line-height: 1.6;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .service-icon {
        gap: 10px;
        margin-bottom: 15px;
        font-size: 0.78rem;
        letter-spacing: 0.5px;
    }

    .service-icon svg {
        width: 34px;
        height: 34px;
    }

    .service-card p {
        font-size: 0.76rem;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .btn-card-know {
        padding: 10px 18px;
        font-size: 0.68rem;
        gap: 6px;
    }

    /* ---------- AUDIT ---------- */
    .audit-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .audit-container {
        gap: 35px;
    }

    .audit-content {
        min-width: 0;
        width: 100%;
    }

    .audit-content h2 {
        font-size: clamp(1.25rem, 6vw, 1.7rem);
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .audit-content p {
        font-size: 0.76rem;
        line-height: 1.65;
        margin-bottom: 14px;
    }

    .btn-outline-modern {
        padding: 10px 20px;
        font-size: 0.68rem;
        margin-top: 5px;
        margin-bottom: 25px;
    }

    .tech-icons-row {
        gap: 9px;
    }

    .tech-icon {
        width: 40px;
        height: 40px;
        border-radius: 9px;
    }

    .tech-icon svg {
        width: 19px;
        height: 19px;
    }

    .audit-form-wrapper {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }

    .glass-form {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .glass-form h3 {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .input-group {
        margin-bottom: 17px;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        padding: 10px 12px;
        font-size: 0.78rem;
    }

    .input-group textarea {
        min-height: 85px;
    }

    .checkbox-group {
        font-size: 0.67rem;
        gap: 7px;
        margin-bottom: 17px;
        align-items: flex-start;
    }

    .checkbox-group input {
        margin-top: 1px;
    }

    .fake-captcha {
        font-size: 0.68rem;
        padding: 8px 10px;
        margin-bottom: 17px;
    }

    .fake-captcha .check-box {
        width: 20px;
        height: 20px;
    }

    .btn-submit-gradient {
        padding: 12px;
        font-size: 0.75rem;
    }

    .secure-text {
        font-size: 0.62rem;
    }

    /* ---------- PORTFOLIO ---------- */
    .portfolio-container {
        gap: 25px;
    }

    .portfolio-content,
    .portfolio-showcase {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .section-subtitle {
        font-size: clamp(0.78rem, 3.5vw, 1rem);
        letter-spacing: 1px;
        gap: 7px;
        justify-content: center;
        line-height: 1.2;
    }

    .section-subtitle::before {
        width: 25px;
        height: 1.5px;
    }

    .section-title {
        font-size: clamp(1.1rem, 5vw, 1.5rem);
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .section-desc {
        font-size: 0.76rem;
        line-height: 1.6;
        margin-bottom: 25px;
        max-width: 100%;
    }

    .portfolio-section .section-desc {
        -webkit-line-clamp: 5;
    }

    .case-study-stats {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
        width: 100%;
    }

    .cs-stat-box {
        border-left: none;
        border-bottom: 2px solid var(--primary-pink);
        border-radius: 10px 10px 0 0;
        padding: 14px;
    }

    .cs-stat-box:hover {
        transform: translateY(-2px);
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-number .symbol {
        font-size: 1rem;
    }

    .cs-stat-box p {
        font-size: 0.62rem;
    }

    .show-more-btn {
        padding: 10px 23px;
        font-size: 0.7rem;
        margin-bottom: 25px;
    }

    .slider-controls {
        gap: 10px;
        margin-bottom: 20px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .mockup-wrapper {
        transform: scale(0.94);
        max-width: 100%;
    }

    .dashboard-img {
        height: 220px;
    }

    .browser-header {
        padding: 9px 10px;
        gap: 5px;
    }

    .browser-header .dot {
        width: 8px;
        height: 8px;
    }

    .url-bar {
        font-size: 0.56rem;
        padding: 5px 8px;
        margin-left: 4px;
    }

    .float-search {
        left: 1%;
        bottom: -7%;
        max-width: 98%;
    }

    .search-input {
        min-width: 0;
        width: 100%;
        padding: 10px 14px;
        font-size: 0.65rem;
    }

    .search-btn {
        padding: 10px 14px;
    }

    .float-badge {
        right: 2%;
        bottom: -10%;
    }

    .badge-ribbon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .badge-ribbon .hash {
        font-size: 0.9rem;
    }

    /* ---------- AI ---------- */
    .ai-content-wrapper {
        gap: 28px;
        margin-bottom: 50px;
    }

    .ai-text-content {
        width: 100%;
    }

    .ai-title {
        font-size: clamp(1.25rem, 6vw, 1.8rem);
        line-height: 1.18;
        margin-bottom: 13px;
    }

    .ai-subtitle {
        font-size: 0.78rem;
        line-height: 1.45;
        margin-bottom: 16px;
    }

    .ai-text-content p {
        font-size: 0.76rem;
        line-height: 1.65;
        margin-bottom: 14px;
    }

    .ai-btn {
        padding: 11px 22px;
        font-size: 0.7rem;
        margin-top: 5px;
    }

    .ai-svg-node {
        max-width: 85%;
    }

    .ai-platforms {
        padding-top: 40px;
    }

    .platforms-title {
        font-size: clamp(0.8rem, 3.5vw, 1rem);
        margin-bottom: 25px;
        letter-spacing: 1px;
    }

    .platforms-logos {
        gap: 10px;
    }

    .plat-card {
        min-height: 50px;
        padding: 10px 14px;
        font-size: 0.7rem;
        border-radius: 9px;
    }

    /* ---------- PARTNER ---------- */
    .partner-container {
        gap: 25px;
    }

    .partner-content-block {
        padding: 22px 18px;
        border-radius: 12px;
    }

    .partner-title {
        font-size: clamp(1.15rem, 5vw, 1.55rem);
        line-height: 1.18;
        margin-bottom: 15px;
    }

    .partner-content-block p,
    .partner-text-side p {
        font-size: 0.76rem;
        line-height: 1.65;
    }

    .partner-bottom-row {
        flex-direction: column;
        padding: 22px 18px;
        gap: 25px;
        text-align: center;
        border-radius: 12px;
    }

    .partner-badge-side {
        width: 100%;
    }

    .google-partner-box {
        width: 150px;
        height: 150px;
        padding: 20px;
    }

    .g-logo {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .g-text {
        font-size: 0.8rem;
    }

    /* ---------- OLD FAQ ---------- */
    .faq-container {
        gap: 30px;
    }

    .faq-intro-block,
    .faq-wrapper {
        padding: 22px 18px;
        border-radius: 12px;
    }

    .faq-main-title {
        font-size: clamp(1.1rem, 5vw, 1.45rem);
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .faq-title {
        font-size: clamp(1rem, 4.8vw, 1.35rem);
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .faq-intro-block p {
        font-size: 0.76rem;
        line-height: 1.65;
        margin-bottom: 14px;
    }

    .accordion-header {
        font-size: 0.78rem;
        padding: 18px 0;
        gap: 12px;
        line-height: 1.4;
    }

    .accordion-header .icon {
        font-size: 1.3rem;
    }

    .accordion-content p {
        font-size: 0.72rem;
        line-height: 1.6;
        padding-bottom: 18px;
    }

    /* ---------- TESTIMONIAL ---------- */
    .testimonial-container {
        max-width: 100%;
    }

    .testi-title {
        font-size: clamp(0.82rem, 3.8vw, 1.05rem);
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .testi-subtitle {
        font-size: 0.75rem;
        line-height: 1.55;
        margin-bottom: 20px;
    }

    .testi-slide {
        padding: 28px 22px;
    }

    .quote-icon {
        font-size: 3.2rem;
    }

    .testi-text {
        font-size: 0.78rem;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .testi-author {
        font-size: 0.95rem;
    }

    .testi-role {
        font-size: 0.72rem;
    }

    .testi-company {
        font-size: 0.65rem;
    }

    .testi-navigation-box {
        padding: 12px 18px;
        margin-top: 10px;
    }

    .testi-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .testi-dots {
        margin-top: 14px;
    }

    .testi-dot {
        width: 8px;
        height: 8px;
    }

    /* ---------- INSIGHTS ---------- */
    .insights-title {
        font-size: clamp(1.15rem, 5vw, 1.5rem);
        text-align: center;
        margin-bottom: 28px;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .insight-img-wrapper {
        height: 180px;
    }

    .insight-content {
        padding: 20px 17px;
    }

    .insight-date {
        font-size: 0.64rem;
        margin-bottom: 8px;
    }

    .insight-title-text {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    /* ---------- CONTACT ---------- */
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info-side,
    .contact-form-side {
        width: 100%;
        min-width: 0;
    }

    .contact-main-title {
        font-size: clamp(1.25rem, 6vw, 1.8rem);
        line-height: 1.18;
        text-align: center;
    }

    .contact-desc {
        font-size: 0.76rem;
        line-height: 1.6;
        text-align: center;
        margin: 0 auto 25px;
    }

    .contact-details-list {
        gap: 15px;
    }

    .contact-detail-item {
        gap: 12px;
        font-size: 0.74rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        border-radius: 9px;
    }

    .contact-icon svg {
        width: 19px;
        height: 19px;
    }

    .contact-glass-form {
        padding: 22px 17px;
    }

    .contact-form-title {
        font-size: 0.82rem !important;
        line-height: 1.45;
        margin-bottom: 20px !important;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .btn-contact-submit {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.72rem;
    }

    /* ---------- FOOTER ---------- */
    .main-footer {
        padding-top: 55px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand-side .footer-logo img {
        max-height: 50px;
        max-width: 150px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-tagline {
        font-size: 0.62rem;
        letter-spacing: 1.3px;
        line-height: 1.5;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links h4,
    .contact-box h4 {
        font-size: 0.78rem;
        margin-bottom: 16px;
    }

    .footer-links ul li {
        margin-bottom: 9px;
    }

    .footer-links ul li a,
    .contact-item .value {
        font-size: 0.74rem;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
        margin-bottom: 15px;
    }

    .contact-item .label {
        font-size: 0.56rem;
    }

    .copyright-bar {
        padding: 18px 0;
    }

    .copyright-bar p {
        font-size: 0.58rem;
        line-height: 1.6;
    }

    /* ---------- TEAM ---------- */
    .team-container {
        max-width: 100%;
    }

    .team-section .section-title {
        font-size: clamp(1.15rem, 5vw, 1.5rem);
        margin-bottom: 30px;
        text-align: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .team-card {
        padding: 17px;
        border-radius: 12px;
        gap: 14px;
    }

    .member-image {
        width: 78px;
        height: 78px;
        border-radius: 10px;
    }

    .member-info h3 {
        font-size: 0.9rem;
    }

    .member-info .role {
        font-size: 0.6rem;
        letter-spacing: 0.7px;
        margin-bottom: 10px;
    }

    .social-links {
        gap: 7px;
    }

    .social-links a {
        width: 28px;
        height: 28px;
        font-size: 12px;
        border-radius: 7px;
    }

    /* ---------- ASTHA FAQ ---------- */
    .astha-faq-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .astha-faq-section .faq-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .astha-faq-section .faq-header {
        text-align: center;
    }

    .faq-subtitle {
        font-size: 0.68rem;
        letter-spacing: 1px;
        margin-bottom: 9px;
    }

    .astha-faq-section .faq-title {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
        line-height: 1.18;
        margin-bottom: 15px;
    }

    .faq-description {
        font-size: 0.76rem;
        line-height: 1.65;
        margin-bottom: 22px;
    }

    .faq-btn {
        padding: 10px 20px;
        font-size: 0.68rem;
    }

    .faq-accordion {
        gap: 9px;
    }

    .faq-question {
        font-size: 0.76rem;
        line-height: 1.4;
        padding: 17px 14px;
        gap: 10px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .faq-answer-inner {
        padding: 0 14px 17px 14px;
        font-size: 0.7rem;
        line-height: 1.6;
    }

    /* ---------- BRAND SLIDER ---------- */
    .brand-slider-track {
        gap: 10px;
    }

    .brand-box {
        flex: 0 0 145px;
        height: 72px;
        padding: 8px;
    }

    /* ---------- DECORATIONS ---------- */
    .decor {
        display: none;
    }

    /* ---------- GENERAL TOUCH TARGETS ---------- */
    .btn-say-hello,
    .btn-card-know,
    .btn-outline-modern,
    .btn-submit-gradient,
    .btn-contact-submit,
    .ai-btn,
    .faq-btn,
    .show-more-btn,
    .slider-btn,
    .testi-btn,
    .menu-toggle {
        touch-action: manipulation;
    }
}

/* =========================================
   SMALL MOBILE
   ========================================= */
@media (max-width: 600px) {

    .hero {
        padding-top: 105px;
    }

    .logo-img {
        max-height: 48px;
        max-width: 135px;
    }

    .hero-content h1 {
        font-size: clamp(1.25rem, 5.8vw, 1.55rem);
        line-height: 1.1;
    }

    .hero-content h2 {
        font-size: clamp(0.52rem, 2.1vw, 0.64rem);
        line-height: 1.45;
    }

    .stats {
        gap: 16px 5px;
    }

    .stat-item {
        width: 44%;
    }

    .stat-item h3 {
        font-size: 1.05rem;
    }

    .stat-item p {
        font-size: 0.48rem;
    }

    .hero-right {
        height: 280px;
        transform: scale(0.63);
    }

    .tech-ring {
        width: 230px;
        height: 230px;
    }

    .rocket-img {
        width: 185px;
    }

    .partner-card {
        width: 90px;
        height: 90px;
    }

    .service-card {
        padding: 22px 16px;
    }

    .partner-content-block,
    .partner-bottom-row,
    .faq-intro-block,
    .faq-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    .google-partner-box {
        width: 135px;
        height: 135px;
    }

    .team-card {
        padding: 14px;
    }

    .member-image {
        width: 70px;
        height: 70px;
    }

    .search-input {
        padding: 9px 11px;
        font-size: 0.58rem;
    }

    .search-btn {
        padding: 9px 11px;
    }
}

/* =========================================
   VERY SMALL PHONES
   ========================================= */
@media (max-width: 480px) {

    :root {
        --mobile-padding: 4%;
    }

    nav {
        padding: 8px 4%;
        min-height: 62px;
    }

    .logo-img {
        max-height: 43px;
        max-width: 122px;
    }

    .menu-toggle {
        width: 26px;
        height: 18px;
    }

    .menu-toggle .bar {
        height: 2.5px;
    }

    .nav-wrapper {
        padding: 20px 12px 25px;
    }

    .nav-links a {
        font-size: 0.76rem;
        padding: 10px 0;
    }

    .btn-say-hello {
        padding: 8px 18px;
        font-size: 0.68rem;
    }

    /* HERO */
    .hero {
        padding: 95px 4% 35px;
    }

    .hero-content {
        gap: 10px;
    }

    .hero-content h1 {
        font-size: clamp(1.12rem, 5.7vw, 1.38rem);
        letter-spacing: 0.25px;
        line-height: 1.08;
    }

    .hero-content h2 {
        font-size: clamp(0.48rem, 2vw, 0.58rem);
        letter-spacing: 0.15px;
        margin-bottom: 8px;
    }

    .stats {
        gap: 13px 3px;
    }

    .stat-item {
        width: 45%;
    }

    .stat-item h3 {
        font-size: 0.95rem;
    }

    .stat-item p {
        font-size: 0.44rem;
    }

    .partner-card {
        width: 82px;
        height: 82px;
        padding: 7px;
        border-radius: 8px;
    }

    .meta-logo {
        font-size: 0.74rem;
    }

    .meta-logo svg {
        width: 15px;
        height: 15px;
    }

    .google-logo svg {
        width: 40px;
        height: 18px;
    }

    .partner-card .small-text {
        font-size: 0.42rem;
    }

    .badge-circle {
        width: 52px;
        height: 52px;
    }

    .badge-inner {
        width: 30px;
        height: 30px;
    }

    .badge-icon {
        width: 18px;
        height: 18px;
    }

    .hero-right {
        height: 220px;
        transform: scale(0.52);
        margin-top: 0;
    }

    /* GENERAL HEADINGS */
    .services-header h4,
    .insights-title,
    .team-section .section-title {
        font-size: 1rem;
    }

    .section-subtitle {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.05rem;
    }

    .audit-content h2,
    .contact-main-title {
        font-size: 1.18rem;
    }

    .ai-title,
    .partner-title,
    .faq-main-title,
    .astha-faq-section .faq-title {
        font-size: 1.18rem;
    }

    .faq-title {
        font-size: 0.98rem;
    }

    /* CONTENT */
    .services-header p,
    .audit-content p,
    .section-desc,
    .ai-text-content p,
    .partner-content-block p,
    .partner-text-side p,
    .faq-intro-block p,
    .contact-desc,
    .faq-description {
        font-size: 0.68rem;
    }

    .service-card p {
        font-size: 0.68rem;
    }

    .service-icon {
        font-size: 0.68rem;
    }

    .service-icon svg {
        width: 29px;
        height: 29px;
    }

    .btn-card-know,
    .show-more-btn,
    .btn-outline-modern,
    .ai-btn,
    .faq-btn,
    .btn-contact-submit {
        font-size: 0.6rem;
        padding: 9px 16px;
    }

    /* PORTFOLIO */
    .stat-number {
        font-size: 1.25rem;
    }

    .cs-stat-box p {
        font-size: 0.56rem;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    /* FORM */
    .glass-form,
    .contact-glass-form {
        padding: 17px 13px;
    }

    .glass-form h3,
    .contact-form-title {
        font-size: 0.76rem !important;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        font-size: 0.68rem;
        padding: 9px 10px;
    }

    .checkbox-group {
        font-size: 0.59rem;
    }

    .btn-submit-gradient {
        font-size: 0.65rem;
        padding: 10px;
    }

    /* TEAM */
    .team-card {
        padding: 12px;
        gap: 11px;
    }

    .member-image {
        width: 62px;
        height: 62px;
    }

    .member-info h3 {
        font-size: 0.82rem;
    }

    .member-info .role {
        font-size: 0.53rem;
        margin-bottom: 8px;
    }

    .social-links {
        gap: 5px;
    }

    .social-links a {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }

    /* FAQ */
    .faq-question,
    .accordion-header {
        font-size: 0.67rem;
    }

    .faq-answer-inner,
    .accordion-content p {
        font-size: 0.63rem;
    }

    /* INSIGHTS */
    .insight-img-wrapper {
        height: 155px;
    }

    .insight-content {
        padding: 16px 13px;
    }

    .insight-date {
        font-size: 0.54rem;
    }

    .insight-title-text {
        font-size: 0.72rem;
    }

    /* FOOTER */
    .main-footer {
        padding-top: 45px;
    }

    .footer-tagline {
        font-size: 0.56rem;
    }

    .footer-links ul li a,
    .contact-item .value {
        font-size: 0.66rem;
    }

    .copyright-bar p {
        font-size: 0.5rem;
    }

    /* BRAND SLIDER */
    .brand-box {
        flex: 0 0 125px;
        height: 62px;
    }
}

/* =========================================
   EXTRA SMALL DEVICES
   ========================================= */
@media (max-width: 360px) {

    .hero {
        padding-left: 3%;
        padding-right: 3%;
    }

    .hero-content h1 {
        font-size: 1.02rem;
    }

    .hero-content h2 {
        font-size: 0.46rem;
    }

    .stat-item h3 {
        font-size: 0.86rem;
    }

    .stat-item p {
        font-size: 0.4rem;
    }

    .hero-right {
        transform: scale(0.46);
    }

    .partner-card {
        width: 75px;
        height: 75px;
    }

    .services-section,
    .portfolio-section,
    .partner-section,
    .faq-section,
    .testimonial-section,
    .insights-section,
    .contact-section,
    .team-section,
    .astha-faq-section {
        padding-left: 3.5%;
        padding-right: 3.5%;
    }

    .service-card,
    .partner-content-block,
    .partner-bottom-row,
    .faq-intro-block,
    .faq-wrapper,
    .glass-form,
    .contact-glass-form {
        padding-left: 12px;
        padding-right: 12px;
    }

    .section-title {
        font-size: 0.98rem;
    }

    .section-subtitle {
        font-size: 0.65rem;
    }
}

/* =========================================
   LANDSCAPE MOBILE
   ========================================= */
@media (max-width: 900px) and (orientation: landscape) {

    nav {
        min-height: 60px;
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .logo-img {
        max-height: 42px;
    }

    .hero {
        padding-top: 90px;
        padding-bottom: 35px;
        flex-direction: row;
        text-align: left;
        align-items: center;
    }

    .hero-content {
        align-items: flex-start;
        width: 55%;
    }

    .hero-content h1 {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        transform-origin: left;
    }

    .hero-content h2 {
        font-size: 0.6rem;
        max-width: 100%;
    }

    .hero-right {
        width: 45%;
        height: 240px;
        transform: scale(0.62);
        margin-top: 0;
    }

    .stats {
        justify-content: flex-start;
        gap: 14px;
    }

    .stat-item {
        width: auto;
        min-width: 75px;
    }

    .partners-row {
        justify-content: flex-start;
    }

    .partner-card {
        width: 78px;
        height: 78px;
    }

    .services-section,
    .portfolio-section,
    .partner-section,
    .faq-section,
    .testimonial-section,
    .insights-section,
    .contact-section,
    .team-section,
    .astha-faq-section {
        padding-top: 60px;
        padding-bottom: 55px;
    }
}

/* =========================================
   iOS SAFARI / SMALL SCREEN FIXES
   ========================================= */
@supports (-webkit-touch-callout: none) {

    input,
    select,
    textarea,
    button {
        font-size: 16px;
    }

    .nav-wrapper {
        -webkit-overflow-scrolling: touch;
    }

    .glass-form,
    .contact-glass-form,
    .service-card,
    .team-card,
    .faq-item,
    .partner-content-block,
    .partner-bottom-row {
        -webkit-backdrop-filter: blur(12px);
    }
}

/* =========================================
   REDUCE MOTION FOR ACCESSIBILITY
   ========================================= */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================
   FINAL MOBILE OVERFLOW PROTECTION
   ========================================= */
@media (max-width: 768px) {

    .hero,
    .brands-section,
    .services-section,
    .audit-section,
    .portfolio-section,
    .ai-section,
    .partner-section,
    .faq-section,
    .testimonial-section,
    .insights-section,
    .contact-section,
    .team-section,
    .astha-faq-section,
    .main-footer {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .hero-content,
    .services-container,
    .audit-container,
    .portfolio-container,
    .ai-container,
    .partner-container,
    .faq-container,
    .testimonial-container,
    .insights-container,
    .contact-container,
    .team-container,
    .footer-container,
    .astha-faq-section .faq-container {
        width: 100%;
        max-width: 100%;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    a,
    span {
        overflow-wrap: break-word;
    }

    .section-title,
    .section-subtitle,
    .services-header h4,
    .ai-title,
    .partner-title,
    .faq-main-title,
    .faq-title,
    .contact-main-title,
    .insights-title,
    .team-section .section-title,
    .astha-faq-section .faq-title {
        max-width: 100%;
    }

    .dashboard-img img,
    .insight-img-wrapper img,
    .member-image img {
        max-width: none;
        width: 100%;
    }

    .tech-grid-wrapper,
    .services-bg-tech,
    .partner-bg-tech,
    .testi-bg-tech,
    .insights-bg-tech,
    .contact-bg-tech {
        max-width: none;
        pointer-events: none;
    }
}