/* =========================================
   1. RESET & VARIABLES
   ========================================= */
:root {
    /* Colors - Boardroom Digital Theme */
    --col-primary: #0f2c59;
    /* Deep Corporate Blue */
    --col-primary-dark: #0a1f40;
    --col-secondary: #e2e8f0;
    /* Soft Grey */
    --col-accent: #007bff;
    /* Trust Blue */
    --col-highlight: #00d4ff;
    /* Electric Blue (Digital) */

    --col-bg-body: #ffffff;
    --col-bg-light: #f8fafc;
    --col-bg-dark: #1e293b;

    --col-text-main: #334155;
    --col-text-light: #64748b;
    --col-text-white: #ffffff;

    /* Typography */
    --font-main: 'Poppins', system-ui, -apple-system, sans-serif;
    --font-heading: 'Orbitron', sans-serif;
    /* Tech feel for headers */

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 44, 89, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(15, 44, 89, 0.15);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);

    /* Transitions */
    --trans-fast: 0.2s ease;
    --trans-med: 0.4s ease-out;
    --trans-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--col-text-main);
    background-color: var(--col-bg-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--col-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: var(--trans-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. HEADER & NAVIGATION (STRICT)
   ========================================= */
.master-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--col-secondary);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--trans-med);
}

.master-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--col-primary);
}

.nav-logo-img, .footer-logo img {
    height: 40px;
    width: auto;
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: var(--col-text-main);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-item:hover,
.nav-item.active {
    color: var(--col-primary);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--col-highlight);
    transition: width 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-primary-outline {
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--col-primary);
    color: var(--col-primary);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-primary-outline:hover {
    background: var(--col-primary);
    color: white;
}

.btn-primary-solid {
    padding: 0.6rem 1.2rem;
    background: var(--col-primary);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid var(--col-primary);
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.btn-primary-solid:hover {
    background: var(--col-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--col-primary);
    transition: var(--trans-fast);
}

.mobile-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 2px solid var(--col-primary);
    display: none;
    transform: translateY(-20px);
    opacity: 0;
    transition: var(--trans-med);
}

.mobile-dropdown.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

/* =========================================
   3. HERO SECTION (3D Effects)
   ========================================= */
.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--col-secondary) 1px, transparent 1px),
        linear-gradient(90deg, var(--col-secondary) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
    perspective: 1000px;
    transform: rotateX(60deg) scale(2);
    transform-origin: top center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 2rem;
}

.hero-text-wrapper {
    flex: 1;
    max-width: 600px;
}

.pill-badge {
    background: rgba(0, 123, 255, 0.1);
    color: var(--col-primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.hero-section h1 {
    font-size: 3.5rem;
    color: var(--col-primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.highlight-text {
    background: linear-gradient(120deg, var(--col-primary) 0%, var(--col-highlight) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--col-text-light);
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-hero-solid {
    padding: 1rem 2rem;
    background: var(--col-primary);
    color: white;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--col-primary);
}

.btn-hero-solid:hover {
    background: transparent;
    color: var(--col-primary);
}

.btn-hero-outline {
    padding: 1rem 2rem;
    border: 2px solid var(--col-text-light);
    color: var(--col-text-main);
    font-weight: 700;
    border-radius: 6px;
}

.btn-hero-outline:hover {
    border-color: var(--col-primary);
    color: var(--col-primary);
}

.trust-metrics {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--col-secondary);
    padding-top: 30px;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--col-primary);
}

.metric .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--col-text-light);
    letter-spacing: 0.5px;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

/* Glassmorphism Cards */
.analytics-card-stack {
    position: relative;
    width: 400px;
    height: 400px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: absolute;
    padding: 20px;
}

.card-top {
    width: 320px;
    height: 240px;
    top: 0;
    right: 0;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.card-bottom {
    width: 280px;
    bottom: 20px;
    left: 20px;
    z-index: 11;
    animation: float 6s ease-in-out infinite reverse;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--col-text-main);
    font-weight: 600;
}

.graph-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
}

.bar {
    width: 15%;
    background: linear-gradient(to top, var(--col-primary), var(--col-highlight));
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
}

.bar-1 {
    height: 40%;
    animation: grow 1s ease forwards 0.2s;
}

.bar-2 {
    height: 60%;
    animation: grow 1s ease forwards 0.4s;
}

.bar-3 {
    height: 45%;
    animation: grow 1s ease forwards 0.6s;
}

.bar-4 {
    height: 80%;
    animation: grow 1s ease forwards 0.8s;
}

.bar-5 {
    height: 95%;
    animation: grow 1s ease forwards 1s;
}

.conversion-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: #e0f2fe;
    color: var(--col-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conv-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.conv-text strong {
    font-size: 0.9rem;
}

.conv-text small {
    font-size: 0.7rem;
    color: #888;
}

.conv-value {
    color: #10b981;
    font-weight: 700;
}

/* =========================================
   4. PARTNERS & SECTIONS
   ========================================= */
.partners-strip {
    background: white;
    border-bottom: 1px solid var(--col-secondary);
    padding: 30px 0;
}

.strip-label {
    text-align: center;
    font-size: 0.8rem;
    color: var(--col-text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.logo-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-logo {
    color: #94a3b8;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--trans-fast);
}

.partner-logo:hover {
    color: var(--col-primary);
    transform: scale(1.05);
}

.section-padding {
    padding: 100px 0;
}

.center-align {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.sub-heading {
    color: var(--col-highlight);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

/* Services */
.services-section {
    background: var(--col-bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    border-bottom: 4px solid transparent;
    transition: var(--trans-med);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--col-primary);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--col-primary);
    margin-bottom: 25px;
}

.service-list {
    margin: 20px 0;
}

.service-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--col-text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li i {
    color: #10b981;
}

.link-arrow {
    color: var(--col-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.link-arrow i {
    transition: transform 0.3s;
}

.link-arrow:hover i {
    transform: translateX(5px);
}

/* =========================================
   5. CALCULATOR (Dark Theme)
   ========================================= */
.calculator-section {
    background: var(--col-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.calc-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.calc-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.dark-mode-text {
    color: var(--col-highlight);
}

.light-text {
    color: white;
}

.calc-interface {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.form-group-calc {
    margin-bottom: 20px;
}

.form-group-calc label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group-calc input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--col-secondary);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
}

.btn-calc {
    width: 100%;
    padding: 15px;
    background: var(--col-primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: var(--trans-fast);
}

.btn-calc:hover {
    background: var(--col-primary-dark);
}

.calc-result {
    background: var(--col-bg-light);
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid #10b981;
}

.res-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.res-row.highlight {
    color: var(--col-primary);
    font-size: 1.1rem;
}

.disclaimer-text {
    font-size: 0.7rem;
    color: #999;
    margin-top: 10px;
}

/* =========================================
   6. PROCESS TIMELINE & OTHERS (FIXED)
   ========================================= */

/* Add background color to the section so white cards pop out */
#process {
    background-color: var(--col-bg-light);
    /* Off-white background */
    position: relative;
    z-index: 1;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Central Line */
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #cbd5e1;
    /* Slightly darker for visibility */
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    z-index: 0;
    /* Behind everything */
}

.timeline-item {
    padding: 20px 50px;
    /* Increased padding */
    position: relative;
    width: 50%;
    box-sizing: border-box;
    z-index: 2;
    /* Content on top */
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

/* The Content Card */
.timeline-content {
    padding: 35px;
    background: white;
    border-radius: 12px;
    /* Stronger shadow for visibility */
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* The Big Number (01, 02...) */
.step-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(15, 44, 89, 0.1);
    /* Darker opacity for visibility */
    position: absolute;
    top: 15px;
    right: 25px;
    line-height: 1;
}

/* Timeline Dots */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--col-primary);
    border: 4px solid #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    /* Strictly on top of the line */
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
    /* Glow ring */
}

/* Dot positioning */
.left::after {
    right: -16px;
}

.right::after {
    left: -16px;
}

/* Timeline Content Typography */
.timeline-content h3 {
    margin-bottom: 15px;
    color: var(--col-primary);
    position: relative;
    z-index: 2;
}

.timeline-content p {
    color: var(--col-text-light);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Testimonials & Others */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fdfdfd;
    padding: 40px;
    border: 1px solid var(--col-secondary);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.quote-icon {
    color: var(--col-highlight);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--col-text-main);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    background: var(--col-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* =========================================
   FIXED CUBE STYLES (To prevent timeline conflict)
   ========================================= */

/* Industry Cube (CSS 3D) */
.industries-section {
    padding: 100px 0;
    background: white;
}

.ind-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ind-text {
    flex: 1;
}

.check-list {
    margin-top: 30px;
    font-size: 1.1rem;
}

.check-list li {
    margin-bottom: 15px;
    color: var(--col-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cube-container {
    width: 200px;
    height: 200px;
    perspective: 1000px;
    margin: 0 auto;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: spin 10s infinite linear;
}

.face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(15, 44, 89, 0.95);
    border: 2px solid var(--col-highlight);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    opacity: 0.95;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* --- THE FIX IS HERE --- */
/* We added .face before these classes so they don't affect the timeline */

.face.front {
    transform: rotateY(0deg) translateZ(100px);
}

.face.back {
    transform: rotateY(180deg) translateZ(100px);
}

.face.right {
    transform: rotateY(90deg) translateZ(100px);
}

.face.left {
    transform: rotateY(-90deg) translateZ(100px);
}

.face.top {
    transform: rotateX(90deg) translateZ(100px);
}

.face.bottom {
    transform: rotateX(-90deg) translateZ(100px);
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: var(--col-bg-light);
    text-align: center;
    border-top: 1px solid var(--col-secondary);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 30px;
}

/* MEDIA QUERIES FOR TIMELINE */
@media (max-width: 992px) {
    .timeline::after {
        left: 30px;
    }

    /* Move line to left */
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }

    /* Move dots to left line */
    .left::after,
    .right::after {
        left: 16px;
        right: auto;
    }
}

/* =========================================
   7. FOOTER (STRICT)
   ========================================= */
.master-footer {
    background: var(--col-primary);
    color: white;
    padding-top: 80px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 1.5;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 20px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.social-links a:hover {
    background: var(--col-highlight);
}

.footer-col {
    flex: 1;
    min-width: 150px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
    color: var(--col-highlight);
    padding-left: 5px;
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 20px;
}

.legal-links a:hover {
    color: white;
}

/* =========================================
   8. LEGAL PAGES SPECIFIC
   ========================================= */
.legal-page-header {
    background: var(--col-primary);
    padding: 180px 0 60px;
    text-align: center;
    color: white;
}

.legal-content-body {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content-body h2 {
    color: var(--col-primary);
    margin-top: 40px;
    font-size: 1.8rem;
}

.legal-content-body p,
.legal-content-body li {
    margin-bottom: 15px;
    color: #444;
}

/* =========================================
   9. CONTACT PAGE
   ========================================= */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 50px;
}

.info-card {
    background: var(--col-primary);
    color: white;
    padding: 40px;
    border-radius: 8px;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.c-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.c-item i {
    font-size: 1.5rem;
    color: var(--col-highlight);
}

/* =========================================
   10. ANIMATIONS & MEDIA QUERIES
   ========================================= */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes grow {
    from {
        height: 0;
    }
}

@keyframes spin {
    from {
        transform: rotateX(0deg) rotateY(0deg);
    }

    to {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text-wrapper {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .trust-metrics {
        justify-content: center;
    }

    .calc-wrapper {
        flex-direction: column;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }

    .left::after,
    .right::after {
        left: 10px;
    }

    .ind-wrapper {
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 768px) {

    .nav-list,
    .header-controls a {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .glass-card {
        width: 90%;
    }
}