
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Geist:wght@100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Geist", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

#navbar.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo-chrono {
    color: white;
    transition: color 0.3s ease;
}

#navbar.scrolled .logo-chrono {
    color: #1f2937;
}

.logo-one {
    color: #ef4444;
}

.logo-subtitle {
    font-size: 10px;
    color: white;
    transition: color 0.3s ease;
}

#navbar.scrolled .logo-subtitle {
    color: #6b7280;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ef4444;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

#navbar.scrolled .nav-link {
    color: #1f2937;
}

.nav-link:hover {
    color: #ef4444;
    transform: translateY(-2px);
}

.btn-primary {
    background: #ef4444;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary:hover {
    background: #dc2626;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

#navbar.scrolled .hamburger span {
    background: #1f2937;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(37, 37, 37, 0.66), transparent);
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.highlight {
    color: #ef4444;
}

.highlight1 {
    color: #252525;
}

.btn-hero {
    background: #ef4444;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: bounceSubtle 2s ease-in-out infinite;
     text-decoration: none;
}

.btn-hero:hover {
    background: #dc2626;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.5);
     text-decoration: none;
}

.btn-hero1 {
    background: #252525;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: bounceSubtle 2s ease-in-out infinite;
     text-decoration: none;
}

.btn-hero1:hover {
    background: #303030;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.296)
    
}

/* Mobile */
@media (max-width: 480px) {
    .btn-hero,
    .btn-hero1 {
        width: 100%;
        display: block;
        text-align: center;
        padding: 14px 0;
        font-size: 16px;
    }

    /* Add margin between buttons */
    .btn-hero {
        margin-bottom: 12px;
    }
}

.scroll-indicator {
    position: absolute;
    left: 40px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.scroll-text {
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    animation: fadeInOut 2s ease-in-out infinite;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: white;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: #ef4444;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(200%);
    }
}

/* Services Section */
.services {
    background: #ef4444;
    padding: 120px 20px;
}

.section-title {
    font-size: 48px;
    color: white;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.section-subtitle {
    color: #ffecec;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* 🔥 NEW COOL CARD DESIGN */
.service-card {
    background: white;
    padding: 45px 35px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* GLOW BORDER ANIMATION */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, #ffffff00, #ffffff33, #ffffff00);
    transition: 0.4s ease;
}

/* ICON CIRCLE */
.icon-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(239, 68, 68, 0.15);
    transition: all 0.3s ease;
}

.service-icon {
    font-size: 42px;
    color: #ef4444;
}

/* CARD TEXT */
.service-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1f2937;
    font-weight: 700;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 16px;
}

/* HOVER EFFECTS */
.service-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.22);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .icon-wrap {
    background: #ef4444;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.service-card:hover .service-icon {
    color: white;
}

/* Job Section */
.jobs {
    background: #252525;
    padding: 130px 20px;
    padding-bottom: 0;
    color: white;
}

.jobs-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.jobs-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.jobs-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Job List Section */
.job-list-section {
    background: #252525;
    color: white;
    padding: 40px 20px;
}

.job-item {
    background: #575757;
    padding: 20px 30px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.job-item h3 {
    margin: 0;
}

.btn-toggle {
    background: #E31937;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-toggle:hover {
    background: #252525;
}

.job-details {
    display: none;
    padding-top: 10px;
    color: #d1d5db;
}

.job-section {
    margin-bottom: 15px;
}

.job-section h4 {
    margin-bottom: 5px;
    color: #fff;
}

.job-section ul {
    padding-left: 20px;
    margin: 0;
}

.job-section ul li {
    margin-bottom: 5px;
}

/* About Section */
.section-title-dark {
    font-size: 44px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.about {
    background: #f9fafb;
    padding: 10px 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: #374151;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.85;
}

.about-text .p1 {
    color: #374151;
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 1.85;
    font-weight: 600;
}

/* Responsive, scalable logo */
.about-logo img {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}

/* Image styling */
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    object-fit: cover;
}

/* Mobile Responsive Tweaks */
@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-logo img {
        max-width: 260px;
        margin: 0 auto 25px;
    }

    .about-text p {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .about {
        padding: 90px 15px;
    }

    .about-logo img {
        max-width: 220px;
    }
}


/* About Section with Animated Background Icons */
.about {
    position: relative;
    background: #f9fafb;
    padding: 110px 20px;
    overflow: hidden;
}

/* Icon layers */
.about::before,
.about::after,
.about .icon-layer1,
.about .icon-layer2,
.about .icon-layer3 {
    content: "📦📦"; /* Construction emojis */
    position: absolute;
    font-size: 300px;
    opacity: 0.3;
    white-space: nowrap;
}

/* Extra icon layers using pseudo elements & extra divs if needed */
.about::before {
    top: -50px;
    left: 0;
    animation: fallIcons 12s linear infinite;
}
.about::after {
    top: 150px;
    left: -200px;
    font-size: 70px;
    opacity: 0.08;
    animation: fallIconsReverse 15s linear infinite;
}

/* Optional extra layers if you add divs inside .about */
.about .icon-layer1 {
    top: 50px;
    left: -100px;
    font-size: 60px;
    opacity: 0.06;
    animation: fallIcons 18s linear infinite;
}
.about .icon-layer2 {
    top: -100px;
    left: -300px;
    font-size: 55px;
    opacity: 0.05;
    animation: fallIconsReverse 20s linear infinite;
}
.about .icon-layer3 {
    top: 200px;
    left: -150px;
    font-size: 65px;
    opacity: 0.07;
    animation: fallIcons 14s linear infinite;
}

/* Keyframes for falling icons */
@keyframes fallIcons {
    0% { transform: translateX(0) translateY(0) rotate(0deg);}
    100% { transform: translateX(1200px) translateY(600px) rotate(360deg);}
}

@keyframes fallIconsReverse {
    0% { transform: translateX(0) translateY(0) rotate(0deg);}
    100% { transform: translateX(1200px) translateY(500px) rotate(-360deg);}
}

/* Keep content above background */
.about-content {
    position: relative;
    z-index: 2;
}

/* CEO */
.ceo-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 35px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    margin-top: 45px;
    transition: 0.35s ease;
    border: 1px solid rgba(0,0,0,0.06);
}

/* Hover Elevation */
.ceo-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 40px 70px rgba(0,0,0,0.15);
}

/* Profile Photo Wrapper */
.ceo-image-wrapper {
    position: relative;
    width: 145px;
    height: 145px;
    margin-bottom: 20px;
}

/* Profile Image */
.ceo-img {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 14px 30px rgba(0,0,0,0.15);
    border: 3px solid white;
}

/* CEO Badge */
.ceo-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #1f2937;
    color: white;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

/* CEO Name */
.ceo-name {
    font-size: 26px;
    font-weight: 800;
    color: #ef4444;
    margin-bottom: 6px;
}

/* Position */
.ceo-position {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Description */
.ceo-desc {
    color: #374151;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 22px;
}

/* Social Icons */
.ceo-socials a {
    font-size: 20px;
    color: #252525;
    margin-right: 14px;
    transition: 0.3s ease;
}

.ceo-socials a:hover {
    color: #ef4444;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .ceo-card {
        text-align: center;
    }

    .ceo-image-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
}


/* Mission Vision Values */
.mvv.dark {
    background: #252525;
    padding: 80px 20px;
}

/* CARD */
.mvv-card {
    background: #575757;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #2c2c2c;
    transition: background 0.25s ease;
}



/* HEADER */
.mvv-header {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mvv-header h3 {
    font-size: 22px;
    margin: 0;
    color: #fff;
    font-weight: 600;
}

/* "+" ICON */
.arrow {
    font-size: 22px;
    font-weight: 600;
    color: #ef4444;
    transition: 0.25s ease;
}

/* TURN + INTO X */
.mvv-card.active .arrow {
    transform: rotate(45 deg);
}

/* CONTENT */
.mvv-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.35s ease, padding 0.3s ease;
    border-left: 4px solid transparent;
}

.mvv-card.active .mvv-content {
    max-height: 300px;
    padding: 20px 30px 30px;
    border-left: 4px solid #ef4444;
}

.mvv-content p {
    color: #d6d6d6;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}


/* Contact Section */

.contact {
    position: relative;
    background: linear-gradient(135deg, #fff, #aaaaaa40);
    overflow: hidden;
     padding: 130px 20px;
}


/* Contact form */
.message-box {
    width: 100%;
    height: 180px; /* Increase message box height */
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 16px;
    outline: none;
    resize: none; /* Disable resizing */
    transition: 0.3s;
}

.message-box:focus {
    border-color: #ef4444;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    max-width: 750px;
    margin: 0 auto;
    margin-bottom: 25px;
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1f2937;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ef4444;
}

.contact-btn {
    width: 100%;
    padding: 15px;
    background: #ef4444;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #dc2626;
}

/* Contact section icon and maps */

.section-title-dark {
    font-size: 44px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    
}

.section-subtitle-dark {
    max-width: 650px;
    margin: 0 auto 60px;
    color: #6b7280;
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
}

/* Contact Info Grid */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 45px;
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    gap: 22px;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* Icon Styling */
.contact-icon svg {
    width: 38px;
    height: 38px;
    stroke: #ef4444;
}

/* Text Styling */
.contact-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

/* Map Styling */
.map {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}


/* Floating animated blobs */
.contact::before,
.contact::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: #ee00008e;
    opacity: 0.12;
    filter: blur(120px);
    border-radius: 50%;
    animation: floatBlob 18s infinite alternate ease-in-out;
}

.contact::before {
    top: -150px;
    left: -150px;
}

.contact::after {
    bottom: -180px;
    right: -150px;
    animation-delay: 4s;
}

/* Blob movement animation */
@keyframes floatBlob {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-80px) scale(1.2);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}
/* Footer */
.footer {
    background: #252525;
    color: #d1d5db;
    padding: 80px 20px 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 50px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p,
.footer-col ul li,
.footer-col a {
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.7;
}

.footer-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ef4444;
}

/* Logo */
.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: #3c3c3c;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #ef4444;
    color: #fff;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #303131;
    padding-top: 20px;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes bounceSubtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Animated text for hero or card */
.animated-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

/* Staggered effect for multiple elements */
.animated-text.delay-1 {
    animation-delay: 0.2s;
}

.animated-text.delay-2 {
    animation-delay: 0.4s;
}

.animated-text.delay-3 {
    animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 30px;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        color: #1f2937;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title,
    .section-title-dark,
    .jobs-text h2,
    .about-text h2 {
        font-size: 32px;
    }

    .scroll-indicator {
        left: 20px;
        bottom: 30px;
    }

    .scroll-line {
        height: 40px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: #ef4444;
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #dc2626;
}

/* Section Scroll Animation */
.section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

/* When visible */
.section.show {
    opacity: 1;
    transform: translateY(0);
}

/* Optional: highlight active section */
.section.active {
    outline: 3px solid #ef4444;
    outline-offset: 10px;
    transition: 0.4s ease;
}


