:root {
    --bg-dark: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-heavy: rgba(255, 255, 255, 0.7);
    --teal-primary: #00D4FF;
    --teal-hover: #00A6CC;
    --purple-light: #B450FF;
    --purple-dark: #8E24CC;
    --text-main: #0F172A;
    --text-muted: #475569;
    --gradient-primary: linear-gradient(135deg, var(--teal-primary), var(--purple-light));
    --gradient-surface: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --border-glass: 1px solid rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    outline: none;
    border: none;
    text-decoration: none;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
    overflow-x: hidden;
    background: var(--bg-dark);
    color: var(--text-main);
}

body {
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

/* Kinetic Background Blobs */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background: var(--bg-dark);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    background: var(--gradient-primary);
    animation: move 25s infinite alternate ease-in-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    top: -150px;
    left: -150px;
    animation-duration: 30s;
    background: var(--teal-primary);
    opacity: 0.08;
}

.blob-2 {
    width: 500px;
    height: 500px;
    bottom: 5%;
    right: -100px;
    animation-delay: -7s;
    animation-duration: 35s;
    background: var(--purple-light);
    opacity: 0.08;
}

.blob-3 {
    width: 400px;
    height: 400px;
    top: 30%;
    left: 20%;
    animation-delay: -12s;
    animation-duration: 25s;
    opacity: 0.05;
}

@keyframes move {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(150px, 80px) scale(1.1) rotate(120deg);
    }

    66% {
        transform: translate(-50px, 150px) scale(0.9) rotate(240deg);
    }

    100% {
        transform: translate(100px, 100px) scale(1.2) rotate(360deg);
    }
}

/* Side Progress Dots */
.side-dots {
    position: fixed;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 2500;
}

.side-dots .dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease, border-color 0.4s ease;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    will-change: transform;
}

.side-dots .dot.active {
    background: var(--teal-primary);
    transform: scale(1.6);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    border-color: var(--teal-primary);
}

.side-dots .dot:hover {
    border-color: var(--teal-primary);
    background: rgba(0, 212, 255, 0.2);
}

/* Mouse Glow Focus */
.mouse-glow {
    position: fixed;
    width: 25px;
    height: 25px;
    background: var(--teal-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    filter: blur(12px);
    opacity: 0;
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        height 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.5s, background 0.5s;
    transform: translate(-50%, -50%);
}

@media (pointer: coarse) {
    .mouse-glow {
        display: none;
    }
}

.mouse-glow.active {
    opacity: 0.6;
    width: 120px;
    height: 120px;
    background: var(--purple-light);
    filter: blur(20px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    font-weight: 700;
    letter-spacing: -0.025em;
}

section {
    padding: 7rem 9%;
}

.heading {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4rem;
    letter-spacing: -0.03em;
}

.heading span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1.1rem 3rem;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 5rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
    will-change: transform;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(180, 80, 255, 0.4);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-glass-heavy);
    backdrop-filter: blur(15px);
    border-bottom: var(--border-glass);
    padding: 0.6rem 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header .logo,
.footer .logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

header .logo span,
.footer .logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: black;
    text-transform: uppercase;
    transition: transform 0.4s ease;
}

header .logo:hover span,
.footer .logo:hover span {
    transform: scale(1.02);
}

.logo-img {
    height: 3.9rem;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 212, 255, 0.25));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        filter 0.4s ease;
}

.logo-img:hover {
    transform: scale(1.07);
    filter: drop-shadow(0 4px 16px rgba(0, 212, 255, 0.45));
}


header .navbar a {
    font-size: 1.4rem;
    padding: 0.5rem 1.2rem;
    color: var(--text-main);
    margin-left: 1rem;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease, background 0.3s ease;
    border-radius: 5rem;
}

header .navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

header .navbar a:hover {
    color: var(--teal-primary);
    background: rgba(0, 212, 255, 0.05);
}

header .navbar a:hover::after {
    width: 30%;
}

header #toggler {
    display: none;
}

header .fa-bars {
    font-size: 3rem;
    color: var(--teal-primary);
    cursor: pointer;
    display: none;
}

.home {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 100vh;
    background: url("images/poster.jpg") no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    padding: 0 9%;
}

.home::before {
    display: none;
}

.home .content {
    text-align: right;
    max-width: 75rem;
    z-index: 10;
}

.home .content .floating-content {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {

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

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

.home .content h3 {
    font-size: 5.5rem;
    font-weight: 1000;
    line-height: 1.1;
    margin-bottom: 3rem;
    color: #FFFFFF;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.home .content h3 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.2));
}

.home .content p {
    font-size: 2rem;
    color: var(--text-muted);
    padding: 1.5rem 0 4rem;
    line-height: 1.8;
    text-shadow: none;
    max-width: 60rem;
    margin-left: auto;
}

.services {
    background: var(--bg-dark);
    position: relative;
    padding: 12rem 9%;
}

.services .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 4rem;
    perspective: 1000px;
}

.services .box {
    background: #FFFFFF;
    backdrop-filter: blur(5px);
    border: var(--border-glass);
    border-radius: 2.5rem;
    padding: 4rem 3rem;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.5s ease,
        border-color 0.5s ease,
        background 0.5s ease;
    z-index: 1;
    will-change: transform;
}

.services .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.services .box:hover::before {
    opacity: 0.1;
}

.services .box:hover {
    transform: translateY(-2rem) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 212, 255, 0.1);
    border-color: var(--teal-primary);
    background: #FFFFFF;
}

@media (max-width: 768px) {
    .services .box:hover {
        transform: translateY(-1rem) scale(1.02);
    }
}

.services .box i {
    font-size: 4.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3.5rem;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    will-change: transform;
}

.services .box:hover i {
    transform: scale(1.2) translateY(-10px);
    filter: drop-shadow(0 15px 15px rgba(0, 212, 255, 0.3));
}

.services .box h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.services .box p {
    font-size: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.technologies {
    padding: 6rem 9%;
    background: rgba(0, 212, 255, 0.02);
    text-align: center;
}

.tech-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 120rem;
    margin: 0 auto;
}

.tech-tag {
    font-size: 1.8rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: #FFFFFF;
    border: var(--border-glass);
    padding: 1.8rem 4.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background 0.4s ease,
        color 0.4s ease,
        box-shadow 0.4s ease;
    font-weight: 700;
    cursor: pointer;
    clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0 50%);
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    will-change: transform;
}

.tech-tag:hover {
    transform: translateY(-8px) scale(1.1);
    background: var(--gradient-primary);
    color: #FFFFFF;
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
    border-color: transparent;
}

.about {
    background: var(--bg-light);
    padding: 12rem 9%;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 4rem;
    margin-top: 5rem;
}

.partner-card {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    border: var(--border-glass);
    padding: 6rem 4rem;
    border-radius: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    z-index: 1;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s ease;
}

.partner-card:hover::before {
    opacity: 0.03;
}

.partner-card:hover {
    transform: translateY(-2rem);
    border-color: var(--teal-primary);
    box-shadow: 0 40px 80px rgba(0, 212, 255, 0.12);
}

.partner-card .card-icon {
    width: 9rem;
    height: 9rem;
    line-height: 9rem;
    background: #F8FAFC;
    border-radius: 2.5rem;
    margin: 0 auto 3.5rem;
    font-size: 4rem;
    color: var(--teal-primary);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card:hover .card-icon {
    background: var(--gradient-primary);
    color: #FFFFFF;
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25);
}

.partner-card h3 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.partner-card p {
    font-size: 1.6rem;
    color: var(--text-muted);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .partner-card {
        padding: 5rem 3rem;
    }

    .partner-card h3 {
        font-size: 2rem;
    }
}

.facts {
    padding: 3rem 9%;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.facts-container {
    position: relative;
    z-index: 2;
    max-width: 120rem;
    margin: 0 auto;
}

.facts-bg-decoration {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60rem;
    color: var(--teal-primary);
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
    animation: floatRotate 40s linear infinite;
}

@keyframes floatRotate {
    0% {
        transform: translateY(-50%) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-55%) rotate(180deg) scale(1.05);
    }

    100% {
        transform: translateY(-50%) rotate(360deg) scale(1);
    }
}

.facts-header {
    margin-bottom: 5rem;
}

.facts-header .sub-heading {
    display: inline-block;
    font-size: 1.4rem;
    color: var(--teal-primary);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.4rem;
    margin-bottom: 2rem;
}

.facts-header .heading {
    font-size: 3.5rem;
    margin-bottom: 0;
    text-align: left;
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 6rem;
    margin-top: 6rem;
}

.fact-box {
    padding: 3rem 0;
    text-align: left;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.fact-box p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fact-box h3 {
    font-size: 6.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    line-height: 1;
    display: flex;
    align-items: baseline;
}

.fact-box .plus-sign {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4rem;
    margin-left: 0.5rem;
    font-weight: 400;
}

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

@media (max-width: 768px) {
    .fact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .fact-box h3 {
        font-size: 5rem;
    }
}

.footer-col .footer-contact p,
.footer-col .operational-info {
    margin-bottom: 1.4rem;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.footer-col .operational-info span {
    display: block;
    margin-top: 0.8rem;
    color: var(--text-main);
    font-weight: 600;
}

.footer {
    background: #FFFFFF;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.5fr 1fr;
    gap: 2rem;
    padding: 3.0rem 9%;
    background: #FFFFFF;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--text-main);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
}

.footer-contact i {
    font-size: 1.6rem;
    color: var(--teal-primary);
    margin-top: 0.2rem;
}

.footer-col ul li {
    margin-bottom: 1.0rem;
    list-style: disc;
    margin-left: 2rem;
    color: var(--text-muted);
    padding-bottom: 1rem;
}

.footer-col ul li a {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--teal-primary);
}



.footer .credit {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    padding: 1.2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #FFFFFF;
}

.footer .credit span {
    color: var(--purple-light);
    font-weight: 700;
}

@media (max-width: 1100px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 1200px) {
    header {
        padding: 1.5rem 5%;
    }

    section {
        padding: 8rem 5%;
    }
}

@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    header {
        padding: 1.8rem 5%;
    }

    section {
        padding: 6rem 5%;
    }

    .home .content h3 {
        font-size: 5.5rem;
    }
}

@media (max-width: 768px) {
    header .fa-bars {
        display: block;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-glass-heavy);
        backdrop-filter: blur(20px);
        border-top: var(--border-glass);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: 0.5s ease;
    }

    header #toggler:checked~.navbar {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    header .navbar a {
        display: block;
        margin: 1rem 2rem;
        padding: 1.5rem;
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.05);
        font-size: 1.8rem;
    }

    .home {
        justify-content: center;
        text-align: center;
        min-height: 100vh;
        background: linear-gradient(rgba(7, 11, 20, 0.7), rgba(7, 11, 20, 0.7)), url("images/poster.jpg") no-repeat center center/cover;
    }

    .home .content {
        text-align: center;
        max-width: 100%;
        padding: 0 2rem;
    }

    .home .content .floating-content {
        width: 100%;
    }

    .home .content h3 {
        font-size: 4.5rem;
    }

    .home .content p {
        margin: 0 auto;
        font-size: 1.8rem;
    }

    .side-dots {
        display: none;
    }

    .tech-tag {
        font-size: 1.8rem;
        padding: 2rem 4.5rem;
        clip-path: polygon(25px 0, calc(100% - 25px) 0, 100% 50%, calc(100% - 25px) 100%, 25px 100%, 0 50%);
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    .heading {
        font-size: 3.5rem;
    }

    .home .content h3 {
        font-size: 3.8rem;
    }
}

@media (max-width: 450px) {
    .logo-img {
        height: 3.2rem;
    }

    header .logo span,
    .footer .logo span {
        display: none;
    }
}