/* ==========================================================================
   1. Reset & Enhanced Interactive 3D Background Theme Setup
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Pure layout transitions ko smooth karne ke liye tracking trigger */
    transition: background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base structural overrides for animation safeguards */
.navbar, .navbar *, .chat-widget, .chat-widget *, .hero-3d-grid {
    transition: none !important; /* Navbar aur chat ko layout transition shift se safe rakhne ke liye override */
}

body {
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: #030308;
    position: relative;
}

body::before, body::after {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    pointer-events: none;
}

/* Cyan Processing Signal Dots */
body::before {
    background-image: 
        radial-gradient(circle, #00e5ff 1px, transparent 1.5px),
        radial-gradient(circle, #00e5ff 1.5px, transparent 2px);
    background-size: 120px 120px, 180px 180px;
    background-position: 0px 0px, 40px 60px;
    animation: processorBlinkOne 6s infinite ease-in-out;
}

/* Purple Matrix Core Nodes */
body::after {
    background-image: 
        radial-gradient(circle, #9d4edd 1px, transparent 1.5px),
        radial-gradient(circle, rgba(157, 78, 221, 0.4) 2px, transparent 3px);
    background-size: 150px 150px, 220px 220px;
    background-position: 70px 20px, 15px 90px;
    animation: processorBlinkTwo 8s infinite ease-in-out;
}

@keyframes processorBlinkOne {
    0%, 100% { opacity: 0.1; transform: scale(0.98) translateZ(0); }
    30% { opacity: 0.6; transform: scale(1.02); filter: drop-shadow(0 0 4px #00e5ff); }
    45% { opacity: 0.2; }
    70% { opacity: 0.5; }
}

@keyframes processorBlinkTwo {
    0%, 100% { opacity: 0.5; transform: scale(1.01); }
    50% { opacity: 0.1; transform: scale(0.99); filter: drop-shadow(0 0 6px #9d4edd); }
}



.container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 3.5rem 0;
}

.center-text { text-align: center; }

/* Neon Gradient Header Text */
.gradient-text {
    background: linear-gradient(90deg, #00e5ff, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   2. Navbar & Container Padding Height Reset (Increased Visibility)
   ========================================================================== */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Height ko 70px se badha kar 90px kiya taaki header bada aur visible ho */
    height: 90px; 
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
}

/* ==========================================================================
   Logo Image Container & Hover Micro-Interactions (Patched)
   ========================================================================== */
.logo-image-container {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.custom-logo-img {
    /* 90px ki navbar ke mutabik logo height ko 58px kiya jo perfect cinematic ratio hai */
    height: 58px; 
    width: auto; 
    object-fit: contain;
    
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                filter 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Logo Image Hover Effect */
.logo-image-container:hover .custom-logo-img {
    transform: scale(1.05); /* Halka sa responsive zoom pop milega */
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.6)); /* Cyan cyberpunk subtle glow shadow */
}

.nav-menu a { 
    color: #ccc; 
    text-decoration: none; 
    margin-left: 1.5rem; 
    font-size: 0.95rem; 
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Navbar Link Hover */
.nav-menu a:hover {
    color: #00e5ff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

.btn-quote { 
    background: #00e5ff; 
    color: #000 !important; 
    padding: 0.5rem 1rem; 
    border-radius: 4px; 
    font-weight: 600; 
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
}

.btn-quote:hover {
    background-color: #00bcca;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}




/* ==========================================================================
   3. Hero Section (Mukkamal Clean Code - High Visibility 3D Rings)
   ========================================================================== */
.hero {
    min-height: 85vh; /* Rings ko rotate hone ke liye mukkamal jagah di hai */
    padding-top: 150px;
    background:
        linear-gradient(90deg, rgba(2, 3, 10, 0.92) 0%, rgba(4, 7, 20, 0.78) 48%, rgba(2, 3, 10, 0.95) 100%),
        radial-gradient(circle at 22% 30%, rgba(0, 229, 255, 0.22) 0%, transparent 32%),
        radial-gradient(circle at 78% 24%, rgba(157, 78, 221, 0.26) 0%, transparent 34%),
        url("Images/AI Agent.jpeg") center / cover no-repeat,
        #030308;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Critical: Taaki rings screen se bahar faltu scrollbar na banayein */
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 78%, transparent 100%);
    opacity: 0.42;
}

.hero::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -2px;
    height: 1px;
    z-index: 3;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.7), rgba(157, 78, 221, 0.7), transparent);
    box-shadow: 0 0 28px rgba(0, 229, 255, 0.35);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 46%, rgba(2, 3, 10, 0.12) 0%, rgba(2, 3, 10, 0.54) 44%, rgba(2, 3, 10, 0.9) 100%),
        linear-gradient(to bottom, rgba(3, 3, 8, 0.2) 0%, rgba(3, 3, 8, 0.12) 45%, #030308 100%);
}

/* 3D Rings Base Engine Wrapper */
.hero-3d-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Rings background mein rahengi */
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Common Structure for Embedded Hero Rings */
.quantum-ring-inner, .quantum-ring-outer {
    position: absolute;
    border-radius: 50%;
    transform-style: preserve-3d;
}

/* Internal Ring (Cyan - Full High Visibility) */
.quantum-ring-inner {
    width: 380px;
    height: 380px;
    border: 2.5px dashed rgba(0, 229, 255, 0.55); /* border ko solid aur visible kiya */
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.15), inset 0 0 40px rgba(0, 229, 255, 0.15);
    background-image: radial-gradient(circle, rgba(157, 78, 221, 0.2) 12%, transparent 13%); /* Inner dots bright hain */
    background-size: 20px 20px;
    animation: heroQuantumOne 20s infinite linear;
}

/* External Floating Dimension Ring (Purple - Full High Visibility) */
.quantum-ring-outer {
    width: 680px;
    height: 680px;
    border: 1.5px dotted rgba(157, 78, 221, 0.55); /* Visibility optimized */
    background-image: radial-gradient(circle, rgba(0, 229, 255, 0.18) 8%, transparent 10%);
    background-size: 35px 35px;
    animation: heroQuantumTwo 30s infinite linear;
}

/* Targeted 3D Matrix Axes Animations */
@keyframes heroQuantumOne {
    0% { transform: rotateX(65deg) rotateY(15deg) rotateZ(0deg); opacity: 0.6; }
    50% { opacity: 1; filter: drop-shadow(0 0 25px rgba(0, 229, 255, 0.6)); }
    100% { transform: rotateX(65deg) rotateY(15deg) rotateZ(360deg); opacity: 0.6; }
}

@keyframes heroQuantumTwo {
    0% { transform: rotateX(-50deg) rotateY(-25deg) rotateZ(360deg); opacity: 0.8; }
    50% { filter: drop-shadow(0 0 20px rgba(157, 78, 221, 0.5)); }
    100% { transform: rotateX(-50deg) rotateY(-25deg) rotateZ(0deg); opacity: 0.8; }
}

/* Original Content Layer (With Z-Index fix) */
.hero-content-centered {
    max-width: 900px; 
    width: min(90%, 900px);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 4; /* Aapka content aur text rings ke upar safely visible rahega */
}

/* Aapka Original Text & Typography Styles (Untouched) */
.hero-content-centered h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 6px 34px rgba(0, 0, 0, 0.9), 0 0 28px rgba(0, 229, 255, 0.14);
}

.hero-content-centered p {
    font-size: 1.2rem;
    color: #d9def7;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 1rem;
}

.badge {
    background-color: rgba(0, 229, 255, 0.1);
    color: #00e5ff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

/* Action Buttons (Untouched) */
.btn-primary {
    background-color: #00e5ff;
    color: #000000;
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 229, 255, 0.16);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary::before,
.btn-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -80%;
    width: 55%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    transform: skewX(-18deg);
    transition: left 0.55s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
}

.btn-primary:hover {
    background-color: #00d5e8;
    box-shadow: 0 14px 32px rgba(0, 229, 255, 0.32);
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.07);
    border-color: rgba(0, 229, 255, 0.42);
    box-shadow: 0 12px 28px rgba(0, 229, 255, 0.12);
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    left: 125%;
}











/* ==========================================================================
   4. Layout Grid Sections & HOVER EFFECTS
   ========================================================================== */
.two-col-section {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(3rem, 5vw, 5.5rem);
    align-items: center;
}
.reverse { direction: rtl; }
.reverse .text-block { direction: ltr; }

/* Who We Are Element Layer Patches (Box Removed - Only Border Glow) */
.image-glow-only-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    position: relative;
    isolation: isolate;
    perspective: 1200px;
}

.image-glow-only-wrapper::before {
    content: "";
    position: absolute;
    width: min(82%, 480px);
    height: 72%;
    border-radius: 28px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.22), rgba(157, 78, 221, 0.12) 45%, transparent 72%);
    filter: blur(22px);
    opacity: 0.45;
    transform: translateY(18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    z-index: -1;
}

.image-glow-only-wrapper:hover::before {
    opacity: 0.82;
    transform: translateY(10px) scale(1.04);
}

.who-we-are-glow-img {
    width: 100%;
    max-width: 540px; 
    aspect-ratio: 4 / 3;
    max-height: 430px;
    height: auto;
    object-fit: cover;
    border-radius: 16px; 
    border: 2px solid rgba(0, 229, 255, 0.4); 
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.15), inset 0 0 15px rgba(0, 229, 255, 0.1);
    filter: saturate(0.96) contrast(1.02);
    will-change: transform, filter;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.45s ease, 
                box-shadow 0.45s ease,
                filter 0.45s ease;
}

.who-we-are-glow-img:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(-4deg) scale(1.025); 
    border-color: #00e5ff; 
    filter: saturate(1.14) contrast(1.08) brightness(1.04);
    box-shadow: 0 18px 48px rgba(0, 229, 255, 0.28), 0 0 24px rgba(157, 78, 221, 0.2);
}

.placeholder-icon { font-size: 4rem; color: #9d4edd; }

.custom-bullets li { 
    margin-bottom: 0.8rem; 
    list-style-type: square; 
    color: #bcbedc; 
    margin-left: 1.2rem;
    transition: color 0.2s ease, transform 0.2s ease;
}
.custom-bullets li:hover {
    color: #00e5ff;
    transform: translateX(5px);
}

/* ==========================================================================
   5. Service Cards Framework & HOVER EFFECTS
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.card {
    background: #0b0e22;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover { 
    transform: translateY(-10px) scale(1.015); 
    border-color: #00e5ff; 
    box-shadow: 0 18px 42px rgba(0, 229, 255, 0.16), 0 0 18px rgba(157, 78, 221, 0.08);
}

.card-icon { 
    font-size: 2rem; 
    color: #00e5ff; 
    margin-bottom: 1rem; 
    transition: transform 0.3s ease;
}
.card:hover .card-icon {
    transform: scale(1.15) translateY(-2px);
}
.card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.card p { color: #8a8ca3; font-size: 0.9rem; line-height: 1.4; }

/* ==========================================================================
   6. Vertical Timeline Framework & HOVER EFFECTS
   ========================================================================== */
.timeline-section { position: relative; }
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #ffffff;
    top: 0; bottom: 0; left: 50%;
    margin-left: -1px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}
.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }

.timeline-content {
    background: #0b0e22;
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
    border: 1px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.timeline-content:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
    background-color: #121636;
}

.num-badge {
    position: absolute;
    top: 15px;
    background: #00e5ff;
    color: #000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.timeline-item:hover .num-badge {
    transform: scale(1.2);
    background-color: #9d4edd;
    box-shadow: 0 0 10px #9d4edd;
}
.left .num-badge { right: -55px; z-index: 5; }
.right .num-badge { left: -55px; z-index: 5; }

/* ==========================================================================
   7. Futuristic US Presence Manual Drag-to-Scroll System (UPDATED)
   ========================================================================== */
.global-presence-section {
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
}

.presence-sub-heading {
    color: #8a8ca3;
    font-size: 1.05rem;
    margin-top: -0.8rem;
    margin-bottom: 3.5rem;
}

/* CRITICAL FIX: JavaScript execution aur coordinates tracking ke liye scroll enable kiya */
.presence-carousel-container {
    width: 100%;
    overflow-x: scroll; /* Allow active hardware tracking via JS */
    position: relative;
    padding: 1rem 0;
    display: flex;
    
    /* Native scrollbar lines hide karne ke rules */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Chrome, Safari aur Opera se default line hatane ke liye */
.presence-carousel-container::-webkit-scrollbar {
    display: none;
}

/* Linear Gradient Faded Edges */
.presence-carousel-container::before,
.presence-carousel-container::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 15%;
    z-index: 3;
    pointer-events: none;
}
.presence-carousel-container::before {
    left: 0; top: 0;
    background: linear-gradient(to right, #03030a 0%, transparent 100%);
}


/* Dragging Track Container Layout */
.presence-slide-track {
    display: flex;
    gap: 2rem;
    width: max-content !important; /* Cards ke width ke mutabik scale freeze karega */
    animation: none !important; /* Auto animation ko permanently stop kiya */
    cursor: grab; /* Click-ready Hand cursor */
    user-select: none; /* Dragging ke waqt text selection block setup */
    -webkit-user-drag: none;
    will-change: transform;
    padding-right: 150px;
}

.presence-slide-track:active {
    cursor: grabbing; /* Hold click pointer rule */
}

/* Cards Design System inside Slider */
.presence-card {
    width: 290px;
    flex-shrink: 0; /* Cards ko squeeze hone se rokta hai */
    background: rgba(11, 14, 34, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 2.2rem 1.8rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.presence-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(157, 78, 221, 0.4); 
    box-shadow: 0 15px 35px rgba(157, 78, 221, 0.15);
}

.presence-icon-box {
    width: 45px;
    height: 45px;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.2rem;
    color: #9d4edd;
    font-size: 1.2rem;
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.presence-card:hover .presence-icon-box {
    background: #00e5ff;
    color: #000000;
    border-color: #00e5ff;
}

.presence-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.presence-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #00e5ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 229, 255, 0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.presence-card p {
    font-size: 0.88rem;
    color: #bcbedc;
    line-height: 1.6;
}

/* ==========================================================================
   Premium Infinite Testimonials Carousel Engine
   ========================================================================== */
.reviews-section {
    padding: 5rem 0;
    overflow: hidden; 
    position: relative;
}

.review-sub-heading {
    color: #8a8ca3;
    font-size: 1.05rem;
    margin-top: -0.8rem;
    margin-bottom: 3.5rem;
}

.reviews-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.reviews-carousel-container::before,
.reviews-carousel-container::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 15%;
    z-index: 2;
    pointer-events: none;
}

.reviews-carousel-container::before {
    left: 0; top: 0;
    background: linear-gradient(to right, #03030a 0%, transparent 100%);
}

.reviews-carousel-container::after {
    right: 0; top: 0;
    background: linear-gradient(to left, #03030a 0%, transparent 100%);
}

.reviews-slide-track {
    display: flex;
    gap: 2rem;
    width: calc(350px * 8 + 2rem * 8); 
    animation: infiniteScrollLoop 30s linear infinite;
}

.reviews-slide-track:hover {
    animation-play-state: paused;
}

@keyframes infiniteScrollLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 4 - 2rem * 4)); }
}

.review-card {
    width: 350px;
    flex-shrink: 0; 
    background: #0b0e22;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.review-card:hover {
    transform: scale(1.03) translateY(-4px);
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.15);
}

.review-stars {
    color: #ffb800; 
    font-size: 0.9rem;
    display: flex;
    gap: 0.2rem;
}

.review-text {
    font-size: 0.95rem;
    color: #bcbedc;
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
}

.review-user {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.user-meta h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.15rem;
}

.user-meta span {
    font-size: 0.8rem;
    color: #8a8ca3;
}

.btn-white { 
    background: #fff; 
    color: #000; 
    padding: 0.8rem 1.5rem; 
    border-radius: 30px; 
    text-decoration: none; 
    font-weight: 700; 
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-white:hover {
    background-color: #f1f5f9;
    transform: scale(1.04);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   8. Accordion Components & Hover Engine
   ========================================================================== */
.accordion { max-width: 700px; margin: 0 auto; }
.accordion-item { border-bottom: 1px solid #222; padding: 1rem 0; }
.accordion-title { 
    display: flex; 
    justify-content: space-between; 
    cursor: pointer; 
    padding: 0.5rem 0; 
    font-weight: 600; 
    transition: color 0.2s ease;
}
.accordion-title:hover { color: #00e5ff; }
.accordion-title i { transition: transform 0.3s ease, color 0.3s ease; }
.accordion-title:hover i { color: #00e5ff; }
.accordion-content { max-height: 0; overflow: hidden; color: #8a8ca3; transition: 0.3s ease; }

/* Light Footer */
/* ==========================================================================
   Premium Cyberpunk 3D Footer Architecture
   ========================================================================== */
.premium-3d-footer {
    background: #020205; /* Black layout canvas match code */
    color: #ffffff;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
    
    /* 3D Isometric Neon Top Glowing Border Line */
    border-top: 1px solid transparent;
    background-image: linear-gradient(#020205, #020205), linear-gradient(90deg, #00e5ff, #9d4edd, #00e5ff);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 0 -10px 40px rgba(0, 229, 255, 0.08);
}

.premium-3d-footer .container { 
    padding: 4rem 0 3rem 0; 
    position: relative;
    z-index: 3; /* Content ko mesh gradient waves ke upar rakhne k liye */
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 2.5rem; 
}

/* 3D Ambient Wave Liquid Effect inside Footer Background */
.footer-3d-wave {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 50% 0%, rgba(157, 78, 221, 0.05) 0%, rgba(0, 229, 255, 0.04) 30%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: footerGlowMotion 15s infinite alternate ease-in-out;
}

@keyframes footerGlowMotion {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(15deg) scale(1.1); filter: hue-rotate(20deg); }
}

/* Typography & Content Layout Beautification */
.footer-brand-text {
    color: #8a8ca3;
    font-size: 0.92rem;
    margin-top: 1rem;
    line-height: 1.5;
}

.premium-3d-footer h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-3d-footer p { 
    color: #bcbedc; 
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.premium-3d-footer a {
    color: #bcbedc;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

/* Interactive Hover Link Micro-motions */
.premium-3d-footer a:hover {
    color: #00e5ff;
    padding-left: 4px; /* Soft interactive shift */
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

.footer-email {
    color: #00e5ff !important;
    font-weight: 600;
}

/* ==========================================================================
   9. Interactive Floating AI Agent
   ========================================================================== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999; 
}

.chat-launcher {
    background-color: #00e5ff;
    color: #000000;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    box-shadow: 0 4px 25px rgba(0, 229, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
}
.chat-launcher:hover { 
    transform: scale(1.05) translateY(-2px); 
    box-shadow: 0 6px 30px rgba(0, 229, 255, 0.6);
}

.chat-window {
    width: 340px;
    height: 440px;
    background-color: #0f1333;
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.7);
    flex-direction: column;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: 0;
    display: none; 
    opacity: 0;
    transform: translateY(20px);
    transform-origin: bottom right;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.chat-widget.active .chat-launcher { display: none !important; }
.chat-widget.active .chat-window { display: flex !important; opacity: 1; transform: translateY(0); pointer-events: auto; }

.chat-header {
    background-color: #0c102b;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.avatar-info { display: flex; align-items: center; gap: 0.7rem; }
.avatar-dot-active { width: 8px; height: 8px; background-color: #00ff66; border-radius: 50%; box-shadow: 0 0 8px #00ff66; }
.avatar-info h4 { font-size: 0.95rem; color: #fff; }
.avatar-info p { font-size: 0.75rem; color: #8a8ca3; }

.chat-close { background: none; border: none; color: #fff; cursor: pointer; font-size: 1.2rem; opacity: 0.6; transition: 0.2s; }
.chat-close:hover { opacity: 1; transform: scale(1.1); }

.chat-messages { flex: 1; padding: 1.2rem; overflow-y: auto; display: flex; flex-direction: column; gap: 0.8rem; background: #060814; }
.msg { padding: 0.7rem 1rem; border-radius: 12px; max-width: 85%; font-size: 0.88rem; line-height: 1.4; word-wrap: break-word; }
.system-msg { background-color: rgba(255,255,255,0.05); align-self: flex-start; color: #e2e8f0; border-bottom-left-radius: 2px; border: 1px solid rgba(255,255,255,0.02); }
.user-msg { background-color: #00e5ff; color: #000000; align-self: flex-end; border-bottom-right-radius: 2px; font-weight: 600; }

.chat-input-area { padding: 0.8rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; gap: 0.5rem; background-color: #0c102b; }
.chat-input-area input {
    flex: 1;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    color: #fff;
    font-size: 0.9rem;
}
.chat-input-area input:focus { outline: none; border-color: #00e5ff; }
.chat-input-area button { background-color: #00e5ff; border: none; color: #000; width: 38px; height: 38px; border-radius: 8px; cursor: pointer; display: flex; justify-content: center; align-items: center; transition: 0.2s; }
.chat-input-area button:hover { background-color: #00bcca; transform: scale(1.05); }

/* ==========================================================================
   10. Responsive Viewports
   ========================================================================== */
@media(max-width: 768px) {
    .two-col-section, .footer-grid, .timeline-item { grid-template-columns: 1fr; width: 100%; text-align: center !important; }
    .timeline::after, .num-badge { display: none; }
    .cta-banner { flex-direction: column; gap: 1.5rem; text-align: center; }
    .maps-grid { flex-direction: column; gap: 1rem; }
    .hero-content-centered h1 { font-size: 2.4rem; }
    .chat-window { width: 290px; right: -10px; }
}




/* ==========================================================================
   Premium Cyberpunk Pricing Architecture
   ========================================================================== */
.pricing-section {
    padding: 5rem 0;
}

.pricing-sub-heading {
    color: #8a8ca3;
    font-size: 1.05rem;
    margin-top: -0.8rem;
    margin-bottom: 4rem;
}

/* 3-Column Responsive Grid Arrangement */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: center; /* Ensures normal cards line up center to the highlighted card */
}

/* Standard Base Pricing Card Architecture */
.pricing-card {
    background: rgba(11, 14, 34, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    height: 580px; /* Locked height uniformity matrix */
    
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.14), transparent 32%, rgba(157, 78, 221, 0.12));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.015);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 26px 58px rgba(0, 229, 255, 0.13), 0 0 24px rgba(157, 78, 221, 0.08);
}

.pricing-card:hover::before {
    opacity: 1;
}

/* Popular Middle Card Elevated Highlight Style */
.pricing-card.popular-highlight {
    background: linear-gradient(145deg, #0b0e27 0%, #150933 100%);
    border: 2px solid #9d4edd; /* Premium Purple line */
    height: 620px; /* Elevated height parameter */
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.15), 0 0 30px rgba(0, 0, 0, 0.6);
}

.pricing-card.popular-highlight:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00e5ff; /* Shifts to glowing cyan on interactive hover */
    box-shadow: 0 25px 55px rgba(0, 229, 255, 0.2);
}

/* Neon Top Floating Badge for Popular Card */
.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #9d4edd, #00e5ff);
    color: #000000;
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
}

/* Header typography blocks */
.plan-header {
    margin-bottom: 2rem;
}

.plan-type {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 0.8rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.plan-price h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
}

.plan-price span {
    font-size: 0.9rem;
    color: #8a8ca3;
}

.plan-header p {
    font-size: 0.92rem;
    color: #bcbedc;
    line-height: 1.5;
}

/* Features List Parameters */
.plan-features {
    flex-grow: 1;
}

.plan-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan-features li {
    font-size: 0.92rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    line-height: 1.4;
}

.plan-features li i.fa-circle-check {
    color: #00e5ff; /* Bright cyan verification check */
    font-size: 1rem;
}

.plan-features li.disabled {
    color: #555870; /* Dimmed text for locked features */
}

.plan-features li i.fa-circle-xmark {
    color: #44465a;
    font-size: 1rem;
}

/* Call To Action Buttons within Tiers */
.btn-pricing-primary {
    background: #00e5ff;
    color: #000000;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.98rem;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-pricing-primary:hover {
    background: #00bcca;
    transform: translateY(-2px);
}

.btn-pricing-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.98rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-pricing-secondary:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: #ffffff;
}

/* Responsive Scaling Queries for Pricing */
@media(max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .pricing-card, .pricing-card.popular-highlight {
        height: auto;
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
    .pricing-card.popular-highlight {
        order: -1; /* Mobile par Popular card sabse pehle upar show hoga */
    }
}


/* ==========================================================================
   Futuristic B2B Lead Capture Form Architecture (Simplified Inputs Layout)
   ========================================================================== */
.contact-section {
    padding: 5rem 0;
}

/* 2-Column Balanced Split Grid Layout */
.contact-split-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    background: rgba(11, 14, 34, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
}

/* Left Content Area */
.contact-info-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.contact-badge {
    background: rgba(157, 78, 221, 0.1);
    color: #9d4edd;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.contact-info-block h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.contact-info-block p {
    font-size: 1.05rem;
    color: #bcbedc;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Corporate Details Stream */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    width: 100%;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00e5ff;
    font-size: 1.1rem;
}

.info-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.15rem;
}

.info-item p {
    font-size: 0.92rem;
    color: #8a8ca3;
    margin-bottom: 0;
}

/* Right Side Inputs Panel */
.contact-form-block {
    width: 100%;
}

.input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.8rem; /* Clean vertical spacing between fields */
    width: 100%;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Base Inputs Styling Matrix */
.contact-form-block input,
.contact-form-block textarea {
    width: 100%;
    background: rgba(6, 8, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover & Active Focused Neon Glow State */
.contact-form-block input:focus,
.contact-form-block textarea:focus {
    border-color: #00e5ff;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
    background: rgba(6, 8, 20, 0.95);
}

.contact-form-block textarea {
    resize: none;
}

/* Submit Action Button Core */
.btn-form-submit {
    width: 100%;
    background: linear-gradient(90deg, #00e5ff, #9d4edd);
    color: #000000;
    border: none;
    padding: 1.1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 25px rgba(0, 229, 255, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 229, 255, 0.45);
    filter: brightness(1.08);
}

.btn-form-submit i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-form-submit:hover i {
    transform: translateX(4px) translateY(-2px);
}

/* Responsive Structural Queries */
@media(max-width: 968px) {
    .contact-split-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
    .contact-info-block h2 { font-size: 2rem; }
}



/* ==========================================================================
   Premium B2B AI Portfolio Slider Engine
   ========================================================================== */
.portfolio-section {
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
}

.portfolio-badge-center {
    display: block; 
    margin: 0 auto 1rem auto; 
    width: max-content;
}

.portfolio-sub-heading {
    color: #8a8ca3;
    font-size: 1.05rem;
    margin-top: -0.8rem;
    margin-bottom: 3.5rem;
}

/* Scroll Window - Hidden Native Lines Setup */
.portfolio-carousel-container {
    width: 100%;
    overflow-x: scroll;
    position: relative;
    padding: 1rem 0;
    display: flex;
    scrollbar-width: none; /* Firefox override */
    -ms-overflow-style: none; /* IE/Edge override */
}

.portfolio-carousel-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera lines remove */
}

/* Sliding Track Frame Wrapper */
.portfolio-slide-track {
    display: flex;
    gap: 2rem;
    width: max-content !important;
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
    will-change: transform;
    padding-right: 150px;
}

.portfolio-slide-track:active {
    cursor: grabbing;
}

/* Premium 3-Card Sizing Ratio Framework */
.portfolio-card {
    /* Formula: Parent grid container ke andar exact 3 cards spacing k sath adjust krne ka mathematical code */
    width: calc((1100px - (2rem * 2)) / 3); 
    max-width: 350px;
    flex-shrink: 0;
    background: rgba(11, 14, 34, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Card Interactive Hovers */
.portfolio-card:hover {
    transform: translateY(-12px) scale(1.018);
    border-color: rgba(0, 229, 255, 0.35);
    box-shadow: 0 26px 56px rgba(0, 229, 255, 0.14), 0 0 22px rgba(157, 78, 221, 0.08);
}

/* Image Container Blocks */
.portfolio-image-box {
    width: 100%;
    height: 200px;
    background: #07091a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85) contrast(1.05);
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.12) rotate(0.6deg);
    filter: brightness(1.08) contrast(1.12) saturate(1.08);
}

.portfolio-image-box::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(2, 2, 5, 0.6) 100%);
    pointer-events: none;
}

.portfolio-image-box::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.18) 42%, transparent 62%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
    pointer-events: none;
}

.portfolio-card:hover .portfolio-image-box::before {
    transform: translateX(120%);
}

/* Typography Text Layers */
.portfolio-content {
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    text-align: left;
}

.portfolio-tag-btn {
    font-size: 0.72rem;
    font-weight: 800;
    color: #00e5ff;
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid rgba(0, 229, 255, 0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.portfolio-content p {
    font-size: 0.9rem;
    color: #bcbedc;
    line-height: 1.55;
    margin-bottom: 0;
}

/* Responsive viewports safety override */
@media(max-width: 992px) {
    .portfolio-card {
        width: 300px;
    }
}



/* ==========================================================================
   Premium Separate CTA System Styles
   ========================================================================== */

/* Base Configuration for All Scattered Buttons */
.btn-cta-action {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    border-radius: 12px;
    font-size: 0.98rem;
    font-weight: 700;
    text-decoration: none;
    font-family: inherit;
    box-sizing: border-box;
    
    /* Smooth Pop-Up Micro Transition Curves */
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                background-color 0.3s ease, 
                border-color 0.3s ease;
}

/* Individual Position-Specific Sizing Classes */
/* Position One Button Centering Fix */
/* Position One Centering & Tight Margins Absolute Fix */
.cta-position-one {
    min-width: 220px;
    display: flex !important; 
    margin: 0.4rem auto 0 auto !important; /* Spacing mazeed tight kar di hai */
    width: max-content !important;
    
    /* Absolute Layout Override: Agar parent column flex ho toh center lane ke liye placement */
    align-self: center !important; 
    justify-self: center !important;
}

.cta-position-two {
    min-width: 220px;
    display: flex !important; 
    margin: 0.4rem auto 0 auto !important; /* Spacing mazeed tight kar di hai */
    width: max-content !important;
    
    /* Absolute Layout Override: Agar parent column flex ho toh center lane ke liye placement */
    align-self: center !important; 
    justify-self: center !important;
}


/* Button Theme 1: Cyan Premium Matte Glow Style */
.cta-btn-cyan {
    background-color: #00e5ff;
    color: #000000;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.2);
    
}

.cta-btn-cyan:hover {
    background-color: #00bcca;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.45);
}

/* Button Theme 2: Purple Matrix Soft Vibe Style */
.cta-btn-purple {
    background-color: #9d4edd;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.15);
}

.cta-btn-purple:hover {
    background-color: #823bc2;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.4);
}


.cta-btn-outline:hover {
    border-color: #00e5ff;
    background-color: rgba(0, 229, 255, 0.03);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.15);
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

/* FontAwesome Action Icons Animation */
.btn-cta-action i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-cta-action:hover i {
    transform: scale(1.15) rotate(-5deg);
}

/* Mobile Screens Optimization Breakpoint */
@media(max-width: 768px) {
    .btn-cta-action {
        width: 100% !important; /* Mobile par automatic full-width block ban jayega */
        min-width: 100% !important;
    }
}


/* mobile responsive*/

/* ==========================================================================
   11. Ultimate B2B Mobile Responsiveness Engine
   ========================================================================== */

/* Tablet Viewports (Max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        width: 92%;
        padding: 2.5rem 0;
    }
    .hero-content-centered h1 {
        font-size: 2.8rem;
    }
    .contact-split-container {
        gap: 2rem;
        padding: 2.5rem;
    }
    .pricing-grid {
        gap: 1.5rem;
    }
}

/* Mobile Devices & Small Screens (Max-width: 768px) */
@media (max-width: 768px) {
    /* 1. Global Containers & Reset */
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        padding: 2rem 0;
        width: calc(100% - 32px);
        max-width: calc(100% - 32px);
    }

    h1,
    h2,
    h3,
    p,
    li {
        max-width: 100%;
        overflow-wrap: break-word;
    }
    
    /* 2. Navbar Mobile Flow */
    .nav-container {
        height: auto;
        padding: 1rem 0;
        flex-direction: column;
        gap: 1rem;
        width: calc(100% - 32px);
    }
    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
        width: 100%;
    }
    .nav-menu a {
        margin-left: 0;
        font-size: 0.9rem;
    }
    .custom-logo-img {
        height: 45px; /* Mobile par logo size clean compress kiya */
    }

    /* 3. Hero Section Overhaul */
    .hero {
        min-height: auto;
        padding-top: 180px;
        padding-bottom: 4rem;
    }
    .hero-content-centered {
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
        min-width: 0;
    }
    .hero-content-centered h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        width: 100%;
        max-width: 100%;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: normal;
    }
    .hero-content-centered p {
        font-size: 0.95rem;
        line-height: 1.55;
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    /* 3D Rings Sizing Fix for Mobile Viewports */
    .quantum-ring-inner {
        width: 280px;
        height: 280px;
    }
    .quantum-ring-outer {
        width: 450px;
        height: 450px;
    }

    /* 4. Two Column Layouts Grid Crash Fix */
    .two-col-section, 
    .two-col-section.reverse {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        direction: ltr !important; /* Forces normal reading flow on mobile */
    }
    .reverse .text-block {
        direction: ltr !important;
    }
    .text-block {
        text-align: center !important;
    }
    .custom-bullets {
        text-align: left;
    }
    .who-we-are-glow-img {
        max-width: 100%;
        aspect-ratio: 16 / 10;
        max-height: 320px;
    }

    /* 5. Services & Pricing Grid Optimization */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
    }
    .pricing-card, 
    .pricing-card.popular-highlight {
        height: auto !important;
        max-width: 100%;
    }
    .pricing-card.popular-highlight {
        order: -1; /* Mobile screen par high ROI package sabse pehle dikhega */
    }

    /* 6. Portfolio & Sliders Optimization */
    .portfolio-card {
        width: 280px !important; /* Mobile touch panels ke liye slider width adjust */
    }
    .presence-card {
        width: 260px !important;
    }
    .review-card {
        width: 290px !important;
        padding: 1.5rem;
    }

    /* 7. B2B Split Contact Layout Wrap */
    .contact-split-container {
        grid-template-columns: 1fr !important;
        padding: 1.5rem;
        gap: 2.5rem;
    }
    .contact-info-block h2 {
        font-size: 1.8rem;
        text-align: center;
        width: 100%;
    }
    .contact-info-block p {
        text-align: center;
    }
    .contact-badge {
        align-self: center;
    }

    /* 8. Accordion Symmetrical Adjustment */
    .accordion-title {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    /* 9. Scattered Buttons Responsive Width */
    .btn-cta-action {
        width: 100% !important;
        min-width: 100% !important;
    }

    /* 10. Footer Layout Simplification */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem;
    }
    .footer-grid div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* 11. Chat Widget Position Fix */
    .chat-widget {
        bottom: 15px;
        right: 15px;
    }
    .chat-window {
        width: calc(100vw - 30px);
        height: 400px;
    }
}

/* ==========================================================================
   Theme Normalization: remove leftover blue/purple accents from older layers
   ========================================================================== */
body::before {
    background-image:
        radial-gradient(circle, rgba(0, 215, 176, 0.5) 1px, transparent 1.5px),
        radial-gradient(circle, rgba(0, 215, 176, 0.32) 1.5px, transparent 2px);
}

body::after {
    background-image:
        radial-gradient(circle, rgba(0, 215, 176, 0.35) 1px, transparent 1.5px),
        radial-gradient(circle, rgba(10, 92, 66, 0.32) 2px, transparent 3px);
}

.gradient-text,
.center-text.gradient-text,
#services > .gradient-text,
.portfolio-section > .gradient-text,
.pricing-section > .gradient-text,
.global-presence-section .gradient-text,
.reviews-section .gradient-text {
    background: none !important;
    -webkit-text-fill-color: var(--template-text) !important;
    color: var(--template-text) !important;
}

.gradient-text strong,
.text-block strong {
    color: var(--template-accent);
}

.badge,
.portfolio-badge-center,
.portfolio-tag-btn,
.popular-tag,
.contact-badge,
.plan-type {
    background: rgba(0, 215, 176, 0.08) !important;
    color: var(--template-accent) !important;
    border-color: rgba(0, 215, 176, 0.16) !important;
}

.card-icon,
.portfolio-content h3,
.pricing-card h3,
.plan-price h3,
.info-icon,
.presence-icon-box,
.review-stars,
.footer-email,
.accordion-title:hover,
.accordion-title:hover i {
    color: var(--template-accent) !important;
}

.btn-primary,
.btn-quote,
.btn-pricing-primary,
.btn-form-submit,
.chat-launcher,
.chat-input-area button,
.user-msg,
.cta-btn-cyan,
.cta-btn-purple {
    background: var(--template-accent) !important;
    color: #00120e !important;
    box-shadow: none !important;
}

.btn-secondary,
.btn-pricing-secondary,
.cta-btn-outline {
    border-color: rgba(0, 215, 176, 0.24) !important;
    color: var(--template-text) !important;
    background: transparent !important;
}

.pricing-card,
.pricing-card.popular-highlight,
.portfolio-card,
.card,
.services-grid > div,
.review-card,
.presence-card,
.contact-split-container,
.premium-3d-footer {
    border-color: rgba(0, 215, 176, 0.14) !important;
}

.pricing-card.popular-highlight,
.presence-card:hover,
.review-card:hover,
.portfolio-card:hover,
.card:hover {
    box-shadow: 0 18px 48px rgba(0, 215, 176, 0.08) !important;
}

.portfolio-card,
.portfolio-card:nth-child(2n),
.pricing-card,
.pricing-card.popular-highlight,
.card,
.services-grid > div,
.services-grid > div:nth-child(2n) {
    border-left-color: rgba(0, 215, 176, 0.2) !important;
    border-top-color: rgba(0, 215, 176, 0.2) !important;
}

.portfolio-image-box,
.who-we-are-glow-img,
.input-group input,
.input-group textarea {
    border-color: rgba(0, 215, 176, 0.18) !important;
}

.premium-3d-footer {
    background-image: linear-gradient(#020806, #020806), linear-gradient(90deg, transparent, rgba(0, 215, 176, 0.34), transparent) !important;
}

.chat-avatar {
    background-color: rgba(0, 215, 176, 0.12) !important;
}

.avatar-dot-active {
    background-color: var(--template-accent) !important;
    box-shadow: 0 0 8px var(--template-accent) !important;
}

/* Specific fix: remove navy/blue section blocks and inline diagram colors */
.two-col-section::after,
.global-presence-section::before,
.reviews-section::before,
.portfolio-section::before,
.pricing-section::before,
.contact-section::before {
    background:
        radial-gradient(circle at 50% 20%, rgba(0, 215, 176, 0.055), transparent 30rem),
        linear-gradient(180deg, rgba(2, 8, 6, 0.88), rgba(2, 8, 6, 0.96)) !important;
    border-top: 1px solid rgba(0, 215, 176, 0.1) !important;
    border-bottom: 1px solid rgba(0, 215, 176, 0.055) !important;
}

.two-col-section:nth-of-type(even)::after {
    background:
        radial-gradient(circle at 18% 35%, rgba(0, 215, 176, 0.065), transparent 28rem),
        linear-gradient(180deg, rgba(1, 18, 13, 0.92), rgba(2, 8, 6, 0.98)) !important;
}

.image-glow-only-wrapper > div[style*="background: rgba(11, 14, 34"],
.text-block[style*="background: rgba(11, 14, 34"],
.card[style*="background: rgba(11, 14, 34"] {
    background: rgba(2, 18, 13, 0.78) !important;
    border-color: rgba(0, 215, 176, 0.22) !important;
    color: var(--template-accent) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28), 0 0 28px rgba(0, 215, 176, 0.08) !important;
}

.image-glow-only-wrapper > div[style*="font-family: monospace"] {
    background: rgba(1, 14, 10, 0.88) !important;
    color: var(--template-accent) !important;
    border: 1px solid rgba(0, 215, 176, 0.28) !important;
    border-radius: 14px !important;
}

@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;
    }
}

/* ==========================================================================
   Homepage Redesign Layer: visual polish without changing page content
   ========================================================================== */
body {
    background:
        radial-gradient(circle at 18% 10%, rgba(0, 229, 255, 0.08), transparent 24rem),
        radial-gradient(circle at 82% 22%, rgba(157, 78, 221, 0.1), transparent 26rem),
        linear-gradient(180deg, #030308 0%, #050612 42%, #020205 100%);
}

.navbar {
    background: rgba(3, 3, 8, 0.78);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.hero {
    min-height: 88vh;
    padding-bottom: 6rem;
}

.hero-content-centered {
    margin-top: 1rem;
}

.hero-actions {
    gap: 1rem;
}

.container:not(.hero-content-centered):not(.footer-grid) {
    position: relative;
}

.two-col-section {
    margin-top: 2.2rem;
    margin-bottom: 2.2rem;
    padding: clamp(2.8rem, 5vw, 4.8rem);
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
        radial-gradient(circle at 15% 12%, rgba(0, 229, 255, 0.08), transparent 32rem),
        radial-gradient(circle at 85% 82%, rgba(157, 78, 221, 0.09), transparent 30rem),
        rgba(7, 9, 24, 0.62);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.two-col-section:nth-of-type(even) {
    background:
        linear-gradient(135deg, rgba(157, 78, 221, 0.075), rgba(0, 229, 255, 0.025)),
        rgba(7, 9, 24, 0.58);
}

.two-col-section::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.32), transparent 35%, rgba(157, 78, 221, 0.25));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.58;
}

.text-block {
    position: relative;
    z-index: 1;
}

.text-block p {
    color: #d8ddf5;
    line-height: 1.68;
}

.text-block h3 {
    letter-spacing: 0;
}

.gradient-text {
    line-height: 1.16;
}

.custom-bullets {
    display: grid;
    gap: 0.15rem;
}

.custom-bullets li {
    color: #e7ebff;
    font-weight: 650;
    list-style: none;
    margin-left: 0;
    padding-left: 1.4rem;
    position: relative;
}

.custom-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 2px;
    background: linear-gradient(135deg, #00e5ff, #9d4edd);
    box-shadow: 0 0 14px rgba(0, 229, 255, 0.5);
}

.image-glow-only-wrapper {
    min-height: 100%;
}

.who-we-are-glow-img {
    border-radius: 20px;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32), 0 0 28px rgba(0, 229, 255, 0.14);
}

.services-grid {
    gap: 1.6rem;
}

.card,
.services-grid > div,
.pricing-card,
.review-card,
.presence-card,
.portfolio-card {
    border-radius: 18px;
}

.card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        rgba(10, 13, 34, 0.7);
    border-color: rgba(255, 255, 255, 0.075);
}

.global-presence-section,
.reviews-section {
    margin-top: 3rem;
    padding: 5.5rem 0;
    position: relative;
    background:
        linear-gradient(180deg, rgba(5, 7, 18, 0.92), rgba(7, 9, 24, 0.82)),
        radial-gradient(circle at 30% 20%, rgba(0, 229, 255, 0.08), transparent 30rem);
}

.reviews-section {
    background:
        linear-gradient(180deg, rgba(4, 5, 14, 0.9), rgba(2, 2, 5, 0.95)),
        radial-gradient(circle at 74% 24%, rgba(157, 78, 221, 0.1), transparent 30rem);
}

.portfolio-section,
.pricing-section,
.contact-section {
    margin-top: 3rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.portfolio-carousel-container {
    padding: 1.25rem 0 2rem;
}

.portfolio-card {
    width: min(390px, calc((1240px - (2rem * 2)) / 3));
    max-width: 390px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        rgba(10, 13, 34, 0.72);
}

.portfolio-image-box {
    height: 230px;
}

.pricing-grid {
    gap: clamp(1.5rem, 3vw, 2.2rem);
}

.pricing-card {
    border-color: rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        rgba(9, 12, 34, 0.76);
}

.pricing-card.popular-highlight {
    background:
        linear-gradient(145deg, rgba(19, 10, 48, 0.96), rgba(7, 13, 42, 0.96)),
        radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.12), transparent 24rem);
}

.contact-split-container {
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        radial-gradient(circle at 0% 0%, rgba(0, 229, 255, 0.1), transparent 30rem),
        rgba(8, 11, 31, 0.76);
    border-color: rgba(255, 255, 255, 0.08);
}

.input-group input,
.input-group textarea {
    background: rgba(2, 4, 13, 0.62);
}

@media (max-width: 1024px) {
    .two-col-section {
        padding: 2.5rem;
    }

    .portfolio-card {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 170px;
        padding-bottom: 4rem;
    }

    .hero-content-centered {
        width: calc(100% - 64px);
        max-width: 360px;
        overflow: hidden;
    }

    .hero-content-centered h1 {
        font-size: 1.65rem;
        line-height: 1.28;
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content-centered p {
        font-size: 0.9rem;
        line-height: 1.5;
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        width: 100%;
    }

    .two-col-section {
        margin-top: 1.2rem;
        margin-bottom: 1.2rem;
        padding: 1.35rem;
        border-radius: 16px;
    }

    .global-presence-section,
    .reviews-section,
    .portfolio-section,
    .pricing-section,
    .contact-section {
        margin-top: 1.5rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .portfolio-card {
        width: 290px !important;
    }

    .portfolio-image-box {
        height: 190px;
    }
}

/* ==========================================================================
   Open Flow Redesign Layer: no boxed card sections, color-coded structure
   ========================================================================== */
body {
    background:
        linear-gradient(90deg, rgba(0, 229, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(157, 78, 221, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 12% 18%, rgba(0, 229, 255, 0.12), transparent 28rem),
        radial-gradient(circle at 86% 28%, rgba(157, 78, 221, 0.11), transparent 30rem),
        #020205;
    background-size: 96px 96px, 96px 96px, auto, auto, auto;
}

.container:not(.hero-content-centered):not(.footer-grid) {
    isolation: isolate;
}

.hero {
    border-bottom: 1px solid rgba(0, 229, 255, 0.18);
}

.two-col-section {
    --accent: #00e5ff;
    --accent-rgb: 0, 229, 255;
    margin-top: 0;
    margin-bottom: 0;
    padding: clamp(4rem, 6vw, 6.5rem) 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    position: relative;
}

.two-col-section:nth-of-type(3n) {
    --accent: #9d4edd;
    --accent-rgb: 157, 78, 221;
}

.two-col-section:nth-of-type(3n + 1) {
    --accent: #00ffa3;
    --accent-rgb: 0, 255, 163;
}

.two-col-section::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 99px;
    padding: 0;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
    mask: none;
    pointer-events: none;
    opacity: 0.9;
}

.two-col-section::after {
    content: "";
    position: absolute;
    inset: 0 50%;
    width: 100vw;
    margin-left: -50vw;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(var(--accent-rgb), 0.08), transparent 34%, rgba(var(--accent-rgb), 0.04)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 42%, rgba(255, 255, 255, 0.012));
    border-top: 1px solid rgba(var(--accent-rgb), 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.two-col-section.reverse::before {
    left: auto;
    right: 0;
}

.two-col-section .text-block {
    padding-inline: clamp(1.2rem, 3vw, 2.5rem);
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent, #00e5ff), #ffffff 52%, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-bullets {
    gap: 0.45rem;
    margin-top: 1rem;
}

.custom-bullets li {
    color: var(--accent, #00e5ff);
    border-bottom: 1px solid rgba(var(--accent-rgb, 0, 229, 255), 0.22);
    padding-bottom: 0.42rem;
}

.custom-bullets li::before {
    background: currentColor;
    box-shadow: 0 0 16px currentColor;
}

.image-glow-only-wrapper::before {
    background: radial-gradient(circle, rgba(var(--accent-rgb, 0, 229, 255), 0.28), transparent 66%);
}

.who-we-are-glow-img {
    border-radius: 8px;
    border: 0;
    border-left: 3px solid var(--accent, #00e5ff);
    box-shadow: 18px 18px 0 rgba(var(--accent-rgb, 0, 229, 255), 0.08), 0 18px 50px rgba(0, 0, 0, 0.35);
}

.who-we-are-glow-img:hover {
    box-shadow: 22px 22px 0 rgba(var(--accent-rgb, 0, 229, 255), 0.12), 0 24px 56px rgba(0, 0, 0, 0.42);
}

.services-grid {
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card,
.services-grid > div {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border-left: 2px solid rgba(0, 229, 255, 0.28) !important;
    padding: 2rem !important;
}

.card:nth-child(2n),
.services-grid > div:nth-child(2n) {
    border-left-color: rgba(157, 78, 221, 0.36) !important;
}

.card:hover,
.services-grid > div:hover {
    transform: translateX(6px);
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.05), transparent) !important;
}

.global-presence-section,
.reviews-section,
.portfolio-section,
.pricing-section,
.contact-section {
    background: transparent;
    position: relative;
}

.global-presence-section::before,
.reviews-section::before,
.portfolio-section::before,
.pricing-section::before,
.contact-section::before {
    content: "";
    position: absolute;
    inset: 0 50%;
    width: 100vw;
    margin-left: -50vw;
    z-index: -1;
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.045), transparent 48%, rgba(157, 78, 221, 0.045));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.portfolio-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    border-top: 2px solid rgba(0, 229, 255, 0.42);
    padding-top: 1rem;
}

.portfolio-card:nth-child(2n) {
    border-top-color: rgba(157, 78, 221, 0.48);
}

.portfolio-image-box {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-content {
    padding-inline: 0;
}

.pricing-grid {
    align-items: stretch;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card,
.pricing-card.popular-highlight {
    height: auto;
    min-height: 560px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    border-left: 2px solid rgba(0, 229, 255, 0.34);
}

.pricing-card.popular-highlight {
    border-left-color: rgba(157, 78, 221, 0.6);
}

.pricing-card::before {
    display: none;
}

.pricing-card:hover,
.pricing-card.popular-highlight:hover {
    transform: translateY(-6px);
    box-shadow: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.contact-split-container {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    border-top: 2px solid rgba(0, 229, 255, 0.32);
    border-bottom: 2px solid rgba(157, 78, 221, 0.24);
    padding-inline: 0;
}

.contact-form-block,
.contact-info-block {
    padding: 2rem;
}

.input-group input,
.input-group textarea {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(0, 229, 255, 0.28);
    background: rgba(255, 255, 255, 0.025);
}

@media (max-width: 768px) {
    .two-col-section {
        padding: 3rem 0;
    }

    .two-col-section::before {
        width: 100%;
        height: 3px;
        inset: 0 0 auto 0;
    }

    .two-col-section .text-block {
        padding-inline: 0;
    }

    .who-we-are-glow-img {
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
    }

    .pricing-card,
    .pricing-card.popular-highlight {
        min-height: auto;
        border-left: 0;
        border-top: 2px solid rgba(0, 229, 255, 0.28);
    }

    .contact-form-block,
    .contact-info-block {
        padding: 1rem 0;
    }
}

/* ==========================================================================
   Template-Inspired Final Direction: minimal AI agency dark/teal system
   ========================================================================== */
:root {
    --template-bg: #020806;
    --template-bg-2: #03150f;
    --template-panel: rgba(0, 214, 176, 0.055);
    --template-line: rgba(0, 214, 176, 0.18);
    --template-accent: #00d7b0;
    --template-accent-soft: rgba(0, 215, 176, 0.14);
    --template-text: #f2f7f4;
    --template-muted: rgba(226, 238, 232, 0.68);
}

html {
    background: var(--template-bg);
}

body {
    background:
        radial-gradient(circle at 12% 7%, rgba(0, 215, 176, 0.18), transparent 22rem),
        radial-gradient(circle at 82% 86%, rgba(0, 215, 176, 0.12), transparent 24rem),
        linear-gradient(120deg, #020806 0%, #052318 48%, #020403 100%);
    color: var(--template-text);
}

body::before,
body::after {
    opacity: 0.08;
}

.navbar {
    background: rgba(2, 8, 6, 0.96);
    border-bottom: 1px solid rgba(0, 215, 176, 0.14);
    box-shadow: none;
    backdrop-filter: blur(14px);
}

.nav-container {
    max-width: 1120px;
    height: 72px;
}

.custom-logo-img {
    height: 46px;
}

.nav-menu a {
    color: rgba(242, 247, 244, 0.78);
    font-size: 0.88rem;
}

.nav-menu a:hover {
    color: var(--template-accent);
    text-shadow: none;
}

.btn-quote {
    background: var(--template-accent);
    border-radius: 10px;
    padding: 0.72rem 1.15rem;
    box-shadow: none;
}

.hero {
    min-height: 100vh;
    padding-top: 72px;
    padding-bottom: 8rem;
    background:
        radial-gradient(circle at 50% 42%, rgba(0, 215, 176, 0.18), transparent 34rem),
        linear-gradient(120deg, rgba(0, 48, 34, 0.75), rgba(0, 0, 0, 0.86)),
        #020806;
    border-bottom: 0;
}

.hero::before {
    opacity: 0.1;
    background-size: 110px 110px;
}

.hero::after {
    display: none;
}

.hero-overlay {
    background:
        radial-gradient(circle at 50% 50%, transparent 0%, rgba(2, 8, 6, 0.22) 36%, rgba(2, 8, 6, 0.84) 100%),
        linear-gradient(to bottom, rgba(2, 8, 6, 0.1), rgba(2, 8, 6, 0.7));
}

.hero-3d-grid {
    opacity: 0.18;
    filter: saturate(0.75);
}

.quantum-ring-inner,
.quantum-ring-outer {
    border-color: rgba(0, 215, 176, 0.32);
    box-shadow: none;
}

.hero-content-centered {
    width: min(92%, 860px);
    max-width: 860px;
    margin-top: 12vh;
}

.hero-content-centered h1 {
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0;
    color: var(--template-text);
    text-shadow: none;
}

.hero-content-centered p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: var(--template-muted);
    font-size: 1.18rem;
    line-height: 1.75;
    text-shadow: none;
}

.hero-actions {
    margin-top: 1.7rem;
    gap: 0.85rem;
}

.btn-primary,
.btn-secondary,
.btn-pricing-primary,
.btn-pricing-secondary,
.btn-form-submit,
.btn-cta-action {
    border-radius: 10px;
    box-shadow: none;
}

.btn-primary,
.btn-pricing-primary,
.btn-form-submit {
    background: var(--template-accent);
    color: #00120e;
}

.btn-secondary,
.btn-pricing-secondary {
    background: transparent;
    border: 1px solid var(--template-line);
    color: var(--template-text);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-pricing-primary:hover,
.btn-pricing-secondary:hover,
.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 215, 176, 0.12);
}

.container {
    max-width: 1120px;
}

.two-col-section {
    --accent: var(--template-accent);
    --accent-rgb: 0, 215, 176;
    padding: clamp(5.5rem, 8vw, 8rem) 0;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    gap: clamp(4rem, 7vw, 7rem);
    border: 0;
    background: transparent;
    box-shadow: none;
}

.two-col-section::before {
    display: none;
}

.two-col-section::after {
    background: linear-gradient(180deg, transparent, rgba(0, 215, 176, 0.035), transparent);
    border-top: 1px solid rgba(0, 215, 176, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.gradient-text {
    background: none;
    -webkit-text-fill-color: var(--template-text);
    color: var(--template-text);
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 400;
    line-height: 1.12;
}

.text-block p {
    color: var(--template-muted);
    line-height: 1.76;
}

.custom-bullets li {
    color: var(--template-accent);
    border-bottom: 1px solid rgba(0, 215, 176, 0.12);
    font-weight: 500;
}

.custom-bullets li::before {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
}

.image-glow-only-wrapper::before {
    opacity: 0.28;
    background: radial-gradient(circle, rgba(0, 215, 176, 0.22), transparent 70%);
}

.who-we-are-glow-img {
    border-radius: 18px;
    border: 1px solid rgba(0, 215, 176, 0.16);
    border-left: 1px solid rgba(0, 215, 176, 0.38);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    filter: saturate(0.82) contrast(1.04) brightness(0.9);
}

.who-we-are-glow-img:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42), 0 0 34px rgba(0, 215, 176, 0.1);
}

.services-grid {
    gap: 0;
    border-color: rgba(0, 215, 176, 0.12);
}

.card,
.services-grid > div,
.pricing-card,
.pricing-card.popular-highlight,
.review-card,
.presence-card,
.portfolio-card {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.card,
.services-grid > div {
    border-left: 1px solid rgba(0, 215, 176, 0.18) !important;
}

.card:hover,
.services-grid > div:hover {
    background: rgba(0, 215, 176, 0.035) !important;
}

.global-presence-section,
.reviews-section,
.portfolio-section,
.pricing-section,
.contact-section {
    background: transparent;
    padding-top: clamp(5rem, 8vw, 8rem);
    padding-bottom: clamp(5rem, 8vw, 8rem);
}

.global-presence-section::before,
.reviews-section::before,
.portfolio-section::before,
.pricing-section::before,
.contact-section::before {
    background: linear-gradient(180deg, rgba(0, 215, 176, 0.045), transparent 42%, rgba(0, 0, 0, 0.12));
    border-top: 1px solid rgba(0, 215, 176, 0.1);
}

.portfolio-card {
    border-top: 1px solid rgba(0, 215, 176, 0.24) !important;
}

.portfolio-image-box {
    border-radius: 16px;
    border-color: rgba(0, 215, 176, 0.14);
}

.portfolio-tag-btn,
.badge,
.contact-badge,
.popular-tag {
    background: rgba(0, 215, 176, 0.08);
    color: var(--template-accent);
    border: 1px solid rgba(0, 215, 176, 0.16);
    border-radius: 999px;
}

.pricing-grid {
    border-color: rgba(0, 215, 176, 0.12);
}

.pricing-card,
.pricing-card.popular-highlight {
    border-left: 1px solid rgba(0, 215, 176, 0.2);
}

.contact-split-container {
    border-top: 1px solid rgba(0, 215, 176, 0.2);
    border-bottom: 1px solid rgba(0, 215, 176, 0.1);
}

.input-group input,
.input-group textarea {
    border-bottom-color: rgba(0, 215, 176, 0.24);
}

.premium-3d-footer {
    background: #020806;
    border-top: 1px solid rgba(0, 215, 176, 0.12);
}

@media (max-width: 768px) {
    .nav-container {
        width: calc(100% - 32px);
        height: auto;
    }

    .hero {
        min-height: 92vh;
        padding-top: 150px;
    }

    .hero-content-centered {
        width: calc(100% - 36px);
        max-width: 360px;
        margin-top: 0;
    }

    .hero-content-centered h1 {
        font-size: 2.1rem;
        max-width: 360px;
    }

    .hero-content-centered p {
        font-size: 0.95rem;
        max-width: 340px;
    }

    .two-col-section {
        padding: 4rem 0;
        gap: 2rem;
    }

    .gradient-text {
        font-size: 2rem;
    }

    .card,
    .services-grid > div,
    .pricing-card,
    .pricing-card.popular-highlight {
        border-left: 0 !important;
        border-top: 1px solid rgba(0, 215, 176, 0.16) !important;
    }
}
