/* ==========================================================================
   1. GLOBAL VARIABLES & RESETS
   ========================================================================== */
:root {
    --dark-green: #003934;
    --light-green: #F4FFBF;
    --text-dark: #111;
    --text-light: #fff;
    --bg-light: #FEFFF9;
    --gray-text: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.text-center {
    text-align: center;
}

.relative-section {
    position: relative;
}

/* ==========================================================================
   2. NAVIGATION BAR
   ========================================================================== */
nav {
    transform: scale(1.1) ;
    box-shadow: 0 0 25px rgba(244, 255, 191, 0.6);
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(253, 253, 253, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--dark-green);
}

/* ==========================================================================
   3. BUTTON SYSTEM
   ========================================================================== */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    display: inline-block;
    cursor: pointer;
}

.btn-nav {
    background: var(--light-green);
    color: var(--dark-green);
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(244, 255, 191, 0.2);
}

.btn-primary {
    background: var(--light-green);
    color: var(--dark-green);
    padding: 16px 40px;
    margin-top: 20px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(244, 255, 191, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--light-green);
    padding: 14px 35px;
    border-radius: 50px;
}

.btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(244, 255, 191, 0.2);
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
#hero {
    text-align: center;
    padding: 160px 20px 0;
    z-index: 1;
}

#hero h1 {
    font-size: 4.5rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
}
.bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    /* Spaces the lines equally across the screen */
    z-index: -1;
    /* Puts the lines in the background */
    pointer-events: none;
    /* Prevents the lines from interfering with mouse clicks */
}

.bg-lines span {
    width: 1px;
    height: 100%;
    background-color: rgba(220, 235, 170, 0.4);
    /* The light greenish-yellow line color */
}
.highlight {
    padding: 5px 25px;
    border-radius: 60px;
    color: var(--dark-green);
    display: inline-block;
}
/* ==========================================================================
   ANIMATED TEXT HIGHLIGHT
   ========================================================================== */
.highlight {
    margin-top: 8px;
    position: relative;
    display: inline-block;
    color: var(--dark-green);
    padding: 5px 15px;
    /* Slight padding so the highlight extends just past the text */
    z-index: 1;
    /* Creates a stacking context for the pseudo-element */
    /* Notice we removed the background-color and border-radius from here! */
}

/* The animated background block */
/* The animated background block */
.highlight::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--light-green);
    z-index: -1;

    /* CHANGED: Increased time to 2.5s and used a smoother, gliding easing curve */
    animation: reveal-highlight 4.5s cubic-bezier(0.1, 0, 0.2, 1) forwards;

    /* Wait half a second before starting */
    animation-delay: .5s;
}

/* The keyframes that control the left-to-right wipe */
@keyframes reveal-highlight {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}


.hero-image-container {
    margin-top: 60px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-img {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    object-fit: cover;
    background-color: #eaeaea;
}

/* ==========================================================================
   5. ANGLED MARQUEE RIBBON
   ========================================================================== */
.ribbon-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: -80px;
    padding: 50px 0;
    z-index: 10;
    position: relative;
}

.ribbon {
    background-color: var(--light-green);
    width: 110vw;
    margin-left: -5vw;
    padding: 20px 0;
    transform: rotate(-2deg);
    outline: 1px solid transparent;
    /* Prevents jagged alignment gaps */
}

.ribbon-track {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.ribbon-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    gap: 40px;
    align-items: center;
}

.ribbon-content span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-green);
    letter-spacing: 1px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

/* ==========================================================================
   6. TYPOGRAPHY & STRUCTURAL SECTIONS
   ========================================================================== */
.dark-section {
    background-color: var(--dark-green);
    color: var(--text-light);
    margin-top: -80px;
}

.light-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.subtitle {
    color: var(--light-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.desc {
    color: var(--gray-text);
    font-size: 1.05rem;
    line-height: 1.6;
}

.dark-section .desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   7. SERVICES GRID
   ========================================================================== */
.services-top {
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    transition: transform 0.3s;
    cursor: pointer;
}

.service-icon {
    color: var(--light-green);
    font-size: 1.2rem;
    margin-top: 3px;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
}

.service-card:hover {
    transform: translateX(10px);
    color: var(--light-green);
}

/* ==========================================================================
   8. ABOUT & STATS SECTION
   ========================================================================== */
.about-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-images {
    display: inline-flex;
    gap: 24px;
    position: relative;
    flex: 1;
}

.about-images img {
    width: 100%;
    background-color: #eaeaea;
    height: 500px;
    object-fit: cover;
}

.img-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--light-green);
    color: var(--dark-green);
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.about-text {
    flex: 1;
}

.stats-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid #eaeaea;
    padding-top: 30px;
}

.stats-grid h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stats-grid p {
    color: var(--gray-text);
    font-weight: 500;
}

/* ==========================================================================
   9. PROJECTS GRAPHIC SHOWCASE
   ========================================================================== */
#projects {
    padding-top: 80px;
    padding-bottom: 160px;
}

.bg-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.project-card img {
    width: 100%;
    border-radius: 15px;
    background-color: #eaeaea;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover img {
    transform: scale(1.03);
}

.project-card p {
    margin-top: 20px;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.center-btn {
    margin-top: 50px;
}

/* ==========================================================================
   10. WORKING PROCESS
   ========================================================================== */
.process-wrapper {
    position: relative;
    margin-top: 60px;
    padding-bottom: 40px;
}

.process-line {
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    background: var(--dark-green);
    padding: 0 20px;
}

.process-step h1 {
    font-size: 3.5rem;
    color: var(--light-green);
    margin-bottom: 15px;
}

.process-step p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* ==========================================================================
   11. TESTIMONIAL CARDS
   ========================================================================== */
.test-section {
    padding-top: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #eaeaea;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    text-align: left;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    flex: 1;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.05);
    font-family: serif;
    line-height: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #eaeaea;
}

.testimonial-card p {
    color: var(--gray-text);
    line-height: 1.7;
    font-style: italic;
}

/* ==========================================================================
   12. HEXAGON PRESENTATION SECTION
   ========================================================================== */
.hexagon-section {
    display: flex;
    gap: 60px;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 150px;
}
@media (max-width: 768px) {
    .hexagon-section {
        padding-bottom: 80px;
    }
}

.hex-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hex-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: #eaeaea;
    border-radius: 20px;
}

.hex-text {
    flex: 1;
}

.check-list li {
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check {
    color: var(--dark-green);
    font-weight: bold;
    background: var(--light-green);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* ==========================================================================
   13. PREMIUM FOOTER SETUP
   ========================================================================== */
#contact {
    padding-top: 100px;
    padding-bottom: 40px;
}

.contact-header {
    max-width: 600px;
}

.contact-header p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Updated Action WhatsApp Dial Out Button */
.circular-btn {
    position: absolute;
    top: 60px;
    right: 20px;
    width: 130px;
    height: 130px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    gap: 2px;
    cursor: pointer;
    z-index: 10;
}

.circular-btn .arrow {
    font-size: 2rem;
    line-height: 1;
}

.circular-btn .btn-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.circular-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(244, 255, 191, 0.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

/* Balanced compact footprint logo sizes */
/* ==========================================================================
   UPDATED PREMIUM FOOTER WITH GLOW EFFECTS
   ========================================================================== */
#contact {
    padding-top: 36px;
    padding-bottom: 0px;
    background-color: var(--dark-green);
}

.contact-header p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-size: 1.1rem;
}

/* Let's Talk Circular Button Glow */
.circular-btn {
    position: absolute;
    top: 25px;
    right: 20px;
    width: 120px;
    height: 120px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    z-index: 10;
}

.circular-btn .arrow {
    font-size: 1.8rem;
    line-height: 1;
}

.circular-btn .btn-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.circular-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 25px rgba(244, 255, 191, 0.6);
    /* Glow Effect */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-links-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.social-logos {
    display: flex;
    gap: 18px;
}

/* SVG Icon Hover Glow */
.social-logos {
    display: flex;
    gap: 18px;
    align-items: center;
    /* This ensures perfectly centered icons even if sizes vary */
}

/* Base styles for all icons */
/* Center the links within the main container */
.social-logos {
    display: flex;
    gap: 18px;
    align-items: center;
}

/* Make the anchor tags themselves perfectly center their contents */
.social-logos a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Standard Icon Size */
.social-logos a img {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    filter: invert(93%) sepia(16%) saturate(644%) hue-rotate(13deg) brightness(106%) contrast(101%);
}

/* Specific Email Icon Size */
.social-logos a[href^="mailto"] img {
    width: 40px;
    height: 40px;
}

/* Hover effects */
.social-logos a:hover img {
    transform: translateY(-5px);
    filter: invert(93%) sepia(16%) saturate(644%) hue-rotate(13deg) brightness(115%) contrast(101%) drop-shadow(0 0 8px #F4FFBF);
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: var(--light-green);
}

.footer-copyright {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.footer-copyright p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive Fix */
@media (max-width: 992px) {
    .circular-btn {
        position: relative;
        top: 0;
        right: 0;
        margin: 30px auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .footer-links-container {
        align-items: center;
    }
}
/* ==========================================================================
   14. INTERSECTION OBSERVER ANIMATION UTILITIES
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   15. RESPONSIVE BREAKPOINTS (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
    #hero h1 {
        font-size: 3.4rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-container,
    .hexagon-section {
        flex-direction: column;
        gap: 40px;
    }

    .process-line {
        display: none;
    }

    .process-grid {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .bg-text {
        font-size: 5rem;
        top: 10px;
    }

    .circular-btn {
        position: relative;
        top: 0;
        right: 0;
        margin: 40px auto 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 35px;
        text-align: center;
    }

    .footer-links-container {
        align-items: center;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.8rem;
    }

    .services-grid,
    .projects-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        /* Hide standard navigation links for simpler mobile layout fallback */
    }
}

@media (max-width: 480px) {
    #hero h1 {
        font-size: 2.2rem;
    }

    .highlight {
        padding: 2px 15px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==========================================================================
   ANIMATED TEXT HIGHLIGHT
   ========================================================================== */
.highlight {
    position: relative;
    display: inline-block;
    color: var(--dark-green);
    padding: 5px 15px;
    /* Slight padding so the highlight extends just past the text */
    z-index: 1;
    /* Creates a stacking context for the pseudo-element */
    /* Notice we removed the background-color and border-radius from here! */
}

/* The animated background block */
.highlight::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    /* Starts hidden at 0 width */
    background-color: var(--light-green);
    z-index: -1;
    /* Places it directly behind the text */
    /* The animation: name | duration | easing | keep final state (forwards) */
    animation: reveal-highlight 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.5s;
    /* Waits half a second after the page loads to draw */
}

/* The keyframes that control the left-to-right wipe */
@keyframes reveal-highlight {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}
/* ==========================================================================
   RESPONSIVE OVERHAUL — COMPLETE MOBILE/TABLET FIX
   ========================================================================== */

/* --- Fix nav scale(1.1) which causes horizontal overflow on mobile --- */
nav {
    transform: none !important;
}

/* --- Hamburger Button --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-green);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animate to X when active */
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Menu Dropdown --- */
.mobile-menu {
    display: none;
    background: rgba(253, 253, 253, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

.mobile-menu.open {
    max-height: 300px;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 4px;
}

.mobile-menu ul li a {
    display: block;
    padding: 12px 0;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-menu ul li:last-child a {
    border-bottom: none;
    margin-top: 8px;
}

.mobile-menu .btn-nav {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
}

/* ==========================================================================
   TABLET — 992px and below
   ========================================================================== */
@media (max-width: 992px) {

    /* Hero */
    #hero {
        padding: 140px 20px 0;
    }
    #hero h1 {
        font-size: 3.2rem;
    }
    .hero-img {
        height: 320px;
    }

    /* About section images */
    .about-images {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .about-images img {
        height: 320px;
    }
    .img-badge {
        top: 50%;
        left: 50%;
    }

    /* Stats */
    .stats-grid {
        gap: 24px;
    }
    .stats-grid h2 {
        font-size: 2rem;
    }

    /* Hexagon */
    .hex-img {
        width: 100%;
        height: 380px;
        border-radius: 16px;
    }

    /* Process */
    .process-step h1 {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   MOBILE — 768px and below
   ========================================================================== */
@media (max-width: 768px) {

    /* Show hamburger, hide desktop nav */
    .hamburger {
        display: flex;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu {
        display: block;
    }

    /* Nav padding tighter */
    .nav-container {
        padding: 14px 20px;
    }

    /* Hero */
    #hero {
        padding: 120px 20px 0;
    }
    #hero h1 {
        font-size: 2.4rem;
        letter-spacing: -0.5px;
    }
    .hero-img {
        height: 240px;
        border-radius: 12px;
    }
    .hero-image-container {
        margin-top: 40px;
    }

    /* Ribbon */
    .ribbon-wrapper {
        margin-top: -40px;
    }
    .ribbon-content span {
        font-size: 0.9rem;
    }

    /* Sections general */
    .container {
        padding: 50px 20px;
    }
    h2 {
        font-size: 2rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .service-card {
        padding: 20px 0;
    }

    /* About */
    .about-container {
        flex-direction: column;
        gap: 30px;
    }
    .about-images {
        width: 100%;
    }
    .about-images img {
        height: 220px;
    }
    .img-badge {
        padding: 20px;
        font-size: 1rem;
    }
    .img-badge span:first-child {
        font-size: 26px !important;
    }

    /* Stats */
    .stats-grid {
        gap: 20px;
        flex-wrap: wrap;
    }
    .stats-grid > div {
        min-width: 80px;
    }
    .stats-grid h2 {
        font-size: 1.8rem;
    }

    /* Projects */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    .project-card img {
        height: 260px;
        border-radius: 12px;
    }
    .bg-text {
        font-size: 4rem;
    }

    /* Process */
    .process-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .process-step {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 0;
        width: 100%;
    }
    .process-step h1 {
        font-size: 2.5rem;
        margin-bottom: 0;
        min-width: 60px;
    }
    .process-step p {
        font-size: 1rem;
    }
    .process-line {
        display: none;
    }

    /* Testimonials */
    .testimonials-grid {
        flex-direction: column;
        gap: 24px;
        margin-top: 30px;
    }
    .testimonial-card {
        padding: 28px 24px;
    }

    /* Hexagon section */
    .hexagon-section {
        flex-direction: column;
        gap: 40px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .hex-image-container {
        width: 100%;
    }
    .hex-img {
        width: 100%;
        height: 260px;
        border-radius: 14px;
    }

    /* Footer */
    .contact-header {
        max-width: 100%;
    }
    .contact-header h2 {
        font-size: 2rem;
    }
    .circular-btn {
        position: relative;
        top: 0;
        right: 0;
        margin: 30px auto 0;
        display: flex;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        text-align: center;
        margin-top: 30px;
    }
    .footer-links-container {
        align-items: center;
    }
}

/* ==========================================================================
   SMALL MOBILE — 480px and below
   ========================================================================== */
@media (max-width: 480px) {

    #hero h1 {
        font-size: 1.9rem;
        line-height: 1.2;
    }
    .highlight {
        padding: 2px 10px;
        font-size: 1.9rem;
    }
    .btn-primary {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
    .hero-img {
        height: 200px;
    }

    h2 {
        font-size: 1.75rem;
    }

    .about-images img {
        height: 180px;
    }

    .hex-img {
        width: 100%;
        height: 220px;
        border-radius: 12px;
    }

    .stats-grid {
        gap: 16px;
    }
    .stats-grid h2 {
        font-size: 1.6rem;
    }

    .project-card img {
        height: 220px;
    }

    .process-step h1 {
        font-size: 2rem;
        min-width: 50px;
    }

    .footer-legal-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .bg-text {
        display: none;
    }

    .testimonial-card {
        padding: 22px 18px;
    }

    .contact-header h2 {
        font-size: 1.7rem;
    }
}
