/* ==========================================================================
   🔥 3D LOADER STYLES
   ========================================================================== */
#loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #0f2a3d, #08121a);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
}

#three-canvas {
    width: 400px;
    height: 400px;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 198, 255, 0.2));
}

/* Airflow (Full Screen) */
.airflow {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.airflow .line {
    position: absolute;
    width: 2px;
    height: 100px;
    /* Vertical wind lines */
    background: linear-gradient(to bottom, transparent, #00c6ff, transparent);
    border-radius: 10px;
    opacity: 0;
    filter: blur(1px);
}

/* Text */
#loader .text {
    position: relative;
    z-index: 3;
    margin-top: 20px;
    color: #bde6ff;
    font-size: 16px;
    opacity: 0;
    font-family: 'Outfit', sans-serif;
    /* matching theme */
    letter-spacing: 2px;
}

:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --primary-blue: #0077b6;
    --secondary-blue: #023e8a;
    --accent-blue: #00b4d8;
    --font-main: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Performance optimization: Disable pointer events during high-speed scroll */
.is-scrolling {
    pointer-events: none !important;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(5, 5, 5, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* Essential for absolute centering of links */
    width: 100%;
}

.logo {
    flex: 1; /* Pushes other items if needed, but absolute centering ignores it */
    display: flex;
    justify-content: flex-start;
}

.logo img {
    height: 50px;
    object-fit: contain;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    white-space: nowrap;
}

/* Tablet / Small Desktop Responsiveness */
@media (min-width: 776px) and (max-width: 1100px) {
    .nav-links {
        /* Keep it centered but allow shrinking */
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        gap: 15px;
    }
    .nav-links a {
        font-size: 0.9rem;
    }
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger {
    display: none;
}

.btn {
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-blue));
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.5);
    transform: translateY(-2px);
    color: var(--text-color);
}

.lang-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    opacity: 0.5;
    padding: 6px 15px;
    border-radius: 20px;
    cursor: default;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: var(--accent-blue);
    color: #fff;
    opacity: 1;
}

/* RTL Support */
[dir="rtl"] .nav-actions {
    justify-content: flex-start;
}

[dir="rtl"] body {
    text-align: right;
}

/* Sections */
section {
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 40; /* Below particles (50) */
}

#services, #comparison {
    z-index: 200; /* Super high to beat particles (50) */
    position: relative;
}

.about-bg,
.motto-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section-heading {
    font-family: var(--font-main);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--text-color), var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    text-align: center;
    width: 100%;
}

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

/* Apply transparency only when background-clip is supported */
@supports (-webkit-background-clip: text) or (background-clip: text) {
    .section-heading {
        -webkit-text-fill-color: transparent;
    }
}

.cinematic-text .word,
.cinematic-text .char {
    display: inline-block;
    -webkit-text-fill-color: inherit;
    line-height: inherit;
}

.cinematic-text .word {
    white-space: nowrap;
}

.section-text {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    line-height: 1.6;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Center content vertically */
    justify-content: center;
    /* Center content horizontally */
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    text-align: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

.hero-bottom-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(0, 119, 182, 0.15) 0%, rgba(5, 5, 5, 1) 70%);
    background: radial-gradient(circle at center, rgba(0, 119, 182, 0.15) 0%, rgba(5, 5, 5, 1) 70%);
    z-index: -1;
    will-change: transform;
}

.hero-name {
    font-family: var(--font-main);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-color);
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}

.hero-motto {
    font-family: var(--font-main);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
}

.hero-corner-logo {
    position: absolute;
    bottom: 5%;
    right: 5%;
    z-index: 5;
    /* Reset any inherited translations if needed */
    transform: none;
}

.hero-corner-logo img {
    height: 60px;
    opacity: 0;
    /* Controlled by GSAP */
    transform: translateY(20px);
    /* Reset by GSAP */
    filter: drop-shadow(0 0 15px rgba(0, 180, 216, 0.4));
}

/* Service Cards - Pinned Stacking Layout */
.services-cards {
    position: relative;
    width: 100%;
    height: 60vh;
    /* Reduced height for better visibility */
    max-width: 1000px;
    /* Reduced width */
    margin: 0 auto;
    perspective: 1500px;
    z-index: 201; 
    isolation: isolate;
}

.service-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    will-change: transform;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-bg {
    transform: scale(1.05);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.4));
    z-index: 2;
}

.service-card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.service-title {
    font-family: var(--font-main);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Clients */
.clients {
    min-height: auto;
    padding: 80px 0;
    background: var(--client-gradient);
    overflow: hidden;
}

.clients-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    width: calc(250px * 8);
    /* 8 images total */
    animation: scroll 20s linear infinite;
    align-items: center;
}

.clients-slider:hover .clients-track {
    animation-play-state: paused;
}

.clients-track img {
    width: 250px;
    height: 100px;
    object-fit: contain;
    padding: 0 40px;
    opacity: 0.6;
    transition: all 0.3s ease;
    /* Optional: Make non-SVGs grayscale until hover for a uniform look */
    filter: grayscale(100%);
}

/* Specifically target SVG files to make them pure white */
.clients-track img[src$=".svg"] {
    filter: brightness(0) invert(1);
}

.clients-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
    /* Restore color for non-SVGs on hover */
}

/* Ensure SVGs stay pure white on hover */
.clients-track img[src$=".svg"]:hover {
    filter: brightness(0) invert(1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 4));
    }
}

/* Contact Us Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(to bottom, #05131e, #0a3a5e);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(0, 198, 255, 0.05);
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-bottom: 5px;
}

.info-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.5;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: var(--accent-blue);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #00c6ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 198, 255, 0.4);
}

.submit-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(0, 198, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 198, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    background: #25d366;
    border-color: #25d366;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background: rgba(5, 19, 30, 0.9);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 198, 255, 0.2);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

.submit-btn:hover i {
    transform: translateX(5px) rotate(-20deg);
}

/* Footer */
.footer {
    background: var(--footer-bg);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.05));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--accent-blue);
    font-weight: 500;
}

.footer-contact h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Comparison Section */
.comparison {
    padding: 100px 0;
    background: #05131e;
}

.comparison-container {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
    z-index: 201; 
    isolation: isolate;
}

.before-after-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    min-height: 300px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 198, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #1a2a3a;
    z-index: 100; /* Stays above the airflow particles */
}

.before-after-slider .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.foreground-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    border-right: 2px solid var(--accent-blue);
}

.foreground-container .img {
    width: 100%;
    /* Important: Keep this 100% of the slider, not the container */
    max-width: none;
}

.slider {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    margin: 0;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: ew-resize;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 40px;
    background: var(--accent-blue);
    border: 4px solid #fff;
    border-radius: 50%;
    cursor: ew-resize;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.5);
}

.slider-button {
    pointer-events: none;
    position: absolute;
    width: 50px;
    /* Slightly larger */
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 198, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    box-shadow: 0 0 25px rgba(0, 198, 255, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.before-after-slider:hover .slider-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.slider-button:before,
.slider-button:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.slider-button:before {
    border-right: 8px solid white;
    left: 8px;
}

.slider-button:after {
    border-left: 8px solid white;
    right: 8px;
}


.footer-contact p {
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(to bottom, #0a3a5e, #05131e);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: rgba(0, 198, 255, 0.05);
    border-color: rgba(0, 198, 255, 0.3);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-blue);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 30px 20px;
}

.faq-answer p {
    color: var(--text-color);
    opacity: 0.7;
    line-height: 1.6;
}

/* SplitText Classes for GSAP */
.cinematic-text {
    opacity: 1;
    visibility: visible;
    will-change: transform, opacity;
    perspective: 1000px;
}

.line {
    overflow: hidden;
}

/* ── Premium Cursor ── */
#cursor-dot {
    position: fixed;
    top: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    will-change: transform;
    mix-blend-mode: difference;
    opacity: 0;
}

#cursor-ring {
    position: fixed;
    top: -18px;
    left: -18px;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    will-change: transform;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
    transition: border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

/* Media Queries */
@media (max-width: 775px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(5, 5, 5, 0.98);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        padding: 40px 0;
        justify-content: flex-start;
        align-items: center;
        gap: 40px;
        z-index: 999;
    }

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

    .nav-links {
        position: static;
        transform: none;
        flex-direction: column;
        gap: 20px;
    }

    .nav-actions {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .hero-name {
        font-size: 3rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    /* Hamburger Styles */
    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1000;
    }

    .hamburger .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease;
        background-color: var(--text-color);
    }

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

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

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

    .services-cards {
        height: 50vh;
        max-width: 90%;
        z-index: 101;
    }
}