:root {
    --primary: #E0115F;
    /* Pink/Magenta */
    --accent: #FF0088;
    /* Bright Pink */
    --glow: rgba(0, 0, 0, 0.15);
    /* Magenta Glow */
    --bg: #FFFFFF;
    --surface: #F5F5F5;
    --text-main: #0A0A0A;
    --text-muted: #333333;
    --grid-line: rgba(0, 0, 0, 0.08);
    --grid-line-strong: rgba(0, 0, 0, 0.15);
    --font-main: 'DM Sans', sans-serif;
    --font-display: 'DM Sans', sans-serif;
    --container-padding: 4vw;
}

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


body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    scroll-behavior: smooth;
}

/* Custom Cursor */
* {
    cursor: none;
}

/* Scroll Progress Indicator */
.scroll-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.scroll-dot {
    width: 4px;
    height: 3px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    filter: blur(1px);
}

.scroll-dot::before {
    content: attr(title);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--bg);
    color: var(--text-main);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid var(--grid-line-strong);
}

.scroll-dot:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.scroll-dot.active {
    background: var(--text-main);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 0, 0, 0.4), 0 0 90px rgba(0, 0, 0, 0.3);
    width: 15px;
    filter: blur(0);
    height: 4px;
}

.scroll-dot:hover {
    background: rgba(0, 0, 0, 0.6);
    filter: blur(0.5px);
}

.custom-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid #000000;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 0, 0, 0.2);
}

.custom-cursor.hover {
    width: 25px;
    height: 25px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.6), 0 0 100px rgba(0, 0, 0, 0.4), 0 0 150px rgba(0, 0, 0, 0.2);
}

/* White cursor in hero section */
.custom-cursor.in-hero {
    border-color: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.2);
}

.custom-cursor.in-hero.hover {
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.6), 0 0 100px rgba(255, 255, 255, 0.4), 0 0 150px rgba(255, 255, 255, 0.2);
}

.custom-cursor-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    background: #000000;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: background 0.3s ease;
}

/* White cursor dot in hero section */
.custom-cursor-dot.in-hero {
    background: #FFFFFF;
}


@keyframes twinkle {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 0.3;
    }
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: var(--container-padding);
}

.counter {
    font-family: var(--font-display);
    font-size: 15vw;
    font-weight: 400;
    line-height: 0.8;
    color: var(--text-main);
    letter-spacing: -0.05em;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.15), 0 0 40px rgba(0, 0, 0, 0.3);
}

.system-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background-size: 24px 24px;
    background-image: radial-gradient(circle, var(--grid-line-strong) 1px, transparent 1px);
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.6;
    pointer-events: none;
}

h1,
h2,
h3,
h4,
.display-text {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.meta-label {
    font-family: var(--font-main);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 500;
}


.star-motif {
    width: 24px;
    height: 24px;
    display: inline-block;
    transition: transform 0.5s ease, color 0.5s ease;
}

.star-motif path {
    fill: currentColor;
}

main {
    position: relative;
    z-index: 100;
}

section {
    position: relative;
    padding: 10vh 0;
    min-height: auto;
    border-bottom: 1px solid var(--grid-line);
}

.new-navbar {
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    border-radius: 1rem;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    position: fixed;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.new-navbar.scrolled {
    background: #000000;
    border-color: rgba(255, 255, 255, 0.2);
}

.logo-img {
    height: 40px;
}

.navbar-nav {
    gap: 1rem;
    display: flex;
    justify-content: center;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: #FFFFFF;
    transition: color 0.3s ease;
    padding-bottom: 0.5rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-link:hover,
.nav-link.active {
    color: #FFFFFF;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.dropdown-menu {
    background-color: var(--surface);
    border: 1px solid var(--grid-line-strong);
}

.dropdown-item {
    color: var(--text-muted);
}

.dropdown-item:hover {
    background-color: var(--text-main);
    color: var(--bg);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000000;
    z-index: 10;
}

.hero .hero-main-title,
.hero .hero-description,
.hero .meta-label {
    color: #FFFFFF;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-main-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-main);
    margin: 1rem 0 0.5rem;
    line-height: 1;
    letter-spacing: 0.05em;
}

.hero-description {
    font-family: var(--font-main);
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2rem;
        letter-spacing: 0.02em;
        font-weight: 900;
    }

    .hero-description {
        font-size: 0.7rem;
        max-width: 100%;
        line-height: 1.4;
    }

    .hero {
        padding-top: 8rem !important;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .hero .meta-label {
        font-size: 0.65rem;
    }

    .hero .star-motif {
        width: 18px;
        height: 18px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 0.4rem;
        margin-top: 1rem;
    }

    .hero-buttons .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        flex: 1;
        text-align: center;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 1.6rem;
        font-weight: 900;
    }

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

    .hero-buttons .btn {
        padding: 0.35rem 0.6rem;
        font-size: 0.65rem;
    }
}

.about-us-question-container {
    position: relative;
}

.what-is {
    display: block;
    font-size: 2rem;
    color: var(--text-muted);
}

.switch-labs-question {
    font-size: 4.5rem;
    line-height: 1;
    margin-top: 0.5rem;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(224, 17, 95, 0.5), 0 0 60px rgba(224, 17, 95, 0.3), 0 0 90px rgba(224, 17, 95, 0.2);
}

.big-question-mark {
    font-family: var(--font-display);
    font-size: 15rem;
    position: absolute;
    right: 0;
    bottom: -5rem;
    color: var(--primary);
    opacity: 0.5;
    z-index: -1;
    animation: question-mark-animation 10s infinite alternate;
    transition: all 0.4s ease;
    cursor: pointer;
    text-shadow: 0 0 40px rgba(224, 17, 95, 0.6), 0 0 80px rgba(224, 17, 95, 0.4), 0 0 120px rgba(224, 17, 95, 0.2);
}

.big-question-mark:hover {
    opacity: 0.5;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.15), 0 0 60px rgba(0, 0, 0, 0.3);
}

@keyframes question-mark-animation {
    0% {
        transform: rotate(-5deg) scale(1) translateY(0);
        text-shadow: 0 0 80px rgba(0, 0, 0, 0.3), 0 0 120px rgba(0, 0, 0, 0.15);
    }

    25% {
        transform: rotate(3deg) scale(1.05) translateY(-20px);
        text-shadow: 0 0 100px rgba(0, 0, 0, 0.3), 0 0 150px rgba(0, 0, 0, 0.15);
    }

    50% {
        transform: rotate(-3deg) scale(0.98) translateY(10px);
        text-shadow: 0 0 70px rgba(0, 0, 0, 0.3), 0 0 100px rgba(0, 0, 0, 0.15);
    }

    75% {
        transform: rotate(5deg) scale(1.03) translateY(-10px);
        text-shadow: 0 0 120px rgba(0, 0, 0, 0.3), 0 0 180px rgba(0, 0, 0, 0.15);
    }

    100% {
        transform: rotate(5deg) scale(1.1) translateY(0);
        text-shadow: 0 0 150px rgba(0, 0, 0, 0.3), 0 0 200px rgba(0, 0, 0, 0.15);
    }
}

.core-problems-section {
    background-color: transparent;
    color: var(--text-main);
    padding: 8rem 0;
    overflow: hidden;
    position: relative;
}

.core-problems-intro {
    text-align: left;
    max-width: 800px;
    margin: 0 0 4rem 0;
}

.core-problems-intro h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.core-problems-intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.problem-card {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 1.5rem 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: all 0.3s ease;
    overflow: visible;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.problem-card:last-child {
    border-bottom: none;
}

.problem-card::before {
    display: none;
}

.problem-card:hover {
    border-bottom-color: var(--text-main);
}

.problem-card:hover .icon-number {
    color: var(--text-main);
}

.problem-card-icon {
    position: relative;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.problem-card:hover .problem-card-icon {
    border-color: transparent;
    box-shadow: none;
}

.icon-number {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.problem-card-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.problem-card-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

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

.monumental-vertical {
    position: absolute;
    right: var(--container-padding);
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-family: var(--font-display);
    font-size: 10vw;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.4;
    line-height: 1;
    letter-spacing: 0.1em;
    pointer-events: none;
    z-index: 2;
    animation: verticalFloat 8s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(224, 17, 95, 0.5), 0 0 60px rgba(224, 17, 95, 0.3), 0 0 90px rgba(224, 17, 95, 0.2);
}

@keyframes verticalFloat {

    0%,
    100% {
        transform: translateY(-50%) translateY(0);
    }

    50% {
        transform: translateY(-50%) translateY(-30px);
    }
}

@media (max-width: 768px) {
    .monumental-vertical {
        display: none;
    }
}

.btn {
    position: relative;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-main);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    color: #000000;
    background: transparent;
    border: 1px solid var(--text-main);
    border-radius: 50px;
    transition: color 0.4s, box-shadow 0.4s, background 0.4s;
    overflow: hidden;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    background: var(--text-main);
    animation: move-dot 4s linear infinite;
}

@keyframes move-dot {
    0% {
        top: -1px;
        left: -1px;
    }

    25% {
        top: -1px;
        left: calc(100% - 1px);
    }

    50% {
        top: calc(100% - 1px);
        left: calc(100% - 1px);
    }

    75% {
        top: calc(100% - 1px);
        left: -1px;
    }

    100% {
        top: -1px;
        left: -1px;
    }
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn:hover {
    color: #ffffff;
    background: var(--text-main);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-filled {
    background: var(--text-main);
    color: #ffffff;
}

.btn-filled:hover {
    background: #000000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hero buttons with white border and text */
.hero .btn {
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.hero .btn::before {
    background: #FFFFFF;
}

.hero .btn:hover {
    color: #000000;
    background: #FFFFFF;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.hero .btn-filled {
    background: #FFFFFF;
    color: #000000;
}

.hero .btn-filled:hover {
    background: #FFFFFF;
    color: #000000;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

.section-heading-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    flex-direction: column;
    align-items: flex-start;
}

.section-heading-container.text-center {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-heading {
    position: relative;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 14px;
    color: var(--text-main);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.section-subheading {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 1rem;
}

.faq-header-cta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    letter-spacing: 0.05em;
}

.faq-header-cta a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-header-cta a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-info {
    padding: 0;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0;
    padding: 2rem 0;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.4s ease;
    position: relative;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--text-main), transparent);
    transition: width 0.6s ease;
    z-index: 1;
}

.contact-item:hover::before {
    width: 100%;
}

.contact-item:hover {
    transform: translateX(10px);
    border-bottom-color: var(--text-main);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--grid-line-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-icon svg {
    color: var(--text-main);
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
    border-color: var(--text-main);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-item:hover .contact-icon svg {
    color: var(--text-main);
    transform: scale(1.1);
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.contact-text a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--text-main);
}

.contact-form {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--grid-line-strong);
    border-radius: 0;
    padding: 1rem 0;
    color: var(--text-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: transparent;
    border-bottom-color: var(--text-main);
    box-shadow: 0 1px 0 var(--text-main);
    color: var(--text-main);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

textarea.form-control {
    resize: none;
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Team & KOLs Section */
.section-subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kols-section {
    margin-bottom: 4rem;
}

.kol-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem 0;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.kol-card:last-child {
    border-bottom: none;
}

.kol-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--text-main), transparent);
    transition: width 0.6s ease;
    z-index: 1;
}

.kol-card:hover::before {
    width: 100%;
}

.kol-card:hover {
    transform: translateX(10px);
    border-bottom-color: var(--text-main);
}

.kol-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
    border: 3px solid var(--text-main);
    transition: all 0.4s ease;
}

.kol-card:hover .kol-avatar {
    border-color: var(--text-main);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.kol-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.kol-title {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 1rem;
}

.kol-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.kol-twitter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(224, 17, 95, 0.4);
}

.kol-twitter:hover {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(224, 17, 95, 0.6), 0 0 40px rgba(224, 17, 95, 0.3);
}

.kol-twitter svg {
    transition: transform 0.3s ease;
}

.kol-twitter:hover svg {
    transform: scale(1.2);
}

.team-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--grid-line-strong), transparent);
    margin: 3rem 0;
}

.team-section {
    margin-top: 3rem;
}

.team-card {
    display: block;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    padding: 1rem 0;
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--text-main), transparent);
    transition: width 0.6s ease;
    z-index: 1;
}

.team-card:hover::before {
    width: 100%;
}

.team-card:hover {
    transform: translateX(10px);
    border-bottom-color: var(--text-main);
}

.team-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 3px solid var(--text-main);
    transition: all 0.4s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
    border-color: var(--text-main);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.team-info {
    padding: 0;
    text-align: left;
    background: transparent;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transform: scaleX(0);
    transform-origin: left;
    animation: underline-animation 10s linear infinite alternate;
}

@keyframes underline-animation {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }

    45% {
        transform: scaleX(1);
        transform-origin: left;
    }

    55% {
        transform: scaleX(1);
        transform-origin: right;
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}

.stat-item {
    border-top: 1px solid var(--grid-line-strong);
    padding-top: 1.5rem;
    text-align: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 400;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.15), 0 0 40px rgba(0, 0, 0, 0.3);
}

/* Section Glow Circles */
.reveal {
    position: relative;
}

.reveal::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--text-main);
    opacity: 0.15;
    transition: all 0.4s ease;
    z-index: 0;
}

.reveal::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--text-main);
    opacity: 0.15;
    transition: all 0.4s ease;
    z-index: 0;
}

.reveal:hover::before,
.reveal:hover::after {
    opacity: 0.7;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5), 0 0 100px rgba(0, 0, 0, 0.3), 0 0 150px rgba(0, 0, 0, 0.2);
    transform: scale(1.5);
}

/* Exclude circles from hero section */
.hero-section::before,
.hero-section::after {
    display: none;
}

.panel,
.card {
    background: rgba(16, 16, 26, 0.6);
    border: 1px solid var(--grid-line-strong);
    border-radius: 8px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.panel::before,
.card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--text-main), transparent);
    transition: width 0.6s ease;
    z-index: 1;
}

.panel:hover::before,
.card:hover::before {
    width: 100%;
}

.panel:hover,
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 8px 25px rgba(0, 0, 0, 0.2);
}

.panel-title {
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

/* Tech Section */
.tech-intro {
    text-align: left;
    max-width: 800px;
    margin: 0 0 3rem;
}

.tech-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.tech-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: visible;
}

.tech-card:last-child {
    border-bottom: none;
}

.tech-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--text-main), transparent);
    transition: width 0.6s ease;
    z-index: 1;
}

.tech-card:hover::before {
    width: 100%;
}

.tech-card:hover {
    transform: translateX(10px);
    border-bottom-color: var(--text-main);
}

.tech-card-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid var(--grid-line-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.tech-card-icon svg {
    color: var(--text-main);
    transition: all 0.4s ease;
}

.tech-card:hover .tech-card-icon {
    border-color: var(--text-main);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.tech-card:hover .tech-card-icon svg {
    color: var(--text-main);
    transform: scale(1.1);
}

.tech-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.tech-card:hover .tech-card-title {
    color: var(--text-main);
}

.tech-card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.tech-card:hover .tech-card-desc {
    color: var(--text-main);
}

.services-accordion {
    display: flex;
    width: 100%;
    height: 60vh;
    gap: 1rem;
}

.service-item {
    position: relative;
    flex: 1;
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
    background-image: var(--bg-image);
    cursor: pointer;
    overflow: hidden;
    transition: flex 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.service-item.active {
    flex: 5;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 1;
}

.service-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    color: #fff;
    z-index: 2;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.service-item.active .service-content {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.service-title {
    font-family: var(--font-display);
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.service-desc {
    font-size: 1rem;
    max-width: 80%;
}

.services-accordion {
    display: flex;
    width: 100%;
    height: 60vh;
    gap: 1rem;
}

.service-item {
    position: relative;
    flex: 1;
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
    background-image: var(--bg-image);
    cursor: pointer;
    overflow: hidden;
    transition: flex 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.service-item.active {
    flex: 5;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 1;
}

.service-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    color: #fff;
    z-index: 2;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.service-item.active .service-content {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.service-title {
    font-family: var(--font-display);
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.service-desc {
    font-size: 1rem;
    max-width: 80%;
}

.panel-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-card {
    position: relative;
    height: 100%;
    padding: 2rem;
    border-left: 1px solid var(--grid-line-strong);
    border-top: 1px solid var(--grid-line-strong);
    overflow: hidden;
    /* To contain the running light */
}

/* Remove left border from the first item in each row */
.row>.col-lg-4:first-child .service-card,
.row>.col-lg-6:first-child .service-card {
    border-left: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--text-main), transparent);
    animation: run-line 6s linear infinite;
}

@keyframes run-line {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.service-card-content {
    background: var(--bg);
    padding: 2rem;
    height: 100%;
    border-radius: 6px;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--grid-line-strong);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.service-card-header h4 {
    font-size: 1.25rem;
    margin-right: 1rem;
    color: var(--text-main);
}

.service-card-number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.service-card li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.roadmap-timeline {
    position: relative;
    display: flex;
    width: 100%;
    margin: 3rem 0;
}

.timeline-progress {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-main);
    transform: scaleX(0) translateY(-50%);
    transform-origin: left;
    z-index: 0;
}

.roadmap-timeline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 37.5%;
    /* Position up to the middle of the second item (LAUNCH) */
    height: 2px;
    background: var(--text-main);
    transform: translateY(-50%);
    z-index: 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--grid-line-strong);
    transform: translateY(-50%);
}

.roadmap-item {
    position: relative;
    flex: 1;
    padding: 2rem 1rem;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--bg);
    border: 2px solid var(--text-main);
    transition: all 0.3s ease;
    z-index: 1;
}

.roadmap-item:hover::before,
.roadmap-item.current::before {
    background-color: var(--text-main);
    box-shadow: 0 0 25px var(--glow);
}

.roadmap-item.current::before {
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 15px var(--glow);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 25px var(--glow);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 15px var(--glow);
    }
}

.roadmap-content {
    text-align: center;
    transition: transform 0.3s ease;
}

.roadmap-item:hover .roadmap-content {
    transform: translateY(-10px);
}

.roadmap-phase {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.roadmap-content h4 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.roadmap-timeline-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.roadmap-content ul {
    list-style: none;
    padding-left: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.roadmap-statement {
    color: var(--text-main);
}

/* Map-like TGE Section Styles */
.map-container {
    position: relative;
    min-height: 450px;
    margin: 3rem 0;
    overflow: visible;
}

.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

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

.map-route {
    fill: none;
    stroke: var(--text-main);
    stroke-width: 3;
    stroke-dasharray: 8, 4;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: dash 30s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

.map-station {
    fill: var(--bg);
    stroke: var(--text-main);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.map-station.current {
    fill: var(--text-main);
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.4));
    animation: pulse-station 2s infinite;
}

@keyframes pulse-station {

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

    50% {
        transform: scale(1.3);
    }
}

.map-stations {
    position: relative;
    height: 100%;
    min-height: 450px;
}

.map-node {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    z-index: 2;
}

.map-node.current {
    z-index: 3;
}

.node-label {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    text-align: left;
}

.node-label.active {
    color: var(--text-main);
    font-weight: 600;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.node-card {
    background: transparent;
    border: none;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 0.75rem 0;
    text-align: left;
    transition: all 0.3s ease;
}

.node-card:hover,
.node-card.active {
    border-bottom-color: var(--text-main);
}

.node-card.active {
    background: transparent;
}

.node-phase {
    display: inline;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 0.5rem;
}

.node-card h4 {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.2rem;
    display: inline;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.node-date {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    letter-spacing: 0.05em;
}

.node-tasks {
    list-style: none;
    padding: 0;
    margin: 0.3rem 0 0 0;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.node-tasks li {
    padding: 0.15rem 0;
    border-bottom: none;
    position: relative;
    padding-left: 0.8rem;
}

.node-tasks li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-main);
    opacity: 0.5;
}

.map-legend {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 0.3rem 0 1rem;
}

.legend-dot.passed {
    background: var(--text-main);
}

.legend-dot.current {
    background: var(--text-main);
    box-shadow: 0 0 10px var(--glow);
    animation: pulse-dot 2s infinite;
}

.legend-dot.upcoming {
    background: var(--grid-line-strong);
}

/* Map Responsive Styles */
@media (max-width: 992px) {
    .map-container {
        min-height: auto;
        padding: 1rem 0;
    }

    .map-stations {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        min-height: auto;
    }

    .map-node {
        position: static;
        transform: none;
        width: 100%;
        padding: 0.5rem 0;
    }

    .map-paths,
    .map-grid {
        display: none;
    }

    .node-label {
        text-align: left;
        font-size: 0.55rem;
        margin-bottom: 0.2rem;
    }

    .node-card {
        text-align: left;
        padding: 0.5rem 0;
    }

    .node-phase {
        font-size: 0.7rem;
    }

    .node-card h4 {
        font-size: 0.8rem;
    }

    .node-date {
        font-size: 0.6rem;
    }

    .node-tasks {
        font-size: 0.65rem;
    }

    .map-legend {
        font-size: 0.7rem;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .roadmap-timeline {
        flex-direction: column;
    }

    .roadmap-timeline::before {
        top: 0;
        left: 1rem;
        width: 1px;
        height: 100%;
        transform: none;
    }

    .roadmap-item {
        padding: 2rem 0 2rem 3rem;
        flex: none;
    }

    .roadmap-item::before {
        top: 2.5rem;
        left: 1rem;
    }

    .roadmap-content {
        text-align: left;
    }

    .timeline-progress {
        top: 0;
        left: 1rem;
        width: 2px;
        height: 100%;
        transform: scaleY(0) translateX(-50%);
        transform-origin: top;
    }

    .roadmap-timeline::after {
        top: 0;
        left: 1rem;
        width: 2px;
        height: 25%;
        /* Position up to the top of the second item (LAUNCH) */
        transform: translateX(-50%);
    }
}

.text-accent {
    color: var(--text-main);
}

#services .section-heading-container {
    justify-content: flex-start;
    text-align: left;
    max-width: 800px;
    margin-bottom: 1rem;
}

#services .section-heading {
    color: var(--text-main);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}


.services-intro {
    max-width: 800px;
    margin-bottom: 4rem;
}

#services h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

#services .text-center p {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.text-pink {
    color: var(--primary) !important;
    text-shadow: 0 0 20px rgba(224, 17, 95, 0.5), 0 0 40px rgba(224, 17, 95, 0.3), 0 0 60px rgba(224, 17, 95, 0.2);
}


.footer-cta {
    padding: 15vh 0;
}

.footer-cta h2 {
    font-size: clamp(3rem, 6vw, 6rem);
    color: var(--text-main);
}

/* Footer Styles */
.footer-section {
    position: relative;
    background-color: transparent;
    overflow: hidden;
    border-top: 1px solid var(--grid-line-strong);
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(0.5px 0.5px at 10% 20%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 50% 80%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 90% 5%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 30% 30%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 70% 60%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 5% 95%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 95% 85%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 45% 15%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 80% 40%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 20% 75%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 60% 5%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 15% 80%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 85% 20%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 35% 55%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 75% 90%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 5% 45%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 55% 70%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 25% 10%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 65% 50%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 90% 30%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 12% 58%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 88% 78%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 38% 8%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 78% 38%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 18% 88%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 58% 18%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 98% 48%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 28% 68%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 68% 98%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 48% 28%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 8% 72%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 82% 12%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 32% 42%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 72% 82%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 22% 2%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 62% 62%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 2% 92%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 92% 22%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 42% 52%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 4% 34%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 54% 84%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 24% 14%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 74% 44%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 14% 74%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 64% 24%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 94% 54%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 34% 94%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 44% 4%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 84% 64%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 16% 36%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 56% 76%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 26% 96%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 76% 16%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 96% 66%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 36% 46%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 66% 86%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 46% 6%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 6% 69%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 69% 39%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 39% 99%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 99% 9%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 9% 59%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 59% 29%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 29% 89%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 89% 19%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 19% 49%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 49% 79%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 79% 9%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 3% 23%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 53% 83%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 23% 3%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 83% 53%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 13% 43%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 43% 93%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 93% 13%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 33% 63%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 63% 33%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 7% 87%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 87% 7%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 27% 57%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 57% 27%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 17% 77%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 77% 17%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 37% 97%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 97% 37%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 47% 67%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 67% 47%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 1% 51%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 51% 1%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 31% 81%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 81% 31%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 21% 71%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 71% 21%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 11% 91%, var(--text-main), transparent),
        radial-gradient(0.5px 0.5px at 91% 11%, var(--text-main), transparent);
    background-size: 600px 600px;
    background-repeat: repeat;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.footer-header {
    position: relative;
    height: 25vw;
    overflow: visible;
}

.footer-bg-large {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 25vw;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.25;
    white-space: nowrap;
    letter-spacing: -0.05em;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    animation: footerFloat 6s ease-in-out infinite;
    text-shadow: 0 0 60px rgba(224, 17, 95, 0.5), 0 0 120px rgba(224, 17, 95, 0.3), 0 0 180px rgba(224, 17, 95, 0.2);
}

@keyframes footerFloat {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-20px);
    }
}

.footer-bg-text {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 30vw;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    letter-spacing: -0.05em;
    text-shadow: 0 0 60px rgba(224, 17, 95, 0.5), 0 0 120px rgba(224, 17, 95, 0.3), 0 0 180px rgba(224, 17, 95, 0.2);
}

.footer-main-text {
    display: none;
}

.footer-header .container {
    position: relative;
    z-index: 2;
}

.footer-section>.container {
    position: relative;
    z-index: 1;
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 32px;
    border-radius: 4px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--text-main);
    margin-bottom: 3rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-main);
}

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

.social-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--grid-line-strong);
    border-radius: 50%;
}

.social-link:hover {
    color: var(--text-main);
    border-color: var(--text-main);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.footer-divider {
    border: 0;
    border-top: 1px solid var(--text-main);
    margin: 4rem 0 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: var(--font-main);
}

.footer-social-handle {
    letter-spacing: 0.05em;
}

.footer-social-handle a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social-handle a:hover {
    color: var(--text-main);
}

@media (max-width: 991px) {
    .footer-bg-text {
        font-size: 40vw;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* Hero content should be visible immediately */
.hero .reveal,
.hero-content.reveal {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }

    70% {
        opacity: 0.6;
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--surface);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-main);
}

.accordion-item {
    background-color: var(--surface);
    border: 1px solid var(--grid-line-strong);
}

.accordion-button {
    background-color: transparent;
    color: var(--text-main);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    color: var(--text-main);
    background-color: rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 -1px 0 var(--grid-line-strong);
}

.accordion-button:focus {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    border-color: var(--text-main);
}

.accordion-body {
    color: var(--text-muted);
}

.accordion-button::after {
    display: none;
}

.fit-section {
    padding: 8rem 0 6rem 0;
    position: relative;
    z-index: 2;
}

.fit-heading {
    margin-bottom: 3.5rem;
}

.fit-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.2rem;
}

.fit-title .fit-not {
    color: var(--text-main);
}

.fit-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.fit-columns {
    margin-top: 2.5rem;
}

.fit-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fit-col-header {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.7rem;
    letter-spacing: 0.01em;
}

.fit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    border-radius: 50%;
    width: 1.3em;
    height: 1.3em;
    background: #00FFC6;
    color: #fff;
    border: none;
    padding: 0;
    font-weight: 700;
}

.fit-icon-yes {
    background: #00FFC6;
    color: #fff;
    border: none;
}

.fit-icon-no {
    background: var(--text-main);
    color: #fff;
    border: none;
}

.fit-icon-yes {
    color: #00FFC6;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.fit-icon-no {
    color: var(--text-main);
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.fit-col-header {
    margin-bottom: 1.2rem;
}

.fit-col {
    gap: 2.2rem;
}

.fit-card {
    border-radius: 10px;
    padding: 0.7rem 0.9rem 0.6rem 0.9rem;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: none;
    border: 1.5px solid transparent;
    transition: border 0.3s, background 0.3s;
    margin-bottom: 0.3rem;
    min-height: 60px;
    opacity: 0;
    animation: fadeInUp 0.7s cubic-bezier(.33, 1, .68, 1) both;
}

.fit-card-yes {
    animation-delay: 0.1s;
}

.fit-card-no {
    animation-delay: 0.2s;
}

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

    to {
        opacity: 1;
        transform: none;
    }
}

.fit-card-yes {
    border-color: #00FFC6;
    background: rgba(0, 255, 198, 0.03);
}

.fit-card-yes h4 {
    color: #00FFC6;
}

.fit-card-no {
    border-color: var(--text-main);
    background: rgba(0, 0, 0, 0.03);
}

.fit-card-no h4 {
    color: var(--text-main);
}

.fit-icon-yes {
    color: #00FFC6;
    border: 2px solid #00FFC6;
    background: rgba(0, 255, 198, 0.08);
}

.fit-icon-no {
    color: var(--text-main);
    border: 2px solid var(--text-main);
    background: rgba(0, 0, 0, 0.08);
}

.fit-col-title {
    font-size: 1.15rem;
    color: var(--text-main);
    font-weight: 700;
}

.fit-card {
    border-radius: 12px;
    padding: 1.5rem 1.5rem 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.12);
    border: 1.5px solid transparent;
    transition: border 0.3s, box-shadow 0.3s, background 0.3s;
}

.fit-card-yes {
    border-color: #00FFC6;
    background: rgba(0, 255, 198, 0.04);
}

.fit-card-yes h4 {
    color: #00FFC6;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.fit-card-yes p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
}

.fit-card-yes:hover {
    background: rgba(0, 255, 198, 0.09);
    box-shadow: 0 0 20px #00FFC633;
    border-color: #00FFC6;
}

.fit-card-no {
    border-color: var(--text-main);
    background: rgba(0, 0, 0, 0.04);
}

.fit-card-no h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.fit-card-no p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
}

.fit-card-no:hover {
    background: rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-color: var(--text-main);
}

@media (max-width: 991px) {
    .fit-columns {
        flex-direction: column;
    }

    .fit-col {
        margin-bottom: 2.5rem;
    }

    .fit-col-header {
        justify-content: flex-start;
    }
}

/* FAQ Section */
.faq-section {
    background-color: transparent;
    padding: 8rem 0 4rem;
    position: relative;
    z-index: 2;
}

.faq-header-content {
    margin-bottom: 3rem;
}

.faq-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.faq-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--grid-line-strong);
    margin-bottom: 0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background-color: transparent;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem 0;
    border: none;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    color: var(--text-main);
    padding-left: 10px;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button:not(.collapsed) {
    color: var(--text-main);
    background-color: transparent;
    box-shadow: none;
    padding-left: 10px;
}

.accordion-button:not(.collapsed)::after {
    display: none;
}

.faq-question {
    text-align: left;
    flex: 1;
    font-family: var(--font-main);
    letter-spacing: 0.02em;
}

.accordion-icon {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) .accordion-icon {
    transform: rotate(45deg);
    color: var(--text-main);
}

.accordion-body {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 0 2rem 0;
    background-color: transparent;
}

.panel .icon {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.panel:hover .icon {
    color: var(--accent);
    transform: scale(1.1) rotate(-15deg);
    text-shadow: 0 0 15px var(--glow);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--grid-line-strong);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: var(--surface);
    border: 4px solid var(--text-main);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 15px var(--glow);
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -16px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--surface);
    position: relative;
    border-radius: 6px;
    border: 1px solid var(--grid-line-strong);
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item::after {
        left: 15px;
    }
}

/* About Page Styles */
.about-section {
    padding: 8rem 0 6rem;
    position: relative;
    z-index: 2;
}

.about-hero {
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.about-content {
    padding: 3rem 0;
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--text-main), transparent);
    border-radius: 2px;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    line-height: 1.1;
    position: relative;
    padding-left: 2rem;
}

.about-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: var(--text-main);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--glow);
}

.about-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.about-text:hover {
    color: var(--text-main);
    transform: translateX(5px);
}

.about-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--grid-line-strong);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.about-text:hover::before {
    background: var(--text-main);
    box-shadow: 0 0 10px var(--glow);
}

.stat-card {
    background: transparent;
    border: none;
    padding: 2rem 0;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--text-main), transparent);
    transition: width 0.6s ease;
    z-index: 1;
}

.stat-card:hover::before {
    width: 100%;
}

.stat-card:hover {
    border-bottom-color: var(--text-main);
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 6px 20px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.aims-section,
.principles-section,
.why-us-section {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
    background: radial-gradient(circle at 10% 20%, rgba(0, 0, 0, 0.05), transparent 30%);
}

.why-us-left {
    padding-right: 3rem;
}

.why-us-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

.why-us-title .highlight {
    color: var(--text-main);
    display: inline-block;
    position: relative;
}

.why-us-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--text-main);
    border-radius: 2px;
}

.why-us-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--text-main);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(0, 0, 0, 0.15);
    border-color: var(--text-main);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.why-us-right {
    border-left: 1px solid var(--grid-line-strong);
    padding-left: 3rem;
}

.why-us-subtitle {
    font-family: var(--font-display);
    font-size: 2rem;
    /* Increased font size */
    font-weight: 700;
    /* Increased font weight */
    color: var(--text-main);
    /* Changed color to main text */
    margin-bottom: 2rem;
    text-transform: none;
    /* Removed uppercase */
    letter-spacing: normal;
    /* Removed letter spacing */
}

.why-us-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.principles-content {
    margin-bottom: 3rem;
}

.principle-item {
    border-bottom: 2px solid var(--grid-line-strong);
    padding: 2rem 0;
    transition: all 0.3s ease;
}

.principle-item:hover {
    border-bottom-color: var(--text-main);
    transform: translateX(10px);
}

.principle-heading {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.principle-item:hover .principle-heading {
    color: var(--text-main);
}

.principle-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.principle-item:hover .principle-desc {
    color: var(--text-main);
}

.principles-summary {
    padding: 2rem 0;
    border-top: 2px solid var(--grid-line-strong);
    position: relative;
}

.principles-summary::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60px;
    background: var(--text-main);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--glow);
}

.principles-summary-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    padding-left: 2rem;
}

.principle-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.principle-item:nth-child(1) {
    animation-delay: 0.1s;
}

.principle-item:nth-child(2) {
    animation-delay: 0.2s;
}

.principle-item:nth-child(3) {
    animation-delay: 0.3s;
}

.tge-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.tge-intro {
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--grid-line-strong);
}

.tge-intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-main);
    font-weight: 500;
}

.tge-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.tge-phase {
    border-bottom: 2px solid var(--grid-line-strong);
    padding: 2rem 0;
    transition: all 0.4s ease;
}

.tge-phase:hover {
    border-bottom-color: var(--text-main);
    transform: translateY(-8px) scale(1.02);
}

.tge-phase-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.tge-phase:hover .tge-phase-title {
    text-shadow: 0 0 20px var(--glow);
    transform: translateX(5px);
}

.tge-phase-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.tge-phase:hover .tge-phase-subtitle {
    color: var(--text-main);
}

.tge-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tge-list-item {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    transition: color 0.3s ease;
}

.tge-list-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-main);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.tge-phase:hover .tge-list-item {
    color: var(--text-main);
}

.tge-phase:hover .tge-list-item::before {
    text-shadow: 0 0 10px var(--glow);
    transform: scale(1.2);
}

.tge-observation {
    padding: 2rem 0;
    border-top: 2px solid var(--grid-line-strong);
    margin-bottom: 2rem;
    position: relative;
}

.tge-observation::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60px;
    background: var(--text-main);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--glow);
}

.tge-observation-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-main);
    font-weight: 500;
    padding-left: 2rem;
}

.tge-insight {
    padding: 2rem 0;
    border-top: 2px solid var(--grid-line-strong);
    position: relative;
}

.tge-insight-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    padding-left: 2rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.tge-insight-text:hover {
    color: var(--text-main);
}

.tge-insight-text:last-child {
    margin-bottom: 0;
}

.tge-phase {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.tge-phase:nth-child(1) {
    animation-delay: 0.1s;
}

.tge-phase:nth-child(2) {
    animation-delay: 0.2s;
}

.framework-intro {
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--grid-line-strong);
}

.framework-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.framework-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.framework-intro-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--text-main);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--glow);
}

.framework-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.framework-card {
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--grid-line-strong);
    padding: 2rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.framework-card:hover {
    border-bottom-color: var(--text-main);
    transform: translateX(10px);
}

.framework-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    line-height: 1;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.framework-card:hover .framework-number {
    background: rgba(0, 0, 0, 0.2);
    border-color: var(--text-main);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.framework-heading {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.framework-card:hover .framework-heading {
    color: var(--text-main);
}

.framework-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.framework-card:hover .framework-text {
    color: var(--text-main);
}

.framework-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.framework-card:nth-child(1) {
    animation-delay: 0.1s;
}

.framework-card:nth-child(2) {
    animation-delay: 0.2s;
}

.framework-card:nth-child(3) {
    animation-delay: 0.3s;
}

.framework-card:nth-child(4) {
    animation-delay: 0.4s;
}

.solution-section {
    padding: 2rem 0;
    border-top: 2px solid var(--grid-line-strong);
    position: relative;
}

.solution-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.team-section-container {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.team-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .team-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .team-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-gallery {
        grid-template-columns: 1fr;
    }
}

.aim-card,
.principle-card,
.why-card {
    background: transparent;
    border-bottom: 2px solid var(--grid-line-strong);
    padding: 2rem 0;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.aim-card:hover,
.principle-card:hover,
.why-card:hover {
    border-bottom-color: var(--text-main);
    transform: translateX(10px);
}

.aim-title,
.principle-title,
.why-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.aim-description,
.principle-description,
.why-description {
    color: var(--text-muted);
    line-height: 1.6;
}

.principle-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-card {
    background: transparent;
    border: none;
    padding: 2rem 0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--text-main), transparent);
    transition: width 0.6s ease;
    z-index: 1;
}

.team-card:hover::before {
    width: 100%;
}

.team-card:hover {
    border-bottom-color: var(--text-main);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-photo {
    margin: 0 auto 1rem;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--grid-line-strong);
    transition: all 0.3s ease;
}

.team-card:hover .team-photo {
    border-color: var(--text-main);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 5px 20px rgba(0, 0, 0, 0.2);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.team-card:hover .team-name {
    color: var(--text-main);
}

.team-role {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

.aim-card:nth-child(1) {
    animation-delay: 0.1s;
}

.aim-card:nth-child(2) {
    animation-delay: 0.2s;
}

.aim-card:nth-child(3) {
    animation-delay: 0.3s;
}

.aim-card:nth-child(4) {
    animation-delay: 0.4s;
}

.principle-card:nth-child(1) {
    animation-delay: 0.1s;
}

.principle-card:nth-child(2) {
    animation-delay: 0.2s;
}

.principle-card:nth-child(3) {
    animation-delay: 0.3s;
}

.principle-card:nth-child(4) {
    animation-delay: 0.4s;
}

.principle-card:nth-child(5) {
    animation-delay: 0.5s;
}

.principle-card:nth-child(6) {
    animation-delay: 0.6s;
}

.why-card:nth-child(1) {
    animation-delay: 0.1s;
}

.why-card:nth-child(2) {
    animation-delay: 0.2s;
}

.why-card:nth-child(3) {
    animation-delay: 0.3s;
}

.why-card:nth-child(4) {
    animation-delay: 0.4s;
}

.team-card {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.team-card:nth-child(1) {
    animation-delay: 0.1s;
}

.team-card:nth-child(2) {
    animation-delay: 0.15s;
}

.team-card:nth-child(3) {
    animation-delay: 0.2s;
}

.team-card:nth-child(4) {
    animation-delay: 0.25s;
}

.team-card:nth-child(5) {
    animation-delay: 0.3s;
}

.team-card:nth-child(6) {
    animation-delay: 0.35s;
}

.team-card:nth-child(7) {
    animation-delay: 0.4s;
}

.team-card:nth-child(8) {
    animation-delay: 0.45s;
}

.team-card:nth-child(9) {
    animation-delay: 0.5s;
}

.team-card:nth-child(10) {
    animation-delay: 0.55s;
}

.team-card:nth-child(11) {
    animation-delay: 0.6s;
}

.stat-card {
    animation: slideInLeft 0.6s ease forwards;
    opacity: 0;
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Center team cards on small screens */
@media (max-width: 767px) {
    .team-section .row {
        justify-content: center;
    }

    .team-section .col-6 {
        display: flex;
        justify-content: center;
    }

    .team-card {
        max-width: 280px;
    }
}

/* Comprehensive Responsive Styles for All Pages */

/* Navbar responsive */
@media (max-width: 991px) {
    .new-navbar {
        width: 95%;
        top: 1rem;
    }

    .navbar-nav {
        gap: 0.5rem;
        padding: 1rem 0;
    }

    .nav-link {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
}

/* Section headings responsive */
@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .switch-labs-question {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
    }

    .about-title {
        font-size: 1.5rem;
    }
}

/* Cards responsive */
@media (max-width: 768px) {

    .service-card,
    .tech-card,
    .principle-card,
    .aim-card,
    .why-card,
    .framework-card,
    .panel-card {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 0.9rem;
    }
}

/* Grid layouts responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

/* Contact section responsive */
@media (max-width: 768px) {
    .contact-item {
        padding: 1.5rem;
    }

    .contact-label {
        font-size: 0.75rem;
    }

    .contact-value {
        font-size: 1rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }
}

/* FAQ section responsive */
@media (max-width: 768px) {
    .accordion-button {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .accordion-body {
        font-size: 0.9rem;
        padding: 1rem;
    }
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* About page specific responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .framework-intro {
        font-size: 0.95rem;
    }

    .tge-intro {
        font-size: 0.95rem;
    }

    .why-intro {
        font-size: 0.95rem;
    }
}

/* Container padding responsive */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Button responsive */
@media (max-width: 480px) {
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Roadmap responsive */
@media (max-width: 768px) {
    .roadmap-node {
        padding: 1.5rem;
    }

    .node-title {
        font-size: 1.1rem;
    }

    .node-period {
        font-size: 0.75rem;
    }

    .roadmap-phase {
        font-size: 0.8rem;
    }
}

/* Problem cards responsive */
@media (max-width: 768px) {
    .problem-card {
        padding: 1.5rem;
    }

    .problem-card h3 {
        font-size: 1.1rem;
    }

    .problem-number {
        font-size: 2.5rem;
    }
}

/* Fit/Comparison cards responsive */
@media (max-width: 768px) {
    .fit-card {
        padding: 1.5rem;
    }

    .fit-title {
        font-size: 1.2rem;
    }

    .fit-icon-yes,
    .fit-icon-no {
        width: 24px;
        height: 24px;
    }
}

/* Timeline responsive */
@media (max-width: 768px) {
    .timeline-content {
        padding: 1rem;
    }

    .timeline-title {
        font-size: 1rem;
    }

    .timeline-period {
        font-size: 0.75rem;
    }
}

/* Stat items responsive */
@media (max-width: 768px) {
    .stat-card {
        padding: 1.5rem;
    }

    .stat-num {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

/* Tags responsive */
@media (max-width: 768px) {
    .tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Scroll dots responsive */
@media (max-width: 768px) {
    .scroll-dots {
        right: 0.5rem;
    }

    .scroll-dot {
        width: 8px;
        height: 8px;
    }
}

/* KOL cards responsive */
@media (max-width: 768px) {
    .kol-card {
        padding: 1.5rem;
    }

    .kol-name {
        font-size: 1.1rem;
    }

    .kol-role {
        font-size: 0.85rem;
    }
}

/* ========================================
   COMPREHENSIVE RESPONSIVE FIXES
   ======================================== */

/* Extra Small Devices (phones, 320px and up) */
@media (max-width: 575px) {

    /* Container fixes */
    .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    /* Navbar fixes */
    .new-navbar {
        width: 95% !important;
        top: 0.5rem !important;
        border-radius: 0.75rem !important;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        border-radius: 0.75rem;
        margin-top: 0.5rem;
        padding: 1rem;
        backdrop-filter: blur(10px);
    }

    .navbar-nav {
        gap: 0 !important;
    }

    .nav-link {
        padding: 0.75rem 0 !important;
        font-size: 0.85rem !important;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    /* Hero fixes */
    .hero {
        padding-top: 7rem !important;
        padding-bottom: 2rem !important;
    }

    .hero-main-title {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
    }

    .hero-description {
        font-size: 0.8rem !important;
        max-width: 100% !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .hero-buttons .btn {
        width: 100%;
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .meta-label {
        font-size: 0.6rem !important;
    }

    /* Section headings */
    .section-heading {
        font-size: 1.25rem !important;
    }

    .section-subtitle {
        font-size: 1rem !important;
    }

    /* About section */
    .what-is {
        font-size: 1.2rem !important;
    }

    .switch-labs-question {
        font-size: 1.8rem !important;
    }

    .big-question-mark {
        font-size: 2rem !important;
    }

    /* Core problems */
    .core-problems-intro h3 {
        font-size: 1.2rem !important;
    }

    .problem-card {
        padding: 1.25rem !important;
    }

    .problem-card h4 {
        font-size: 1rem !important;
    }

    .problem-card p {
        font-size: 0.85rem !important;
    }

    .icon-number {
        font-size: 1rem !important;
    }

    /* Services */
    .services-intro h3 {
        font-size: 1.2rem !important;
    }

    .service-card {
        padding: 1.25rem !important;
    }

    .service-card h4 {
        font-size: 1rem !important;
    }

    .service-card li {
        font-size: 0.85rem !important;
    }

    /* Technology */
    .tech-intro h3 {
        font-size: 1.2rem !important;
    }

    .tech-card {
        padding: 1.25rem !important;
        text-align: center;
    }

    .tech-card-icon svg {
        width: 36px !important;
        height: 36px !important;
    }

    .tech-card-title {
        font-size: 1rem !important;
    }

    .tech-card-desc {
        font-size: 0.85rem !important;
    }

    /* Team/KOL section */
    .kols-section .row {
        justify-content: center !important;
    }

    .kol-card {
        padding: 1rem !important;
    }

    .kol-avatar {
        width: 80px !important;
        height: 80px !important;
    }

    .kol-name {
        font-size: 1rem !important;
    }

    .kol-title {
        font-size: 0.8rem !important;
    }

    .team-section .row {
        justify-content: center !important;
    }

    .team-card {
        padding: 1rem !important;
    }

    .team-image {
        height: 200px !important;
    }

    /* Roadmap */
    .map-node {
        padding: 0.25rem 0 !important;
    }

    .node-card {
        padding: 0.75rem !important;
    }

    .node-card h4 {
        font-size: 0.75rem !important;
    }

    .node-date {
        font-size: 0.6rem !important;
    }

    .node-tasks li {
        font-size: 0.65rem !important;
    }

    /* FAQ */
    .faq-title {
        font-size: 1.2rem !important;
    }

    .faq-subtitle {
        font-size: 0.9rem !important;
    }

    .accordion-button {
        font-size: 0.85rem !important;
        padding: 0.75rem !important;
    }

    .accordion-body {
        font-size: 0.8rem !important;
        padding: 0.75rem !important;
    }

    /* Contact */
    .contact-item {
        padding: 1rem !important;
    }

    .contact-value {
        font-size: 0.9rem !important;
    }

    /* Footer */
    .footer-section {
        padding: 3rem 0 1.5rem !important;
    }

    .footer-heading {
        font-size: 0.8rem !important;
        margin-bottom: 1rem !important;
    }

    .footer-links a {
        font-size: 0.85rem !important;
    }

    .footer-desc {
        font-size: 0.85rem !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 0.5rem;
        text-align: center;
    }

    /* Scroll dots */
    .scroll-dots {
        display: none;
    }

    /* Custom cursor hide on mobile */
    .custom-cursor,
    .custom-cursor-dot {
        display: none !important;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-main-title {
        font-size: 1.8rem !important;
    }

    .hero-description {
        font-size: 0.85rem !important;
    }

    .section-heading {
        font-size: 1.5rem !important;
    }

    .kol-avatar {
        width: 100px !important;
        height: 100px !important;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .new-navbar {
        width: 90% !important;
    }

    .hero-main-title {
        font-size: 2.2rem !important;
    }

    .section-heading {
        font-size: 1.75rem !important;
    }

    .kols-section .col-md-4,
    .team-section .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .new-navbar {
        width: 85% !important;
    }

    .hero-main-title {
        font-size: 2.8rem !important;
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .new-navbar {
        width: 80% !important;
        max-width: 1400px !important;
    }
}

/* Fix for very small devices (less than 360px) */
@media (max-width: 359px) {
    .hero-main-title {
        font-size: 1.1rem !important;
    }

    .hero-description {
        font-size: 0.7rem !important;
    }

    .section-heading {
        font-size: 1rem !important;
    }

    .btn {
        font-size: 0.7rem !important;
        padding: 0.4rem 0.8rem !important;
    }
}

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding-top: 6rem !important;
        min-height: auto !important;
    }

    .hero-main-title {
        font-size: 1.3rem !important;
    }

    .scroll-dots {
        display: none;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}