:root {
    --primary-green: #1dd57d;
    --secondary-green: #1db34d;
    --off-white: #f2f2f2;
    --matte-black: #232323;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --gradient: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===============================
   FLOATING CENTER WATERMARK
================================ */

.floating-watermark {
    position: fixed; /* Stays in place while scrolling */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Perfectly centers the element */
    z-index: 0; /* Keeps it behind text but above the very bottom background */
    pointer-events: none; /* Allows you to click links/text sitting on top of it */
    width: 600px; /* Adjust size as needed */
    max-width: 90%; /* Responsive safety */
    
    /* Animation definition */
    animation: floatBreath 6s ease-in-out infinite;
}

.floating-watermark img {
    width: 100%;
    height: auto;
    
    /* VISUAL EFFECTS */
    opacity: 0.18; /* Very subtle/faint (Range: 0.0 to 1.0) */
    filter: grayscale(100%) brightness(1.5); /* Optional: makes it look like a shadow/watermark */
    
    /* BLEND MODE: 
       Since your image is a JPG with a background, 'screen' or 'lighten' 
       helps remove the boxy background on a dark website. 
       If using a transparent PNG, you can remove this line. */
    mix-blend-mode: lighten; 
}

/* The Floating Animation */
@keyframes floatBreath {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05) translateY(-15px); /* Moves up slightly and grows */
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* ===============================
   HACKER NEON DATA STREAMS
================================ */

#hacker-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Single data line */
.hacker-line {
    position: absolute;
    top: -20%;
    width: 2px;
    height: 120px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(29, 213, 87, 0.15),
            rgba(29, 213, 87, 0.9),
            rgba(29, 213, 87, 0.15),
            transparent);
    filter: drop-shadow(0 0 6px rgba(29, 213, 87, 0.8));
    animation: hacker-fall linear infinite;
    opacity: 0.9;
}

/* Motion */
@keyframes hacker-fall {
    from {
        transform: translateY(-20vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    to {
        transform: translateY(120vh) translateX(-30px);
        opacity: 0;
    }
}

/* Ensure content stays above */
nav,
main,
section,
footer {
    position: relative;
    z-index: 1;
}


.container {
    max-width: 1280px;
    margin : 0 auto;
    padding: 0 2rem;
}



.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(29, 213, 87, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-left: 0px;
    gap: 2rem; /* Ensure minimum gap between logo and button */
}

/* Wider spacing on large desktop screens */
@media (min-width: 1000px) {
    .nav-container {
        max-width: 1600px;
        padding: 1rem 3rem;
        gap: 30rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.3s ease;
   
}

.logo-icon img {
    width: 200px;
    height: auto;
    object-fit: contain;
    /* padding-bottom removed for alignment */
}

/* Ensure content is above background animations */
.relative-content {
    position: relative;
    z-index: 10;
}

.logo:hover {
    transform: translateY(-2px);
    
}



.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mega Menu styles removed as per request */

/* Mega Menu styles removed */

#techMenu .mega-col span {
    font-size: 12px;
    line-height: 1.4;
}

#techMenu .tech-group.trending {
    display: none;
}

#techMenu .tech-group.active {
    display: grid;
}




.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.nav-menu a:hover::after {
    width: 100%;
}


.nav-cta {
    padding: 0.6rem 1.5rem;
    background: var(--gradient);
    color: var(--matte-black) !important;
    border-radius: 8px;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    color: var(--matte-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(29, 213, 87, 0.3);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    /* glow mask */
    background: radial-gradient(300px circle at var(--glow-x, 50%) var(--glow-y, 50%),
            rgba(29, 213, 87, 0.25),
            rgba(29, 213, 87, 0.15) 20%,
            rgba(29, 213, 87, 0.08) 40%,
            transparent 65%);

    mix-blend-mode: screen;
    transition: background-position 0.08s linear;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(29, 213, 87, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29, 213, 87, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary-green) 0%, transparent 70%);
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(29, 213, 87, 0.1);
    border: 1px solid rgba(29, 213, 87, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-green);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.6s both, glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: brightness(1);
    }

    to {
        filter: brightness(1.2);
    }
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 1s both;
}

/* ===============================
   TRUSTED BY SECTION
================================ */

/* SECTION BACKGROUND */
.trusted-dark {
    background: radial-gradient(circle at top, #000000, #02170a);
    overflow: hidden;
}

/* TEXT */
.trust-text {
    color: #caffdd;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* WRAPPER */
.trusted-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 25px 0;
}

/* TRACK (THIS MAKES IT MOVE) */
.trusted-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scrollLoop 35s linear infinite;
}

/* LOGO ITEM */
.trusted-item {
    flex: 0 0 auto;
}

/* LOGO IMAGE */
.trusted-item img {
    height: 55px;
    filter: grayscale(100%) brightness(1.2);
    opacity: 0.8;
    transition: all 0.4s ease;
}

/* HOVER EFFECT */
.trusted-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

/* PAUSE ON HOVER */
.trusted-wrapper:hover .trusted-track {
    animation-play-state: paused;
}

/* KEYFRAMES */
@keyframes scrollLoop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* EDGE FADE (PREMIUM EFFECT) */
.trusted-wrapper::before,
.trusted-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.trusted-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #020617, transparent);
}

.trusted-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #020617, transparent);
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: var(--matte-black);
    box-shadow: 0 4px 16px rgba(29, 213, 87, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(29, 213, 87, 0.5);
}

.btn-secondary {
    background: rgba(29, 213, 87, 0.808);
    color: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(29, 213, 87, 0.3);
}

.btn-secondary:hover {
    background: rgba(29, 213, 87, 0.2);
    transform: translateY(-3px);
}

.btn.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn.full-width {
    width: 100%;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-green), transparent);
}

.trust-section {
    padding: 3rem 0;
    background: rgba(29, 213, 87, 0.03);
    border-top: 1px solid rgba(29, 213, 87, 0.1);
    border-bottom: 1px solid rgba(29, 213, 87, 0.1);
}

.trust-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

section {
    padding: 2rem 0;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-tag.light {
    color: var(--primary-green);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title.light {
    color: var(--text-primary);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.services-section {
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid rgba(29, 213, 87, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(29, 213, 87, 0.3);
    box-shadow: 0 20px 40px rgba(29, 213, 87, 0.15);
}

.service-card.featured {
    border-color: rgba(29, 213, 87, 0.3);
    background: linear-gradient(135deg, rgba(29, 213, 87, 0.05) 0%, var(--card-bg) 100%);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient);
    color: var(--matte-black);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 213, 87, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.6rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

/* ===============================
   ABOUT SECTION
================================ */

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #2ee59d;
    /* neon green */
    background: rgba(46, 229, 157, 0.08);
    border-radius: 14px;

    box-shadow: 0 0 25px rgba(46, 229, 157, 0.25);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}


.about-section {
    background: linear-gradient(135deg, rgba(29, 213, 87, 0.02) 0%, var(--dark-bg) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-description {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.timeline {
    --line-x: 1rem;
    /* control everything from here */
    position: relative;
    padding-left: calc(var(--line-x) + 1.5rem);
}

.timeline::before {
    content: '';
    position: absolute;
    left: var(--line-x);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
            var(--primary-green),
            transparent);
}


.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(var(--line-x) - 46px);
    /* 12px dot / 2 */
    top: 0.55rem;
    width: 12px;
    height: 12px;
    background: var(--card-bg);
    border: 2px solid rgba(29, 213, 87, 0.5);
    border-radius: 50%;
    box-sizing: border-box;
}

.timeline-item.active::before {
    background: var(--primary-green);
    box-shadow: 0 0 18px rgba(29, 213, 87, 0.6);
    animation: pulseDot 1.6s infinite;
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(29, 213, 87, 0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(29, 213, 87, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(29, 213, 87, 0);
    }
}

.timeline-year {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-box {
    background: var(--card-bg);
    border: 1px solid rgba(29, 213, 87, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: rgba(29, 213, 87, 0.3);
    transform: translateX(8px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.feature-box p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-section {
    background: var(--dark-bg);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-card {
    background: var(--card-bg);
    border: 1px solid rgba(29, 213, 87, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(29, 213, 87, 0.3);
}

.process-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(29, 213, 87, 0.1);
}

.process-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 213, 87, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.process-icon svg {
    width: 32px;
    height: 32px;
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===============================
   TESTIMONIALS & FAQ SECTION
================================ */

.testimonials-section {
    background: var(--dark-bg);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid rgba(29, 213, 87, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.faq-section {
    background: linear-gradient(135deg, rgba(29, 213, 87, 0.02) 0%, var(--dark-bg) 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(29, 213, 87, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(29, 213, 87, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.cta-section {
    background: linear-gradient(135deg, rgba(29, 213, 87, 0.1) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(29, 213, 87, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-stat-icon {
    font-size: 2rem;
}

.cta-stat-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ===============================
   CONTACT FORM SECTION
================================ */

.contact-form-section {
    background: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-features {
    margin-top: 2rem;
}

.contact-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.contact-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient);
    color: var(--matte-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid rgba(29, 213, 87, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(29, 213, 87, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    /* background: rgba(29, 213, 87, 0.05); */
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===============================
   FOOTER SECTION
================================ */

.footer {
    background: var(--matte-black);
    border-top: 1px solid rgba(29, 213, 87, 0.1);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 213, 87, 0.1);
    border-radius: 10px;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient);
    color: var(--matte-black);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(29, 213, 87, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-rating .stars {
    color: #FFD700;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px) scale(0.96);
    filter: blur(6px);
    transition:
        opacity 0.9s cubic-bezier(.22, 1, .36, 1),
        transform 0.9s cubic-bezier(.22, 1, .36, 1),
        filter 0.9s cubic-bezier(.22, 1, .36, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/*==============================
   ANIMATE ON SCROLL 
==============================*/
/* Base hidden state */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

/* Visible state */
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Optional directional variants */
.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
    transform: translateX(0);
}


/*  ==============================
   About SECTION
============================== */

.about-section {
    padding: 6rem 0;
    background: radial-gradient(circle at top left,
            rgba(29, 213, 125, 0.15),
            #020403 45%);
}

.about-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* 👈 LEFT bigger than RIGHT */
    gap: 4rem;
    align-items: center;
}

.about-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin: 1rem 0;
}

.about-title span {
    color: #1dd57d;
}

.about-desc {
    color: #b3b3b3;
    max-width: 520px;
    line-height: 1.6;
}

.stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-card {
    flex: 1;
    padding: 1.8rem;
    border-radius: 16px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(29, 213, 125, 0.15);
}

.stat-card h3 {
    font-size: 2.2rem;
    color: #1dd57d;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.feature {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 14px;
    transition: 0.3s ease;
}

.feature:hover {
    background: rgba(29, 213, 125, 0.06);
    transform: translateX(10px);
}

.icon {
    width: 48px;
    height: 48px;
    background: rgba(29, 213, 125, 0.15);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #1dd57d;
    font-size: 20px;
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 2rem;
    }

}

/* ===============================
   CASE STUDIES SECTION
================================ */

.case-studies-section {
    background: var(--dark-bg);
    position: relative;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Card Container */
.case-card {
    background: var(--card-bg);
    border: 1px solid rgba(29, 213, 87, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-10px);
    border-color: rgba(29, 213, 87, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Image Area */
.case-image-wrapper {
    position: relative;
    height: 240px;
    width: 100%;
    overflow: hidden;
}

.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.case-card:hover .case-img {
    transform: scale(1.05);
}

.case-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.2) 100%);
}

.case-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(29, 213, 87, 0.9);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Content Area */
.case-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.case-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.case-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Stats Row */
.case-stats {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    margin-top: auto; /* Pushes stats to bottom */
}

.stat-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.2;
}

.stat-key {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 1.5rem;
}

/* Link */
.case-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.case-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.case-link:hover {
    color: var(--primary-green);
}

.case-link:hover svg {
    transform: translateX(5px);
}

.case-footer {
    text-align: center;
    margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
    
    .case-image-wrapper {
        height: 200px;
    }
}


/* ==============================
   INDUSTRY HALLWAY TABS (REALISTIC)
============================== */

.industry-tab {
    position: relative;
    width: 220px;
    height: 300px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;

    background: linear-gradient(180deg, #ffffff, #1b1b1b);
    transform-style: preserve-3d;
    perspective: 1000px;

    transition:
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.industries-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden; /* Hides content spilling out */
    padding: 20px 0;
}

.industries-slider {
    display: flex;
    flex-direction: row;
    gap: 24px;

    height: 320px;

    overflow-x: scroll;
    overflow-y: hid;

    white-space: nowrap;
    scrollbar-width: none;
    /* Firefox */
}

.industries-slider::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

.industry-tab {
    flex: 0 0 auto;
}


/* Lift + depth */
.industry-tab:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.55),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* ==============================
   FRONT PANEL (DOOR)
============================== */

.tab-front {
    position: absolute;
    inset: 0;
    z-index: 4;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #fff;
    text-align: center;

    background: linear-gradient(180deg,
            rgba(30, 30, 30, 0.95),
            rgba(10, 10, 10, 0.95));

    transform-origin: bottom center;
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.4s ease;
}

.tab-front .icon {
    font-size: 2.2rem;
}

.tab-front h4 {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==============================
   BACK PANEL (WINDOW VIEW)
============================== */

.tab-back {
    position: absolute;
    inset: 0;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 0.8s ease;
}

.tab-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tab-back .overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.25));
}

/* Content inside window */
.tab-back .content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;

    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.5s ease,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==============================
   LIGHT SHIMMER (GLASS FEEL)
============================== */

.industry-tab::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.02),
            transparent);

    opacity: 0;
    transition: opacity 0.6s ease;
}

/* ==============================
   DOOR OPEN ANIMATION
============================== */

.industry-tab:hover .tab-front {
    transform:
        translateY(-70px) scale(0.92);
    opacity: 0.25;
}

.industry-tab:hover .tab-back {
    transform: scale(1);
}

.industry-tab:hover .tab-back .content {
    opacity: 1;
    transform: translateY(0);
}

.industry-tab:hover::before {
    opacity: 1;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);

    background: rgba(20, 20, 20, 0.85);
    color: #fff;
    font-size: 18px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.nav:hover {
    background: rgba(30, 30, 30, 0.95);
    transform: translateY(-50%) scale(1.08);
}

.nav.left {
    left: 10px;
}

.nav.right {
    right: 10px;
}

.form-group input, .form-group select, .form-group textarea {
    color: var(--primary-green);
}


/* ==============================
   RESPONSIVE (MOBILE)
============================== */

@media (max-width: 768px) {

    .industries-wrapper {
        overflow: hidden;
    }

    .industries-slider {
        display: flex;
        flex-direction: row;
        gap: 16px;

        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;

        width: 100%;
        /* ✅ FIXED */
        padding-left: 16px;
    }

    .industries-slider::-webkit-scrollbar {
        display: none;
    }

    .industry-tab {
        flex: 0 0 auto;
    }

    .nav {
        display: none;
    }
}


.process-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #0a0a0a, #111, #0a0a0a);
    color: #fff;
}

.process-title {
    font-size: 3rem;
    font-weight: 800;
}

.process-desc {
    max-width: 700px;
    margin: auto;
    color: #b3b3b3;
}

.pill {
    display: inline-flex;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(29, 213, 87, 0.1);
    border: 1px solid rgba(29, 213, 87, 0.3);
    color: #1dd57d;
    margin-bottom: 20px;
}

/* GRID */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

/* CARD */
.process-card {
    position: relative;
    padding: 32px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);

    transform: translateY(60px) scale(0.95);
    opacity: 0;
    transition: all 0.6s ease;
}

.process-card.show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.process-card:hover {
    transform: translateY(-10px);
}

/* ICON */
.icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(29, 213, 87, .2), rgba(29, 213, 87, .05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 197, 68, 0.2), transparent, rgba(61, 255, 123, 0.434));
    animation: spin 8s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* STEP NUMBER */
.step-number {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 40px;
    height: 40px;
    background: #1dd57d;
    color: #000;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.process-card:hover .step-number {
    transform: scale(1.2);
}

/* GLOW */
.glow {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: rgba(29, 213, 87, .15);
    filter: blur(24px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.process-card:hover .glow {
    opacity: 1;
}


@media (max-width: 1024px) {

    /* ===== MEGA MENU (MOBILE / TABLET) ===== */
    .mega-menu {
        position: fixed;
        top: 80px;
        left: 0;

        width: 100%;
        max-width: 100%;
        height: calc(100vh - 80px);

        transform: none;
        border-radius: 0;

        overflow-y: auto;
    }

    .has-mega.is-open .mega-menu,
    .has-mega:hover .mega-menu {
        transform: none;
    }

    .mega-inner {
        grid-template-columns: 1fr;
    }

    .mega-left {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 0;
    }

    .mega-right {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .mega-col {
        margin-bottom: 30px;
    }

}

/* ===============================
   ABOUT PAGE SPECIFIC STYLES
================================ */

/* Adjust Hero for internal pages */
.hero-small {
    min-height: 60vh; /* Shorter than the main home hero */
    padding-top: 120px;
}

.active-link {
    color: var(--primary-green) !important;
}

.active-link::after {
    width: 100% !important;
}

/* Story Grid Layout */
.about-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 span {
    color: var(--primary-green);
}

.story-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Glass Cards for Mission/Vision */
.story-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(29, 213, 87, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.05);
}

/* Add a glowing edge effect */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    opacity: 0.5;
}

.card-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.glass-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .about-grid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-small {
        min-height: 50vh;
        padding-top: 100px;
    }
    
    .story-stats {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    
    section {
        padding: 5rem 0;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-container {
        gap: 15rem; 
        padding: 0.5rem 1rem;
    }

    .logo-icon img {
        width: 140px;
    }

    .nav-right .btn {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }

    .nav-menu.active {
        transform: translateX(0) translateY(-10px);
    }

    .mobile-toggle {
        display: flex;
    }

    .logo{
        transform: none;
    }

    /* Mobile Mega Menu styles removed */

    /* ===============================
       Contact FORM SECTION
    =============================== */
    .contact-form-section {
        padding: 4rem 0;
    }

    .contact-info h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    .contact-info p {
        text-align: center;
    }

    .contact-features {
        margin-top: 1.5rem;
    }

    .contact-feature {
        align-items: flex-start;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.8rem;
    }

    .btn.full-width {
        width: 100%;
        padding: 0.9rem;
        font-size: 1rem;
    }

    .contact-feature {
        background: rgba(255, 255, 255, 0.04);
        padding: 1rem;
        border-radius: 12px;
    }

    .about-section {
        padding: 4rem 0;
    }

    .section-tag {
        font-size: 0.75rem;
        letter-spacing: 0.08em;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .about-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Timeline */
    .timeline {
        display: flex;
        flex-direction: column;
        gap: 1.75rem;
    }

    .timeline-item {
        padding: 1.2rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.03);
    }

    .timeline-item.active {
        border: 1px solid rgba(28, 253, 87, 0.35);
    }

    /* Features */
    .about-features {
        grid-template-columns: 1fr;
    }

    .feature-box {
        padding: 1.6rem;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 1rem;
    }

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

}


@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card,
    .process-card,
    .industry-card {
        padding: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.4rem;
    }

    .contact-feature h4 {
        font-size: 1rem;
    }

    .contact-feature p {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.85rem;
        font-size: 0.95rem;
    }

    .contact-form {
        border-radius: 16px;
    }

    .section-title {
        font-size: 1.55rem;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .timeline-year {
        font-size: 0.9rem;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    .feature-box h4 {
        font-size: 1rem;
    }

    .feature-box p {
        font-size: 0.85rem;
    }
    .nav-container {
        gap: 5rem; 
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 992px) {

    .about-content {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .about-text {
        text-align: center;
    }

    .about-description {
        max-width: 640px;
        margin: 0 auto;
    }

    .timeline {
        margin-top: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .timeline-year {
        font-weight: 600;
        opacity: 0.85;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .about-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
