/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-2: #f6fbf7;
    --text: #0f1c14;
    --muted: #6b7a70;
    --primary: #57c46a;
    --primary-2: #8fd98b;
    --primary-3: #2e6d3d;
}

body {
    font-family: Calibri, "Segoe UI", -apple-system, system-ui, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
}

.logo-img {
    height: 100px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .25));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-2);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

/* Navbar dropdown */
.nav-menu li {
    position: relative;
}

.nav-menu .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    min-width: 220px;
    z-index: 1001;
}

.nav-menu .dropdown li {
    margin: 0;
}

.nav-menu .dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    font-weight: 500;
}

.nav-menu .dropdown a:hover {
    background: var(--surface-2);
    color: var(--primary-3);
}

.nav-menu li:hover>.dropdown {
    display: block;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #0f1c14;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Techy moving background objects */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    inset: -20% -10% -20% -10%;
    background-repeat: no-repeat;
    pointer-events: none;
}

.hero::before {
    background: none;
    animation: none;
    opacity: 1;
}

.hero::after {
    background-image:
        radial-gradient(460px 220px at 12% 20%, rgba(143, 217, 139, .18), transparent 60%),
        radial-gradient(520px 240px at 88% 70%, rgba(87, 196, 106, .16), transparent 60%);
    transform: translateZ(0);
    animation: floatBlobs 16s ease-in-out infinite alternate;
}

/* codeFall removed */

@keyframes floatBlobs {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(20px);
    }
}

.tech-shapes {
    display: none;
}

/* Floating coding icons layer */
.hero-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-icons i {
    position: absolute;
    color: rgba(46, 109, 61, 0.24);
    font-size: 24px;
    animation: iconDrift 8s ease-in-out infinite;
}

/* disperse icons */
.hero-icons i:nth-child(1) {
    top: 8%;
    left: 6%;
    animation-delay: 0s;
    font-size: 20px;
}

.hero-icons i:nth-child(2) {
    top: 22%;
    left: 28%;
    animation-delay: 1s;
}

.hero-icons i:nth-child(3) {
    top: 16%;
    right: 18%;
    animation-delay: 2s;
    font-size: 30px;
}

.hero-icons i:nth-child(4) {
    top: 35%;
    left: 15%;
    animation-delay: 1.5s;
}

.hero-icons i:nth-child(5) {
    top: 42%;
    right: 8%;
    animation-delay: 2.5s;
}

.hero-icons i:nth-child(6) {
    top: 56%;
    left: 26%;
    animation-delay: 3s;
    font-size: 32px;
}

.hero-icons i:nth-child(7) {
    top: 62%;
    right: 24%;
    animation-delay: 0.5s;
}

.hero-icons i:nth-child(8) {
    top: 74%;
    left: 10%;
    animation-delay: 2.2s;
    font-size: 26px;
}

.hero-icons i:nth-child(9) {
    top: 76%;
    right: 14%;
    animation-delay: 3.2s;
}

.hero-icons i:nth-child(10) {
    top: 50%;
    right: 40%;
    animation-delay: .8s;
}

.hero-icons i:nth-child(11) {
    top: 8%;
    right: 8%;
    animation-delay: 1.8s;
}

.hero-icons i:nth-child(12) {
    top: 28%;
    right: 46%;
    animation-delay: 2.8s;
}

.hero-icons i:nth-child(13) {
    top: 66%;
    left: 46%;
    animation-delay: 1.2s;
}

.hero-icons i:nth-child(14) {
    top: 38%;
    right: 60%;
    animation-delay: 2.2s;
}

.hero-icons i:nth-child(15) {
    top: 86%;
    right: 32%;
    animation-delay: 3.6s;
}

.hero-icons i:nth-child(16) {
    top: 12%;
    left: 42%;
    animation-delay: .6s;
}

.hero-icons i:nth-child(17) {
    top: 32%;
    right: 32%;
    animation-delay: 1.4s;
}

.hero-icons i:nth-child(18) {
    top: 58%;
    left: 6%;
    animation-delay: 2.6s;
}

.hero-icons i:nth-child(19) {
    top: 68%;
    right: 6%;
    animation-delay: 1.9s;
    font-size: 22px;
}

.hero-icons i:nth-child(20) {
    top: 46%;
    left: 48%;
    animation-delay: 2.4s;
    font-size: 34px;
}

.hero-icons i:nth-child(21) {
    top: 24%;
    right: 12%;
    animation-delay: .9s;
}

.hero-icons i:nth-child(22) {
    top: 78%;
    left: 28%;
    animation-delay: 1.7s;
}

.hero-icons i:nth-child(23) {
    top: 82%;
    right: 44%;
    animation-delay: 2.3s;
}

.hero-icons i:nth-child(24) {
    top: 14%;
    right: 42%;
    animation-delay: 3.1s;
}

.hero-icons i:nth-child(25) {
    top: 40%;
    left: 60%;
    animation-delay: 2.1s;
    font-size: 28px;
}

.hero-icons i:nth-child(26) {
    top: 10%;
    left: 52%;
    animation-delay: 0.3s;
    font-size: 22px;
}

.hero-icons i:nth-child(27) {
    top: 20%;
    left: 64%;
    animation-delay: 1.1s;
    font-size: 26px;
}

.hero-icons i:nth-child(28) {
    top: 30%;
    left: 72%;
    animation-delay: 2.3s;
    font-size: 20px;
}

.hero-icons i:nth-child(29) {
    top: 44%;
    left: 8%;
    animation-delay: 0.7s;
    font-size: 30px;
}

.hero-icons i:nth-child(30) {
    top: 52%;
    right: 52%;
    animation-delay: 1.5s;
    font-size: 24px;
}

.hero-icons i:nth-child(31) {
    top: 64%;
    left: 52%;
    animation-delay: 2.7s;
    font-size: 28px;
}

.hero-icons i:nth-child(32) {
    top: 70%;
    right: 28%;
    animation-delay: 0.4s;
    font-size: 22px;
}

.hero-icons i:nth-child(33) {
    top: 80%;
    left: 36%;
    animation-delay: 1.8s;
    font-size: 26px;
}

.hero-icons i:nth-child(34) {
    top: 6%;
    right: 54%;
    animation-delay: 2.5s;
    font-size: 32px;
}

.hero-icons i:nth-child(35) {
    top: 16%;
    left: 74%;
    animation-delay: 0.8s;
    font-size: 20px;
}

.hero-icons i:nth-child(36) {
    top: 26%;
    right: 16%;
    animation-delay: 1.6s;
    font-size: 28px;
}

.hero-icons i:nth-child(37) {
    top: 48%;
    left: 20%;
    animation-delay: 2.2s;
    font-size: 24px;
}

.hero-icons i:nth-child(38) {
    top: 54%;
    right: 36%;
    animation-delay: 0.5s;
    font-size: 30px;
}

.hero-icons i:nth-child(39) {
    top: 72%;
    left: 44%;
    animation-delay: 1.3s;
    font-size: 22px;
}

.hero-icons i:nth-child(40) {
    top: 84%;
    right: 20%;
    animation-delay: 2.6s;
    font-size: 26px;
}

.hero-icons i:nth-child(41) {
    top: 4%;
    left: 30%;
    animation-delay: 1.9s;
    font-size: 28px;
}

.hero-icons i:nth-child(42) {
    top: 34%;
    left: 58%;
    animation-delay: 0.6s;
    font-size: 24px;
}

.hero-icons i:nth-child(43) {
    top: 60%;
    right: 48%;
    animation-delay: 2.4s;
    font-size: 30px;
}

.hero-icons i:nth-child(44) {
    top: 88%;
    left: 22%;
    animation-delay: 1.2s;
    font-size: 22px;
}

.hero-icons i:nth-child(45) {
    top: 18%;
    right: 64%;
    animation-delay: 2.8s;
    font-size: 26px;
}

@keyframes iconDrift {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: .55;
    }

    50% {
        transform: translate(6px, -12px) scale(1.06) rotate(2deg);
        opacity: .9;
    }

    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: .55;
    }
}

.shape {
    position: absolute;
    background: rgba(87, 196, 106, 0.08);
    border: 1px solid rgba(87, 196, 106, 0.2);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    border-radius: 50%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
    animation-delay: 4s;
}

@keyframes float {

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

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

.hero-content {
    text-align: center;
    color: var(--text);
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-logo {
    height: 140px;
    margin: 0 auto 1.25rem;
    opacity: .98;
}

.hero-logo.big {
    height: 420px;
    max-width: 100%;
    width: auto;
    display: block;
    margin-left: auto;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #2e6d3d, #8fd98b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.5px;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: .75rem;
    color: #2c8a4d;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.6rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: 0;
    margin-right: 0;
}

/* Two-column layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 2rem;
}

.hero-left {
    text-align: left;
}

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary), var(--primary-2));
    color: #0b1410;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(143, 217, 139, 0.25);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(143, 217, 139, 0.35);
    background: linear-gradient(45deg, var(--primary-2), var(--primary));
}

/* Robot CTA styles */
.robot-cta {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.robot-arm {
    display: block;
    margin: 0 auto;
}

.robot-button {
    transform-origin: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

.robot-cta:hover .robot-button {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(87, 196, 106, .35);
}

.robot-cta:hover .claw path:first-child {
    transform: translateY(2px);
}

.robot-cta:hover .claw path:last-child {
    transform: translateY(-2px);
}

.claw path {
    transition: transform .25s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary), var(--primary-2));
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    margin-top: 1rem;
    color: var(--muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--surface);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--surface-2);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-2);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg);
}

/* Services Grid (formerly focus-grid style) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, var(--primary), var(--primary-2));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover::after {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(87, 255, 143, 0.15);
}

.service-item .service-icon {
    width: 70px;
    height: 70px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-item .service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-item .service-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
}

/* Prime Focus: remove green tile bg, support PNG icons */
.focus-icon-slide {
    width: 90px;
    height: 90px;
    background: transparent;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1410;
}

.focus-icon-slide img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
}

.service-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--muted);
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: var(--surface);
}

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

.review-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(87, 196, 106, 0.12);
    padding: 2rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(143, 217, 139, 0.2);
    font-family: "Times New Roman", serif;
}

.review-quote {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.review-rating {
    color: #f5b100;
    margin-bottom: 1rem;
    display: flex;
    gap: 4px;
    font-size: 1rem;
}

.review-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-3);
}

.review-author span {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Focus Section */
.focus {
    padding: 100px 0;
    background: #f7fbf8;
}

/* Horizontal slideshow for focus (formerly services-scroller style) */
.focus-scroller {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.focus-scroller::-webkit-scrollbar {
    height: 8px;
}

.focus-scroller::-webkit-scrollbar-thumb {
    background: rgba(87, 196, 106, 0.3);
    border-radius: 10px;
}

.focus-slide {
    flex: 0 0 85%;
    max-width: 85%;
    min-height: 220px;
    background: var(--surface);
    border: 1px solid rgba(87, 196, 106, 0.18);
    border-radius: 16px;
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem;
    scroll-snap-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.focus-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 55px rgba(87, 196, 106, 0.20);
    border-color: rgba(87, 196, 106, 0.35);
}

.focus-icon-slide {
    width: 90px;
    height: 90px;
    background: transparent;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1410;
}

.focus-icon-slide i {
    font-size: 2rem;
    color: #0b1410;
}

.focus-copy h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: .5rem;
}

.focus-copy p {
    color: var(--muted);
    line-height: 1.7;
}

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

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    background: var(--surface);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    min-width: 200px;
    flex: 1;
    max-width: 250px;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(87, 255, 143, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-2);
    transition: transform 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

.process-arrow {
    color: var(--primary-2);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.process-arrow:hover {
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: #0a130e;
    color: var(--text);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-2);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--primary-2);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-2);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(143, 217, 139, 0.1);
    border: 1px solid rgba(143, 217, 139, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-2);
    color: #0b1410;
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--primary-2);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(143, 217, 139, 0.2);
    color: var(--muted);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #0a130e;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-logo {
        height: 140px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .stat-item {
        padding: 1rem;
    }

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

    .focus-slide {
        flex-basis: 92%;
        max-width: 92%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-right {
        justify-content: center;
        margin-top: 1rem;
    }

    .hero-logo.big {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-logo {
        height: 110px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .service-item,
    .process-step {
        padding: 1.5rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Additional Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.hero-tech {
    position: relative;
    display: inline-block;
    padding: 24px 28px 18px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(87, 196, 106, 0.18);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    isolation: isolate;
}

.hero-tech::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, rgba(46, 109, 61, 0.18) 0 1px, transparent 1px 26px),
        repeating-linear-gradient(-45deg, rgba(143, 217, 139, 0.22) 0 1px, transparent 1px 26px),
        radial-gradient(600px 280px at 20% 15%, rgba(87, 196, 106, 0.18), transparent 60%),
        radial-gradient(600px 280px at 80% 80%, rgba(143, 217, 139, 0.18), transparent 60%);
    opacity: .6;
    pointer-events: none;
}

/* Ensure content sits above the grid */
.hero-tech>* {
    position: relative;
    z-index: 1;
}

/* Hero Stage (dark, modern panel inspired by reference) */
.hero-stage {
    position: relative;
    width: min(1100px, 92%);
    border-radius: 28px;
    padding: 72px 48px 96px;
    background: #ffffff;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .06);
    border: 1px solid rgba(87, 196, 106, .12);
    overflow: hidden;
}

/* Stars layer */
.hero-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(0, 0, 0, .28) 1px, transparent 1.6px),
        radial-gradient(rgba(87, 196, 106, .35) 1px, transparent 1.6px),
        radial-gradient(rgba(0, 0, 0, .18) 1px, transparent 1.4px);
    background-size: 22px 22px, 28px 28px, 34px 34px;
    background-position: 0 0, 6px 8px, 12px 4px;
    opacity: .45;
}

/* Horizon glow */
.hero-stage::after {
    content: '';
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -40px;
    height: 320px;
    background: radial-gradient(60% 80% at 50% 100%, rgba(87, 196, 106, .25), rgba(87, 196, 106, 0) 70%);
    filter: blur(12px);
}

/* Ensure content sits above decorative layers */
.hero-stage>* {
    position: relative;
    z-index: 1;
}