/* remove horizontally scrollbar from index,about,contact page */
html,
body {
    overflow-x: clip;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--dark);
}

p {
    font-size: 1rem;
    line-height: 1.7;
}

:root {
    --primary: #ff7e1b;
    --primaryLight: #FFF7ED;
    --primarySoft: #FFEDD5;
    --primaryDark: #EA580C;
    --dark: #1E293B;
    --gray: #64748B;
    --gray-light: #F8FAFC;
    --border: #E2E8F0;
    --divideBorder: #f7d2b4;
    --bg-white: #ffffff;
    --grid-color: #f7d2b4;
    --orange-gradient: linear-gradient(to top, rgba(234, 88, 12, 0.95) 0%, rgba(255, 126, 27, 0.7) 50%, transparent 100%);
}

.container {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}

.section-pad-top {
    padding-top: 80px;
}

.section-pad-bottom {
    padding-bottom: 80px;
}

.section-mar-top {
    margin-top: 80px;
}

.section-mar-bottom {
    margin-bottom: 80px;
}

.title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.sub-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
}

.section-divide {
    border-left: 1px solid #f7d2b4;
    border-right: 1px solid #f7d2b4;
}

.hrow-square {
    border-top: 1px solid #f7d2b4;
    padding-top: 100px;
    position: relative;
}

.hrow-square::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    border-left: 1px solid #f7d2b4;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.space-x-side {
    padding-left: 100px;
    padding-right: 100px;
    position: relative;
}


.divide-x-piller {
    position: relative;
}

.space-x-side.divide-x-piller::after {
    content: "";
    width: 100px;
    height: 100%;
    background-image: url(../images/org-line.webp);
    background-repeat: repeat;
    background-position: left top;
    border: 0;
    background-size: 11.5px auto;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
}

.space-x-side.divide-x-piller::before {
    content: "";
    width: 100px;
    height: 100%;
    background-image: url(../images/org-line.webp);
    background-repeat: repeat;
    background-position: left top;
    border: 0;
    background-size: 11.5px auto;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}


#header-placeholder {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
}

header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    z-index: 9999;
    width: 100%;
}

.shadow-effect {
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
}

/* Header section */
.header-section {
    padding: 10px 0px;

}

#mainHeader.sticky {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.95rem;
    border-radius: 100px;
    transition: all 0.2s ease;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}


.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Mega Menu Container - Fixed Hover Bridge */
.mega-menu-wrapper {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-80%);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s;
    z-index: 100;
    pointer-events: none;
    width: 800px;
}

/* Create invisible bridge between nav item and mega menu */
.nav-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
    background: transparent;
    z-index: 99;
}

.nav-item:hover .mega-menu-wrapper {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.mega-menu-wrapper:hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* Mega Menu */
.mega-menu {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(255, 126, 27, 0.15), 0 10px 25px -5px rgba(30, 41, 59, 0.08), 0 0 0 1px rgba(247, 210, 180, 0.35);
    border: 1px solid rgba(255, 237, 213, 0.8);
    overflow: hidden;
}

.mega-tabs {
    display: flex;
    background: var(--gray-light);
    border-bottom: 1px solid var(--border);

}

.mega-tab {
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    background: none;
    border: none;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    width: 100%;
}

.mega-tab.active {
    color: #fff;
    border-bottom-color: var(--primary);
    background: var(--primary);

    &:hover {
        background: var(--primary);
    }
}

.mega-tab:hover {
    background: var(--primarySoft);
}

.mega-content {
    max-height: 72vh;
    overflow-y: auto;
}

.mega-content::-webkit-scrollbar {
    width: 6px;
}

.mega-content::-webkit-scrollbar-track {
    background: #f8fafc;
}

.mega-content::-webkit-scrollbar-thumb {
    background: #fed7aa;
    border-radius: 4px;
}

.mega-content::-webkit-scrollbar-thumb:hover {
    background: #fb923c;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.2s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    .tab-col {
        padding: 15px;
    }
}

.tab-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-col ul li {
    margin-bottom: 3px;
}

.tab-col ul li a {
    text-decoration: none;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #334155;
}

.tab-col ul li a .tab-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 237, 213, 0.6);
    color: #ff7e1b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.tab-col ul li a:hover {
    background: rgba(255, 247, 237, 0.85);
    color: #ea580c;
}

.tab-col ul li a:hover .tab-icon {
    background: #ff7e1b;
    color: #ffffff;
}

.mega-footer {
    border-top: 1px solid var(--border);
    padding: 14px 28px;
    background: var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* ========== MOBILE SIDEBAR - FIXED ========== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 4px;
    transition: 0.3s;
}

/* Mobile Sidebar */
/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: #FFFFFF;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1002;
    padding: 20px 24px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--border);
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    font-family: inherit;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
    font-weight: 700;
}

.mobile-nav-link i {
    transition: transform 0.2s;
}

.mobile-submenu {
    display: none;
    padding: 10px 12px 16px 12px;
    background: var(--gray-light);
    border-radius: 16px;
    margin-bottom: 12px;
    max-height: 60vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.mobile-submenu.active {
    display: block;
}

.mobile-sub-col {
    margin-bottom: 20px;
}

.mobile-sub-col h4 {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin: 14px 0 10px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 126, 27, 0.2);
    padding-bottom: 6px;
}

.mobile-sub-col h5 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    margin: 10px 0 6px 4px;
    letter-spacing: 0.3px;
}

.mobile-sub-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 8px;
}

.mobile-sub-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: var(--dark);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-sub-col a .tab-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: rgba(255, 237, 213, 0.6);
    color: #ff7e1b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.mobile-sub-col a:hover {
    background: rgba(255, 247, 237, 0.9);
    color: #ea580c;
}

.mobile-sub-col a:hover .tab-icon {
    background: #ff7e1b;
    color: #ffffff;
}

.mobile-cta-btn {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 24px;
    display: block;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
    touch-action: none;
    overscroll-behavior: none;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

html.menu-open,
body.menu-open {
    touch-action: pan-y;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
}

.hero h1 span {
    color: var(--primary);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    background: white;
    padding: 20px 35px;
    border-radius: 60px;
    border: 1px solid var(--border);
}

.stat-item strong {
    font-size: 2rem;
    color: var(--primary);
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-container {
        padding: 0 24px;
        height: 70px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .tab-grid {
        grid-template-columns: 1fr;
        ;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .stat-item {
        padding: 12px 24px;
    }
}

/* Hero section started */
/* HERO SECTION - PURE WHITE THEME, CREATIVE & TECH ANIMATED */
.hero-lumina {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    overflow: hidden;
    padding: 100px 0 50px;
    border-bottom: 1px solid #f7d2b4;
}

/* Soft abstract tech background (white + subtle gradients) */
.bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.light-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
}

.orb-blue {
    background: #ff880e;
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    opacity: 0.2;
}

.orb-amber {
    background: #F59E0B;
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    opacity: 0.5;
}

.orb-violet {
    background: #ff3939;
    width: 450px;
    height: 450px;
    top: 30%;
    right: 20%;
    opacity: 0.1;
}

/* Animated grid lines (techy) */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background-image:
        linear-gradient(to right, rgb(59 130 246 / 9%) 1px, #00000000 1px), linear-gradient(to bottom, rgb(59 130 246 / 6%) 1px, #00000000 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;

}




/* Creative Split Layout */
.hero-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT SIDE: CONTENT */
.hero-content {
    animation: fadeSlideUp 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

.tech-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffc00d24;
    padding: 6px 18px 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ff7e1b;
    margin-bottom: 20px;
    border: 1px solid #ffd9bb;
    letter-spacing: -0.2px;
}

.tech-chip i {
    font-size: 0.85rem;

}


.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0F172A;
    margin-bottom: 24px;
}

.gradient-title {
    background: linear-gradient(120deg, #ff6f00, #ff0808, #ba1ccd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;

}


.hero-desc {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.55;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Buttons with glassmorphism */

.btn-primary {
    width: fit-content;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    height: 46px;
    cursor: pointer;
    gap: 0.4rem;
    font-weight: bold;
    border-radius: 1000px;
    text-shadow: 2px 2px 3px rgb(136 0 136 / 50%);
    background: linear-gradient(15deg, #880088, #aa2068, #cc3f47, #de6f3d, #f09f33, #de6f3d, #cc3f47, #aa2068, #880088) no-repeat;
    background-size: 300%;
    color: #fff;
    border: none;
    background-position: left center;
    box-shadow: 0 30px 10px -20px rgba(0, 0, 0, .2);
    transition: background .3s ease;
}

.btn-primary:hover {
    background-size: 320%;
    background-position: right center;
}

.btn-outline {
    cursor: pointer;
    position: relative;
    padding: 0 1rem;
    height: 46px;
    font-size: 18px;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 1000px;
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: inherit;
    scale: 0;
    z-index: -1;
    background-color: var(--primaryDark);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.btn-outline:hover::before {
    scale: 20;
}

.btn-outline:hover {
    color: #fff;

    box-shadow: 0 0px 20px rgba(193, 163, 98, 0.4);
}

.btn-outline:active {
    scale: 1;
}



.btn-duo {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* .btn-duo {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary-white {
    background: #0F172A;
    color: white;
    padding: 14px 36px;
    border-radius: 48px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.btn-primary-white:hover {
    background: #1E293B;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid #CBD5E1;
    color: #1E293B;
    padding: 14px 36px;
    border-radius: 48px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
}

.btn-outline-light:hover {
    border-color: #3B82F6;
    background: #F8FAFE;
    color: #2563EB;
    transform: translateY(-2px);
} */


/* RIGHT SIDE: CREATIVE TECH VISUAL + INTERACTIVE CODE */
.hero-visual {
    animation: fadeScaleUp 0.8s ease-out;
}

.code-canvas-card {
    background: #FCFDFF;
    border-radius: 48px;
    padding: 28px 30px;
    border: 1px solid #ffc58854;
    box-shadow: 0 25px 45px -18px rgba(0, 0, 0, 0.08);
    transition: all 0.25s;
}

.code-header {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #FF5F56;
}

.dot-yellow {
    background: #FFBD2E;
}

.dot-green {
    background: #27C93F;
}

.code-row {
    font-family: 'Inter', monospace;
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: #1E293B;
}

.keyword {
    color: #3B82F6;
    font-weight: 600;
}

.variable {
    color: #F59E0B;
    font-weight: 500;
}

.string {
    color: #10B981;
}

.glow-prompt {
    background: #F8FAFE;
    border-radius: 24px;
    padding: 18px 20px;
    margin-top: 24px;
    border-left: 4px solid #3B82F6;
    font-family: monospace;
}

.dynamic-line {
    font-size: 0.9rem;
    color: #334155;
}

.cursor-fancy {
    display: inline-block;
    width: 2px;
    height: 18px;
    background: #3B82F6;
    margin-left: 6px;
    animation: blinkFancy 0.9s infinite;
    vertical-align: middle;
}



/* Floating subtle particles (white theme friendly) */
.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.dot-particle {
    position: absolute;
    background: #3B82F6;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatParticle 12s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    20% {
        opacity: 0.3;
    }

    80% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-100px) translateX(40px);
        opacity: 0;
    }
}

/* Animations */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeScaleUp {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes blinkFancy {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Responsive Magic */
@media (max-width: 1100px) {
    .hero-flex {
        gap: 50px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 900px) {
    .hero-flex {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 55px;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .btn-duo {
        justify-content: center;
    }

    .hero-visual {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 550px) {
    .container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 1.875rem;
        line-height: 1.15;
    }

    .btn-primary-white,
    .btn-outline-light {
        padding: 10px 22px;
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .orbit-icon {
        width: 55px;
        height: 55px;
    }

    .orbit-icon i {
        font-size: 1.5rem;
    }
}

/* Smooth vendor Scroll design */
/* carousel wrapper - infinite scroll track */
.vendor-carousel {
    display: flex;
    align-items: center;
    overflow-x: hidden;
    white-space: nowrap;
    will-change: transform;
    scroll-behavior: auto;
    cursor: default;
    margin-top: 50px;
    position: relative;
    padding: 10px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

/* individual vendor logo item card box */
.vendor-item {
    flex: 0 0 auto;
    width: 170px;
    height: 76px;
    margin: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
}

.vendor-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.vendor-item:hover {
    border-color: #ff7e1b;
    box-shadow: 0 6px 20px rgba(255, 126, 27, 0.16);
    transform: translateY(-3px);
}

.vendor-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.06);
}

/* responsive adjustments */
@media (max-width: 768px) {
    .vendor-carousel {
        margin-top: 35px;
        padding: 8px 0;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    }

    .vendor-item {
        width: 140px;
        height: 64px;
        margin: 0 6px;
        padding: 8px 12px;
        border-radius: 12px;
    }

    .vendor-item img {
        max-width: 100%;
        max-height: 100%;
    }
}

@media (max-width: 480px) {
    .vendor-carousel {
        margin-top: 25px;
        padding: 6px 0;
    }

    .vendor-item {
        width: 120px;
        height: 54px;
        margin: 0 4px;
        padding: 6px 10px;
        border-radius: 10px;
    }

    .vendor-item img {
        max-width: 100%;
        max-height: 100%;
    }
}

/* State section */

/* Creative Stats Cards Grid with SVG Graphics */
.stats-grid-creative {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
}

.creative-card {
    flex: 1;
    background: linear-gradient(145deg, #ffffff, #fefaf5);
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: default;
}

.creative-card:nth-child(2) {
    background: linear-gradient(145deg, #ffffff, #f5faf8);
}

.creative-card:nth-child(3) {
    background: linear-gradient(145deg, #ffffff, #faf5ff);
}

.creative-card:nth-child(4) {
    background: linear-gradient(145deg, #ffffff, #fff5f0);
}

.creative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.creative-card:hover::before {
    transform: scaleX(1);
}

.creative-card:hover {
    transform: translateY(-20px);
    border-color: var(--primarySoft);
    box-shadow: 0 25px 40px -15px rgba(255, 126, 27, 0.12);
}

/* SVG Icon Wrapper */
.svg-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svg-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.creative-card:hover .svg-icon svg {
    transform: scale(1.08) rotate(2deg);
}

.creative-card:hover .svg-icon svg path,
.creative-card:hover .svg-icon svg circle,
.creative-card:hover .svg-icon svg rect {
    stroke: var(--primary);
}

.card-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e2a3a;
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    line-height: 1;
}

.card-suffix {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.card-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0.7rem 0 0.5rem;
    color: #1e2a3a;
}

.card-trend {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.8rem;
    border-radius: 30px;
    margin-top: 0.5rem;
}

.trend-up {
    background: var(--primaryLight);
    color: var(--primaryDark);
}

.trend-neutral {
    background: #f0fdf4;
    color: #15803d;
}

.trend-fire {
    background: #fff1f0;
    color: #e56a0f;
}

/* About section */

/* Marquee animation */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-track {
    display: inline-flex;
    animation: scrollMarquee 30s linear infinite;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: monospace;
    letter-spacing: 0.02em;
    color: var(--primaryDark);
}

.marquee-item i {
    font-size: 0.8rem;
    color: var(--primary);
}

/* Vision & Mission card hover effects */
.vision-card,
.mission-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 20px 30px -12px rgba(255, 126, 27, 0.12);
}

.manifesto-card {
    transition: all 0.25s ease;
    border: 1px solid var(--border);
}

.manifesto-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -12px rgba(255, 126, 27, 0.1);
}

.stat-badge {
    transition: all 0.2s ease;
}

.stat-badge:hover {
    transform: translateY(-2px);
}

.cta-button {
    background: var(--primary);
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: var(--primaryDark);
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -10px var(--primary);
}

.gradient-underline {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primaryDark), #fbbf24);
    border-radius: 4px;
}

/* service */




/* each service — "floating membrane" design, no solid boxes */
.service-membrane {
    flex: 1;
    position: relative;
    background: transparent;
    backdrop-filter: blur(0px);
    border-radius: 48px;
    padding: 1.6rem 1.2rem;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: default;
    z-index: 2;
    border: none;
    box-shadow: none;
}

/* creative connector: diagonal orange threads (unique) */
.service-membrane::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), #ffb67a, transparent);
    border-radius: 4px;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.service-membrane:hover::after {
    opacity: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), #ffaa55, transparent);
}

/* icon area — abstract organic circles */
.membrane-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 126, 27, 0.07);
    border-radius: 32px 32px 32px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    transition: all 0.25s;
    border: 1px solid rgba(255, 126, 27, 0.15);
}

.service-membrane:hover .membrane-icon {
    border-radius: 16px 32px 32px 16px;
    background: rgba(255, 126, 27, 0.12);
    transform: scale(0.98);
}

.membrane-icon i {
    font-size: 2rem;
    color: var(--primary);
    filter: drop-shadow(0 2px 6px rgba(255, 126, 27, 0.2));
}

.service-membrane h3 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.service-membrane h3 span {
    color: var(--primary);
    font-weight: 800;
    background: linear-gradient(145deg, var(--primary), #ff9f4a);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.service-desc-short {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* unique trait indicators — like floating orbs */
.trait-orbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1rem 0 0.8rem;
}

.orb {
    background: rgba(255, 126, 27, 0.06);
    border-radius: 40px;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: -0.2px;
    border: 0.5px solid rgba(255, 126, 27, 0.2);
    transition: 0.1s;
}

.orb i {
    font-size: 0.6rem;
    margin-right: 4px;
}

/* floating link — minimal */
.orange-orb-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-top: 0.6rem;
    border-bottom: 1px dashed rgba(255, 126, 27, 0.4);
    transition: all 0.2s;
}

.orange-orb-link i {
    font-size: 0.6rem;
    transition: transform 0.2s;
}

.orange-orb-link:hover {
    gap: 12px;
    border-bottom-style: solid;
}

.technology-section {
    background: linear-gradient(144deg, rgb(255 255 255 / 0%) 0%, rgb(255 121 43 / 25%) 53%, rgb(255 134 9) 100%);
}

.tech-slide-wrapper {
    display: grid;
    grid-template-columns: 575px 1fr;
    align-items: center;
    gap: 15px;
    overflow: hidden;
}

.logo-slider {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    border-radius: 12px;
    margin-top: -62px;
    background: linear-gradient(89deg, rgb(255 255 255 / 0%) 0%, rgb(255 255 255 / 43%) 100%);
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll-tech 28s linear infinite;
}

.logo-track img {
    height: 60px;
    width: auto;
    flex-shrink: 0;
    margin-right: 60px;
    object-fit: contain;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

@keyframes scroll-tech {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Master Container Grid --- */
.master-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid var(--divideBorder);
    border-bottom: 1px solid var(--divideBorder);
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    position: relative;
}

/* Top Section: Title and Animated Showcase */
.grid-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    border-bottom: 1px solid var(--divideBorder);
}

.header-content {
    padding: 80px 50px;
    background: white;
}

/* --- Animated Showcase (Dark Orange) --- */
.header-showcase {
    background: var(--primary);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Infinite Grid Animation Background */
.showcase-grid-overlay {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg) translateY(0);
    animation: moveGrid 15s infinite linear;
    top: -50%;
}

@keyframes moveGrid {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px);
    }
}

.showcase-icon {
    position: relative;
    z-index: 5;
    color: white;
    text-align: center;
    animation: floatIcon 4s infinite ease-in-out;
}

.showcase-icon i {
    font-size: 100px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.showcase-label {
    display: block;
    margin-top: 20px;
    font-weight: 800;
    letter-spacing: 5px;
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* --- Typography --- */
.sub-title {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: block;
}

.main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.main-title span {
    color: var(--primary);
}

/* --- Features Grid Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-item {
    padding: 60px 40px;
    border-right: 1px solid var(--divideBorder);
    background: white;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.feature-item:last-child {
    border-right: none;
}

/* Proper FontAwesome Icons */
.icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--primaryLight);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary);
    font-size: 24px;
    transition: var(--transition);
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Subtle numbering */
.item-count {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: monospace;
    font-weight: 700;
    color: var(--divideBorder);
    font-size: 0.7rem;
}

/* --- Interactive Hover Effect (No Boxes) --- */
.feature-item:hover {
    background: var(--dark);
    z-index: 5;
}

.feature-item:hover h3,
.feature-item:hover p {
    color: white;
}

.feature-item:hover .icon-wrap {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.feature-item:hover .item-count {
    color: var(--primary);
}

/* Animated border bottom on hover */
.feature-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: var(--primary);
    transition: var(--transition);
}

.feature-item:hover::after {
    width: 100%;
}

/* --- Responsive --- */


/* --- Main Layout --- */
.process-wrapper {
    max-width: 1100px;
    margin: 60px auto 0 auto;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 350px 1fr;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

/* --- Left Side: Stepper --- */
.stepper {
    background: var(--gray-light);
    border-right: 1px solid var(--border);

}

.step-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.step-btn:hover {
    background: #f1f5f9;
}

.step-num {
    width: 36px;
    height: 36px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray);
    flex-shrink: 0;
    z-index: 2;
}

.step-info b {
    display: block;
    font-size: 1rem;
    color: var(--gray);
}

.step-info span {
    font-size: 0.8rem;
    color: var(--gray);
    opacity: 0.7;
}

/* States */
.step-btn.active {
    background: white;
}

.step-btn.active .step-num {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 0 5px var(--primarySoft);
}

.step-btn.active .step-info b {
    color: var(--dark);
}

.step-btn.completed .step-num {
    border-color: var(--primary);
    color: var(--primary);
}

/* --- Right Side: Progress & Details --- */
.details-area {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bar-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bar-item {
    display: grid;
    grid-template-columns: 100px 1fr 40px;
    align-items: center;
    gap: 15px;
}

.bar-item label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
}

.track {
    height: 8px;
    background: var(--gray-light);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.fill {
    height: 100%;
    width: 0%;
    background: var(--primary);
    border-radius: 10px;
    transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.perc {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

/* Detail List */
.tasks-box {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--border);
}

.tasks-box h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 20px;
}

.task-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.task {
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.task::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
}

/* --- Responsive / Mobile --- */
@media (max-width: 900px) {
    .process-wrapper {
        grid-template-columns: 1fr;
        border-radius: 0px;
        border-right: 0px;
        border-left: 0px;
    }

    .tasks-box {
        padding: 15px;
    }

    .stepper {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        padding: 15px;
        border-right: none;
        border-bottom: 1px solid var(--border);
        scrollbar-width: none;
        /* Hide scrollbar for clean look */
    }

    .step-btn {
        flex-direction: column;
        padding: 10px 0;
        min-width: 50px;
        text-align: center;
        gap: 10px;
        margin: 0 auto;
    }

    .step-info {
        display: none;
    }

    /* Hide text on mobile for buttons row */
    .step-btn.active::after {
        display: none;
    }

    .details-area {
        padding: 30px 20px;
    }

    .task-grid {
        grid-template-columns: 1fr;
    }
}


.testimonial-wrapper {
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 25px;
    align-items: start;
}

/* Sticky Left Content */
.brand-panel {
    position: sticky;
    top: 100px;
    padding: 20px;
}

.brand-panel .badge {
    background: var(--primarySoft);
    color: var(--primaryDark);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.brand-panel h2 {

    margin: 24px 0;
}

.brand-panel p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.stat-card {
    border-top: 2px solid var(--divideBorder);
    padding-top: 20px;
    display: flex;
    gap: 30px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary);
    margin: 0;
}

/* Right Content: The Floating Cards */
.cards-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 25px;
}

.talk-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 60px 4px 60px 4px;
    /* Unique Leaf Shape */
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    max-width: 600px;
}

/* Rotate every other card slightly for the "floating" feel */
.talk-card:nth-child(even) {
    align-self: flex-end;
    transform: rotate(1deg);
    background: var(--gray-light);
}

.talk-card:nth-child(odd) {
    transform: rotate(-1deg);
}

.talk-card:hover {
    transform: rotate(0deg) translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 126, 27, 0.1);
}

.highlight-tag {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: -12px;
    left: 40px;
}

.quote-body {
    font-size: 1.2rem;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
}

.user-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-row img {
    width: 55px;
    height: 55px;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid var(--divideBorder);
}

.user-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark);
}

.user-info span {
    color: var(--gray);
    font-size: 0.85rem;
}

.stars-row {
    margin-left: auto;
    color: var(--primary);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-wrapper {
        grid-template-columns: 1fr;
    }

    .talk-card {
        max-width: 100%;
    }
}



.bg-grid {
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-pulse-custom {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.glass-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}


footer {
    background: linear-gradient(3deg, rgb(255 255 255 / 0%) 0%, rgb(255 255 255 / 0%) 53%, rgb(255 234 212) 100%);
    border-top: 1px solid var(--border);
    padding-top: 80px;
    position: relative;
}

/* Top Accent Decoration */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 0 0 10px 10px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr;
    gap: 60px;
}

/* Brand Column */


.about-text {

    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gray-light);

    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Common Column Styles */
.footer-col h4 {

    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

/* Links Column */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {

    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    color: var(--primary);
    opacity: 0;
    transition: 0.3s;
    margin-left: -15px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    margin-left: 0;
}

/* Contact Column */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: var(--primaryLight);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.contact-text {

    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-text b {
    display: block;

    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-text a {

    text-decoration: none;
    transition: 0.3s;
}

.contact-text a:hover {
    color: var(--primary);
}

/* Copyright Bar */
.footer-bottom {
    margin-top: 80px;
    padding: 30px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    footer {
        padding-top: 60px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        margin-top: 40px;
    }
}

/* 3x3 Grid fitting exactly to screen height */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);

    gap: 2px;
}

.industry-item {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    cursor: pointer;
    height: 300px;
}

/* Background Image - Initial State Grayscale */
.item-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.6);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* INITIAL OVERLAY: For Text Readability */
.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 41, 59, 0.9) 0%, transparent 60%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

/* THE HOVER GRADIENT: Orange Fading to Transparent */
.hover-glow {
    position: absolute;
    inset: 0;
    background: var(--orange-gradient);
    z-index: 2;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Content Positioning */
.item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.item-content i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.5s ease;
    transform-origin: left bottom;
}

.item-content h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    transition: transform 0.5s ease;
}

.item-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

/* HOVER INTERACTIONS */
.industry-item:hover .item-img {
    filter: grayscale(0%) brightness(0.8);
    transform: scale(1.1);
}

.industry-item:hover .item-overlay {
    opacity: 0;
}

.industry-item:hover .hover-glow {
    opacity: 1;
    transform: translateY(0);
}

.industry-item:hover .item-content i {
    color: #fff;
    transform: scale(1.2) translateY(-10px);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.industry-item:hover .item-content h3 {
    transform: translateY(-5px);
}

.industry-item:hover .item-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        height: auto;
    }

}

@media (max-width: 650px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
}

.tech-section {

    width: 100%;
    background: var(--bg-dark);
    padding: 3.8rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.04);

    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
}

/* background glow + grid */
.tech-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 20%, rgba(255, 126, 27, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(234, 88, 12, 0.04) 0%, transparent 50%),
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 56px 56px, 56px 56px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.tech-section::after {
    content: '';
    position: absolute;
    top: -15%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 126, 27, 0.12), transparent 70%);
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

/* header */
.section-header {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-header .left {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.section-header .left .badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: rgba(255, 126, 27, 0.08);
    padding: 0.25rem 1rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 126, 27, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: fit-content;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #f0f3f8;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0.2rem;
}

.section-header h2 i {
    color: var(--primary);
    font-size: 2.4rem;
}

.section-header .subhead {
    color: var(--gray);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.5rem 1.4rem;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    backdrop-filter: blur(4px);
}

.section-header .subhead i {
    color: var(--primary);
}

/* ——— connection grid ——— */
.connection-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.8rem;
}

/* each node = modern "bento" style, no card border, just minimal */
.tech-node {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(2px);
    border-radius: 2.5rem;
    padding: 2rem 1.8rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px -10px rgba(0, 0, 0, 0.3);
}

.tech-node::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2.5rem;
    padding: 1px;
    background: linear-gradient(145deg, rgba(255, 126, 27, 0.06), transparent 60%, rgba(255, 126, 27, 0.02));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
    transition: 0.3s;
}

.tech-node:hover {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 126, 27, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -16px rgba(255, 126, 27, 0.08), 0 0 0 1px rgba(255, 126, 27, 0.04);
}

.tech-node:hover::before {
    opacity: 1;
    background: linear-gradient(145deg, rgba(255, 126, 27, 0.2), rgba(255, 126, 27, 0.02));
}

/* node top: icon + connector line */
.node-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.node-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 126, 27, 0.06);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    border: 1px solid rgba(255, 126, 27, 0.06);
    transition: 0.25s;
}

.tech-node:hover .node-icon {
    background: rgba(255, 126, 27, 0.12);
    border-color: rgba(255, 126, 27, 0.15);
    transform: scale(1.02);
    box-shadow: 0 0 20px -6px rgba(255, 126, 27, 0.08);
}

.node-connector {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255, 255, 255, 0.06);
}

.node-connector i {
    font-size: 0.5rem;
    color: rgba(255, 126, 27, 0.15);
}

.node-connector .line {
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 126, 27, 0.1), transparent);
}

.node-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #eef2f7;
    letter-spacing: -0.01em;
    margin-bottom: 0.45rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.node-title .tag {
    font-size: 0.6rem;
    font-weight: 400;
    background: rgba(255, 126, 27, 0.08);
    color: var(--primary);
    padding: 0.1rem 0.7rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 126, 27, 0.06);
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.node-desc {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--gray);
    margin-bottom: 1rem;
    flex: 1;
}

.node-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 1rem;
    margin-top: 0.2rem;
    letter-spacing: 0.3px;
}

.node-meta i {
    color: var(--primary);
    font-size: 0.65rem;
    opacity: 0.6;
}

.node-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* special connector dots */
.node-meta .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.25;
    display: inline-block;
}

/* responsive */
@media (max-width: 1024px) {
    .connection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
}

@media (max-width: 720px) {
    .tech-section {
        padding: 2.2rem 1.4rem;
        border-radius: 2.2rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .connection-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .tech-node {
        padding: 1.6rem 1.4rem;
    }

    .node-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 450px) {
    .tech-section {
        padding: 1.8rem 1rem;
    }

    .node-icon {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }
}

/* AOS overrides */
[data-aos] {
    pointer-events: auto !important;
}


.bg-primary {
    background-color: var(--primary);
}

.bg-primary-light {
    background-color: var(--primaryLight);
}

.bg-primary-soft {
    background-color: var(--primarySoft);
}

.text-primary {
    color: var(--primary);
}

.text-primary-dark {
    color: var(--primaryDark);
}

.border-primary {
    border-color: var(--primary);
}

.hover\:bg-primary-dark:hover {
    background-color: var(--primaryDark);
}

.hover\:text-primary:hover {
    color: var(--primary);
}

.hover\:border-primary:hover {
    border-color: var(--primary);
}

.shadow-primary {
    box-shadow: 0 8px 24px -8px rgba(255, 126, 27, 0.3);
}

.shadow-primary-hover:hover {
    box-shadow: 0 14px 32px -10px rgba(255, 126, 27, 0.4);
}

/* Blinking cursor */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.cursor-blink {
    animation: blink 1s infinite;
}

/* Smooth transition */
.transition-smooth {
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Gradient underline for headline span */
.heading-highlight {
    position: relative;
    display: inline-block;
}

.heading-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--primarySoft);
    border-radius: 4px;
    z-index: -1;
}

/* Floating badge pulse */
.pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 8px 24px -8px rgba(255, 126, 27, 0.15);
    }

    50% {
        box-shadow: 0 12px 40px -8px rgba(255, 126, 27, 0.25);
    }
}

/* Avatar ring */
.avatar-ring {
    ring: 2px solid white;
}

/* Mockup line spacing */
.mockup-line {
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.mockup-line:last-child {
    border-bottom: none;
}


.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.section-title span {
    color: var(--primary);
}

.section-sub {
    color: var(--gray);
    font-size: 1rem;
    max-width: 700px;
    line-height: 1.7;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

/* ===== STORY + STATS ===== */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -12px rgba(255, 126, 27, 0.12);
}

.stat-card .number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-card .label {
    font-size: 0.85rem;
    color: var(--gray);
}

.story-text p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.story-text strong {
    color: var(--dark);
}

/* ===== VISION MISSION 2COL ===== */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: 0.3s;
}

.vm-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -16px rgba(255, 126, 27, 0.1);
}

.vm-card i {
    font-size: 16px;
    color: var(--primary);
    margin-right: 10px;

}

.vm-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.vm-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== CORE EXPERTISE (3col) ===== */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.expertise-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: 0.3s;
}

.expertise-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px -12px rgba(255, 126, 27, 0.08);
}

.expertise-card i {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.expertise-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.expertise-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== TECH STACK ===== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.tech-block {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: 0.3s;
}

.tech-block:hover {
    border-color: var(--primary);
}

.tech-block .label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    font-weight: 700;
}

.tech-block .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    margin-top: 8px;
}

.tech-block .tags span {
    background: var(--gray-light);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--gray);
    border: 1px solid var(--border);
}

/* ===== WHY CHOOSE ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.3s;
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px -12px rgba(255, 126, 27, 0.08);
}

.why-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.why-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
}

.why-card p {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 4px;
    line-height: 1.6;
}

/* ===== INDUSTRIES ===== */
.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.industry-tags span {
    background: var(--primaryLight);
    border: 1px solid var(--primarySoft);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
    transition: 0.2s;
}

.industry-tags span:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ===== CONTACT CTA ===== */
.contact-cta {
    background: var(--primaryLight);
    border: 1px solid var(--primarySoft);
    border-radius: 32px;
    padding: 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 32px;
}

.contact-cta h3 {
    font-size: 1.6rem;
    font-weight: 700;
}

.contact-cta p {
    color: var(--gray);
}

.contact-cta .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primaryDark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px var(--primary);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline i {
    color: var(--primary);
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px var(--primary);
}

.btn-outline:hover i {
    color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    body,
    p,
    .section-sub,
    .story-text p,
    .vm-card p,
    .why-card p,
    .expertise-card p,
    .service-desc-short,
    .quote-body,
    .faq-answer,
    .item-description {
        font-size: 0.875rem !important;
        line-height: 1.6;
    }

    .about-hero h1 {
        font-size: 2.4rem;
    }

    .title,
    .section-title {
        font-size: 2rem;
    }

    .sub-title {
        font-size: 1.25rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-cta {
        padding: 32px 24px;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {

    body,
    p,
    .section-sub,
    .story-text p,
    .vm-card p,
    .why-card p,
    .expertise-card p,
    .service-desc-short,
    .quote-body,
    .faq-answer,
    .item-description {
        font-size: 0.875rem !important;
        line-height: 1.6;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .title,
    .section-title {
        font-size: 1.5rem;
    }

    .sub-title {
        font-size: 1.15rem;
    }

    .tech-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 1.875rem;
    }

    section {
        padding: 50px 0;
    }
}