/* Modern Clean Reset */
:root {
    --bg-color: #FFFFFF;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --primary: #2563EB;
    /* Bright Tech Blue */
    --accent: #F59E0B;
    /* Amber */
    --surface: #F8FAFC;
    --border: #E2E8F0;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    position: relative;
    /* Fixes some mobile scroll issues */
}

body {
    font-family: var(--font-heading);
    background: var(--bg-color);
    color: var(--text-main);
    cursor: none;
    /* Custom Cursor */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--text-main);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(15, 23, 42, 0.5);
    transition: width 0.2s, height 0.2s;
}

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: #FFFFFF;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.loader-design {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.circular-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.loader-bg {
    fill: none;
    stroke: #E2E8F0;
    stroke-width: 2;
}

.loader-progress {
    fill: none;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 283;
    /* 2 * PI * 45 */
    stroke-dashoffset: 283;
    /* Start empty */
}

.loader-brand {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
}

.loader-percent {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    font-family: monospace;
    /* Tech feel */
    letter-spacing: 1px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    /* Floating from top */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    /* Floating width */
    max-width: 1200px;
    padding: 1rem 2rem;
    z-index: 900;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    /* Smooth eased transition */
    background: rgba(255, 255, 255);
    border-radius: 50px;
    /* Pill shape */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.navbar-hidden {
    transform: translate(-50%, -150%);
    /* Hide upwards */
}

.navbar.scrolled {
    background: rgba(255, 255, 255);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.dot {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    /* Dark Text */
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

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

.btn-nav {
    padding: 0.7rem 1.8rem;
    background: var(--text-main);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    display: inline-block;
}

.btn-nav:hover {
    background: var(--primary);
    transform: translateY(-2px);
    color: #fff;
}

.btn-primary {
    padding: 0.8rem 2rem;
    background: var(--text-main);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    /* Hidden on Desktop */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
    /* Ensure above overlay */
}

.bar {
    width: 25px;
    height: 2.5px;
    background: var(--text-main);
    /* Dark bars */
    transition: 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.center-layout .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    z-index: 2;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
    /* Limit globe size */
    margin-top: -2rem;
}

.floating-globe {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(37, 99, 235, 0.2));
    animation: floatGlobe 6s ease-in-out infinite;
}

@keyframes floatGlobe {

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

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

/* Floating Elements (Glass Cards) */
.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.float-card i {
    color: var(--primary);
}

.card-1 {
    top: 20%;
    left: -10%;
    animation: floatCard 5s ease-in-out infinite 1s;
}

.card-2 {
    bottom: 20%;
    right: -5%;
    animation: floatCard 7s ease-in-out infinite 0.5s;
}

@keyframes floatCard {

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

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

.hero-title {
    font-size: 5.5rem;
    /* Larger title */
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-title .line {
    justify-content: center;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-secondary {
    padding: 0.8rem 2rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: var(--surface);
    border-color: var(--text-main);
}

.btn-secondary i {
    font-size: 0.8rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50px;
    width: 100px;
    height: 100px;
}

.scroll-circle {
    animation: spin 10s linear infinite;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Marquee */
.marquee-section {
    background: var(--text-main);
    color: #fff;
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    transform: rotate(-1deg) scale(1.05);
    /* Stylish tilt */
    margin: 5rem 0;
}

.marquee-content {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: marquee 20s linear infinite;
}

.separator {
    margin: 0 2rem;
    color: var(--primary);
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* About Visual */
.about-visual {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-visual:hover img {
    transform: scale(1.05);
    /* Subtle zoom on hover */
}

.floating-stat {
    position: absolute;
    bottom: 30px;
    right: 30px;
    /* Aligned right on desktop */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 1.5rem 2rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 1);
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

/* About Content */
.about-text h2 {
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.about-features i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.stat-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Process Section (Timeline) */
.process-section {
    padding: 100px 0;
    background: var(--surface);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 2rem;
    padding-top: 2rem;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    padding: 0 1rem;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #F8FAFC;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.process-step:hover .step-icon {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.process-step:hover .step-icon i {
    color: #fff;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-connector {
    flex: 1;
    height: 2px;
    background-image: linear-gradient(to right, var(--border) 50%, transparent 50%);
    background-size: 10px 100%;
    background-repeat: repeat-x;
    margin-top: 40px;
    /* Aligns with icon center */
    opacity: 0.5;
}

/* CTA */

.cursor-dot-cta,
.cursor-outline-cta {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot-cta {
    width: 8px;
    height: 8px;
    background-color: var(--text-main);
}

.cursor-outline-cta {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(15, 23, 42, 0.5);
    transition: width 0.2s, height 0.2s;
}

.cta-section {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.cta-inner {
    background: var(--text-main);
    color: #fff;
    border-radius: 30px;
    padding: 5rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: var(--text-main);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    transform: translate(-50%, -50%);
}

.btn-white {
    display: inline-block;
    background: #fff;
    color: var(--text-main);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 2rem;
    transition: 0.3s;
}

.btn-white:hover {
    color: white;
    background-color: var(--primary);
    transform: scale(1.05);
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    background: var(--surface);
    text-align: center;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.socials {
    margin: 2rem 0;
}

.socials a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
    transition: 0.3s;
}

.socials a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}


/* =========================================
   Responsive Design (Mobile Optimization)
   ========================================= */

/* Tablet (1024px) */
@media (max-width: 1024px) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    /* Disable custom cursor on touch */

    .hero-title {
        font-size: 4rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-top: 2rem;
    }

    /* Mobile Navbar Floating Adjustments */
    .navbar {
        width: 95%;
        /* Wider on mobile */
        padding: 0.8rem 1.5rem;
        top: 15px;
    }

    /* Ensure Mobile Menu covers everything despite floating navbar */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        /* Force full viewport coverage */
        height: 100vh;
        border-radius: 0;
        /* No radius for full screen overlay */
    }

    /* About Section Mobile */
    .about-wrapper {
        gap: 3rem;
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .floating-stat {
        bottom: 20px;
        right: 20px;
        padding: 1rem 1.5rem;
    }

    .stat-num {
        font-size: 2rem;
    }

    .stats-grid {
        gap: 2rem;
        text-align: center;
        /* Keep 3 cols on tablet, stack on phone if needed */
    }
}

/* Mobile Devices (768px) */
@media (max-width: 768px) {

    /* Mobile Menu */
    .menu-toggle {
        display: flex;
    }

    /* Mobile Dropdown Menu */
    .nav-menu {
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(255, 255, 255);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 1.5rem;
        border-radius: 24px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.5);
        gap: 1.5rem;

        /* Hidden State */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        right: 0;
        /* Resetting inherited right */
    }

    .nav-link {
        font-size: 1.1rem;
        /* Smaller font as requested implicitly via utilities */
        font-weight: 600;
        color: var(--text-main);
        width: 100%;
        text-align: center;
        display: block;
        padding: 0.5rem 0;
    }

    .btn-nav {
        width: 100%;
        text-align: center;
        justify-content: center;
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }

    /* Hamburger Animation */
    .menu-toggle.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }

    /* Typography & Spacing */
    .hero-section {
        min-height: 100vh;
        padding-top: 100px;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-title .line {
        justify-content: center;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .about-section,
    .services-section,
    .process-section {
        padding: 4rem 0;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-box {
        border: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 2rem;
    }

    /* Process (Mobile) */
    .process-timeline {
        flex-direction: column;
        gap: 3rem;
        padding-top: 0;
    }

    .process-step {
        width: 100%;
        padding: 0;
    }

    .step-connector {
        display: none;
        /* Hide horizontal connector on mobile */
    }

    .step-icon {
        margin-bottom: 1rem;
    }

    /* CTA */
    .cta-inner {
        padding: 3rem 1.5rem;
    }

    .floating-card {
        width: 90%;
        right: 5%;
        bottom: 20px;
    }

    .scroll-circle {
        animation: spin 10s linear infinite;
    }

    .scroll-arrow {
        position: absolute;
        right: -1010%;
        transform: translate(-50%, -50%);
    }

    /* Scroll Indicator Mobile Fix */
    .scroll-indicator {
        display: flex !important;
        left: -1010%;
        transform: translateX(-50%);
        bottom: 30px;
        width: 80px;
        height: 80px;
    }

    .scroll-text textPath {
        font-size: 10px;

        /* Smaller text for mobile */
    }

    /* Mobile Text Utilities */
    .mobile-text-sm {
        font-size: 0.9rem !important;
    }

    .mobile-text-xs {
        font-size: 0.75rem !important;
    }
}

/* =========================================
   About Page Styles
   ========================================= */

.page-header {
    padding: 180px 0 80px;
    background: linear-gradient(to bottom, #F8FAFC, #FFFFFF);
    text-align: center;
}

.section-padding {
    padding: 100px 0;
}

.bg-surface {}

.founder-quote {
    margin-top: 2rem;
    padding: 2rem;
    background: #F8FAFC;
    border-left: 4px solid var(--primary);
    border-radius: 0 20px 20px 0;
}

.founder-quote i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.founder-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1rem;
}

/* Global Reach Section */
.reach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.reach-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.list-group h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
}

.list-group ul {
    list-style: none;
}

.list-group li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 500;
    color: var(--text-main);
}

.list-group li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.reach-map {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive About */
@media (max-width: 1024px) {
    .reach-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .reach-lists {
        text-align: left;
    }

    .reach-map {
        order: -1;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .reach-lists {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* =========================================
   Services & Products Page Styles
   ========================================= */

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.row.align-center {
    align-items: center;
}

.products-text {
    flex: 1;
    min-width: 300px;
}

.products-visual {
    flex: 1;
    min-width: 300px;
}

.product-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.product-item:hover {
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.product-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-main);
}

.product-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .row {
        flex-direction: column;
    }

    .products-visual {
        order: -1;
    }
}

/* =========================================
   Updated Services Grid & Product Cards
   ========================================= */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.prod-img {
    height: 220px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.product-card:hover .prod-img img {
    transform: scale(1.1);
}

.prod-cat {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    backdrop-filter: blur(5px);
}

.prod-details {
    padding: 1.5rem;
}

.prod-details h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.prod-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.prod-specs {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.prod-specs li {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* =========================================
   About Page White Theme Update
   ========================================= */

.bg-white {
    background: #FFFFFF;
}

.display-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    line-height: 1.8;
}

/* Founder Card */
.founder-section {
    margin-top: 4rem;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: #FFFFFF;
    border-radius: 40px;
    padding: 3rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    /* Premium soft shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.founder-img {
    flex: 0 0 400px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.founder-card:hover .founder-img img {
    transform: scale(1.05);
}

.founder-content {
    flex: 1;
}

.founder-content h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 700;
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.founder-message {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 2.5rem;
}

.founder-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.2rem;
    color: var(--text-main);
}

.founder-info span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .display-title {
        font-size: 2.5rem;
    }

    .founder-card {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
    }

    .founder-img {
        flex: none;
        width: 100%;
        height: 350px;
    }

    .founder-message {
        font-size: 1.2rem;
    }
}

/* =========================================
   Fully Who We Are Styles
   ========================================= */

.col-text {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.col-image {
    flex: 1;
    min-width: 300px;
}

.rounded-img {
    border-radius: 30px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.body-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 1rem;
}

/* Vision & Mission */
.vision-mission-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 6rem 0;
}

.vm-card {
    flex: 1;
    background: #F8FAFC;
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    transition: 0.3s;
}

.vm-card:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

/* Narrative Enhancements */
.image-frame {
    position: relative;
    display: inline-block;
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #FFFFFF;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: floatCard 4s ease-in-out infinite;
}

.floating-badge i {
    font-size: 2rem;
    color: var(--primary);
}

.floating-badge span {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

@media (max-width: 900px) {
    .floating-badge {
        right: 0;
        bottom: -20px;
    }
}

.vm-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.vm-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.vm-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.vm-visual {
    flex: 0 0 300px;
    text-align: center;
}

.vm-visual img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: floatGlobe 6s ease-in-out infinite;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.val-icon {
    width: 70px;
    height: 70px;
    background: var(--surface);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: 0.3s;
}

.value-item:hover .val-icon {
    background: var(--primary);
    color: #fff;
    transform: rotateY(180deg);
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.value-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Mobile Responsive Who We Are */
@media (max-width: 1024px) {
    .vision-mission-wrapper {
        flex-direction: column;
    }

    .vm-visual {
        order: -1;
        width: 200px;
    }

    .col-text {
        padding-right: 0;
        margin-bottom: 3rem;
    }
}

/* Export Services Section */
.export-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.export-service-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.export-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
    border-color: var(--primary);
}

.export-service-icon {
    width: 60px;
    height: 60px;
    background: var(--surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
    transition: 0.3s;
}

.export-service-card:hover .export-service-icon {
    background: var(--primary);
    color: #fff;
}

.export-service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.export-service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: #FFFFFF;
}

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

.faq-item {
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    font-size: 1rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    /* Turn + to x */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Modern Countries We Serve Section */
.reach-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.reach-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.reach-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, transparent 50%, var(--surface) 50%);
    opacity: 0.6;
    border-radius: 0 0 0 100%;
}

.reach-icon {
    width: 60px;
    height: 60px;
    background: var(--surface);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.reach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    font-weight: 700;
}

.country-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.country-tag {
    display: inline-flex;
    align-items: center;
    background: var(--surface);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    border: 1px solid var(--border);
    transition: 0.3s;
}

.country-tag:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.country-tag i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* Cursor White Variant for Dark Sections */
.cursor-dot.cursor-white {
    background-color: #FFFFFF !important;
}

.cursor-outline.cursor-white {
    border-color: rgba(255, 255, 255, 0.8) !important;
}

/* Company Details Grid */
.company-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.detail-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
    border-color: var(--primary);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: var(--surface);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: 0.3s;
}

.detail-card:hover .detail-icon {
    background: var(--primary);
    color: #fff;
}

.detail-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    word-break: break-word;
}

/* Certifications Grid */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: center;
}

.cert-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    text-align: center;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cert-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cert-name {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1rem;
}

/* Premium Trust Enhancements */
.detail-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    background: linear-gradient(145deg, #ffffff, #f8fafc);
}

.detail-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: 0.3s;
}

.detail-card:hover::after {
    opacity: 1;
}

.verified-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    /* Green */
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.cert-card {
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    background: #FFFFFF;
}

.cert-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(245, 158, 11, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.cert-icon {
    font-size: 3rem;
    background: -webkit-linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 20px rgba(37, 99, 235, 0.2));
}

/* Product Page Styles */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 1rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.cat-btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: transparent;
    cursor: none;
    /* Custom cursor */
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-btn:hover,
.cat-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

/* Enhanced Product Card */
.product-card-enhanced {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.pc-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.pc-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.product-card-enhanced:hover .pc-img-wrapper img {
    transform: scale(1.1);
}

.pc-category-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pc-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pc-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.pc-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
    /* Pushes button down */
}

.pc-btn {
    width: 100%;
    padding: 1rem;
    background: var(--text-main);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pc-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Hide filtered items */
.product-item-wrapper.hide {
    display: none;
}

/* Contact Page Specific Styles */
.contact-container {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-top: -50px;
    /* Overlap hero */
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 900px) {
    .contact-container {
        flex-direction: row;
    }
}

.contact-info-side {
    background: var(--primary);
    color: #fff;
    padding: 3rem;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.contact-info-side h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.contact-info-side p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.contact-form-side {
    padding: 3rem;
    flex: 1.5;
    background: #fff;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
    background: #FAFAFA;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--text-main);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

/* Custom Select Dropdown Styling tweaks */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* Client Testimonial Section Styles */
.client-about-section {
    padding: 2rem 0;
}

.client-content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: #FFFFFF;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.client-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(245, 158, 11, 0.03) 100%);
    pointer-events: none;
}

.client-image-container {
    flex: 0 0 350px;
    position: relative;
}

.client-image-frame {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.client-image-frame:hover {
    transform: scale(1.02);
}

.client-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0%);
    transition: 0.5s;
}

.client-image-frame:hover .client-photo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.client-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

.client-badge i {
    color: #F59E0B;
    font-size: 1rem;
}

.client-details {
    flex: 1;
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.client-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.client-title {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.client-quote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-style: italic;
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary);
    position: relative;
}

.client-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: -webkit-linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Client Section */
@media (max-width: 1024px) {
    .client-content-wrapper {
        flex-direction: column;
        gap: 2.5rem;
        padding: 2rem;
    }

    .client-image-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 350px;
    }

    .client-image-frame {
        height: 350px;
    }

    .client-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .client-image-frame {
        height: 300px;
    }

    .client-name {
        font-size: 1.5rem;
    }

    .client-quote {
        font-size: 1rem;
        padding-left: 1rem;
    }

    .client-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .quote-icon {
        font-size: 2rem;
    }
}