﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #07173D;
    --secondary-color: #CBEFFF;
    --text-light: #FFFFFF;
    --color-white: #FFFFFF;
    --max-width-desktop: 1300px;
    --max-width-mobile: 85%;
    --margin-auto: 0 auto;
    --font-family: "Poppins", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
}

main {
    overflow-x: hidden;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    overflow: visible;
}

.cursor-dot-outline {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease-out, height 0.3s ease-out, background-color 0.3s ease-out, border 0.3s ease-out;
    will-change: transform;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: opacity 0.3s ease-out, transform 0.1s ease-out;
}


.cursor-dot-outline.cursor-hover {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.cursor-dot.cursor-hover {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
}


@media (hover: none) and (pointer: coarse) {
    .cursor-dot, .cursor-dot-outline {
        display: none !important;
    }

    body {
        cursor: auto !important;
    }
}

.navbar {
    width: 100%;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    transition: background-color 0.3s ease;
}

    .navbar.scrolled {
        background-color: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

.nav-brand img {
    display: block;
}

.nav-menu {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
}

    .nav-item::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 12px;
        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 355 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M351.66 12.6362C187.865-6.32755 49.6478 6.37132 3.41142 12.6362' stroke='%2307173D' stroke-width='3' stroke-linecap='square'/%3e%3cpath d='M351.66 13C187.865-5.96378 49.6478 6.73509 3.41142 13' stroke='%2307173D' stroke-width='3' stroke-linecap='square'/%3e%3cpath d='M2.5 5.5C168.5 2.0001 280.5-1.49994 352.5 8.49985' stroke='%23CBEFFF' stroke-width='3' stroke-linecap='square'/%3e%3c/svg%3e");
        background-size: 100% 100%;
        background-repeat: no-repeat;
        opacity: 0;
        transform: translateY(5px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-item:hover::after,
    .nav-item.active::after {
        opacity: 1;
        transform: translateY(0);
    }

.register-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
    text-decoration: none;
}

    .register-btn:hover {
        background: #000;
    }

.menu-toggle,
.close-btn {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: var(--primary-color);
    z-index: 101;
}

.toggle-with-labels {
    display: flex;
    align-items: center;
    gap: 10px;
}

.label {
    font-weight: 600;
    color: var(--primary-color);
}

.toggle-container {
    width: 70px;
    height: 34px;
}

.toggle {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.toggle-input {
    display: none;
}

.toggle-background {
    fill: #ccc;
    transition: fill 0.3s ease;
}

.toggle-icon.on {
    fill: var(--primary-color);
}

.toggle-icon.off {
    fill: var(--primary-color);
    opacity: 0;
}

.toggle-circle {
    transition: transform 0.3s ease;
}

.toggle-input:checked + .toggle .toggle-background {
    fill: var(--secondary-color);
}

.toggle-input:checked + .toggle .toggle-circle.left {
    transform: translateX(80px);
}

.toggle-input:checked + .toggle .toggle-circle.right {
    transform: translateX(-80px);
}

.toggle-input:checked + .toggle .toggle-icon.on {
    opacity: 0;
}

.toggle-input:checked + .toggle .toggle-icon.off {
    opacity: 1;
}


@media(max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu > .nav-item,
    .nav-menu > .register-btn,
    .nav-menu > .toggle-with-labels {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--secondary-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        clip-path: circle(0% at calc(100% - 50px) 50px);
        transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    }

        .nav-menu.active {
            clip-path: circle(150% at calc(100% - 50px) 50px);
        }

            .nav-menu.active > .nav-item,
            .nav-menu.active > .register-btn,
            .nav-menu.active > .toggle-with-labels {
                display: flex;
            }

        .nav-menu .close-btn {
            display: block;
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 32px;
        }

    .nav-item {
        font-size: 40px;
        font-weight: 600;
        letter-spacing: -1.2px;
        padding: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

        .nav-item::after {
            display: none;
        }

    .register-btn {
        padding: 15px 30px;
        font-size: 18px;
        margin-top: 20px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .toggle-with-labels {
        margin-top: 20px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-menu.active .nav-item,
    .nav-menu.active .register-btn,
    .nav-menu.active .toggle-with-labels {
        opacity: 1;
        transform: translateY(0);
    }

        .nav-menu.active .nav-item:nth-child(2) {
            transition-delay: 0.1s;
        }

        .nav-menu.active .nav-item:nth-child(3) {
            transition-delay: 0.2s;
        }

        .nav-menu.active .nav-item:nth-child(4) {
            transition-delay: 0.3s;
        }

        .nav-menu.active .nav-item:nth-child(5) {
            transition-delay: 0.4s;
        }

    .nav-menu.active .register-btn {
        transition-delay: 0.5s;
    }

    .nav-menu.active .toggle-with-labels {
        transition-delay: 0.6s;
    }
}

.mega-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

    .mega-menu-wrapper.is-active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.mega-menu-content {
    display: flex;
    width: 100%;
    height: 100%;
}

.menu-links {
    flex-basis: 45%;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    transform: translateX(-30px);
    opacity: 0;
    transition: transform 0.6s ease 0.3s, opacity 0.6s ease 0.3s;
}

.mega-menu-wrapper.is-active .menu-links {
    transform: translateX(0);
    opacity: 1;
}

.menu-back-btn {
    position: absolute;
    top: 30px;
    left: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s ease;
}

    .menu-back-btn:hover {
        background: rgba(255, 255, 255, 0.1);
    }

.menu-links h2 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.sub-nav-item {
    color: var(--text-light);
    text-decoration: none;
    font-size: 3vw;
    font-weight: 700;
    line-height: 1.2;
    padding: 5px 0;
    transition: transform 0.3s ease, color 0.3s ease;
    transform-origin: left;
}

    .sub-nav-item:hover {
        transform: translateX(15px);
        color: #58c1ff;
    }

.menu-image {
    flex-basis: 55%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.1);
    opacity: 0;
    transition: transform 1s ease 0.2s, opacity 0.8s ease 0.2s;
}

.mega-menu-wrapper.is-active .menu-image {
    transform: scale(1);
    opacity: 1;
}
.nav-menu-desktop {
    display: flex;
    align-items: center;
}

@media(max-width: 992px) {
    .nav-menu-desktop, .register-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .navbar {
        padding: 20px 30px;
    }

    .mega-menu-content {
        flex-direction: column-reverse;
    }

    .menu-image {
        flex-basis: 40%;
    }

    .menu-links {
        flex-basis: 60%;
        justify-content: flex-start;
        padding: 30px;
        text-align: center;
    }

    .sub-nav-item {
        font-size: 10vw;
    }

        .sub-nav-item:hover {
            transform: translateX(0);
        }

    .menu-back-btn {
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}


.menu-toggle {
    display: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .hamburger-icon span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #111;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }

.sidebar-open .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.sidebar-open .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.sidebar-open .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.sidebar-open .hamburger-icon span {
    background-color: #fff;
}


.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.sidebar-open .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
}

.sidebar-open .mobile-nav-sidebar {
    transform: translateX(0);
}

.sidebar-open body, .sidebar-open html {
    overflow: hidden; 
}

.mobile-nav-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

    .mobile-nav-body ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .mobile-nav-body ul a, .mobile-nav-body ul button {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.5rem;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease, background-color 0.3s ease;
        }

            .mobile-nav-body ul a:hover {
                color: #fff;
                background-color: rgba(255, 255, 255, 0.05);
            }

.accordion-toggle {
    width: 100%;
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
}

    .accordion-toggle i {
        transition: transform 0.4s ease;
    }

.has-accordion.active > .accordion-toggle i {
    transform: rotate(180deg);
}

.sub-menu {
    max-height: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    transition: max-height 0.4s ease-in-out;
}

    .sub-menu a {
        font-size: 1rem;
        padding-left: 2.5rem;
        color: rgba(255, 255, 255, 0.6);
    }

.mobile-nav-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.register-btn-mobile {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #fff;
    color: #111;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

    .register-btn-mobile:hover {
        opacity: 0.8;
    }

@media (max-width: 992px) {
    .nav-menu-desktop,
    .navbar .register-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    main {
        margin-top: 80px;
    }
}


footer {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 40px 80px;
    margin-top: 40px;
    height: 100vh;
}

.site-footer {
    width: 100%;
    height: 100vh;
    color: white;
    padding: 60px 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(315deg, #07173d, #3f4f75, #64c3cf);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.footer-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.footer-main {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-cta {
    max-width: 50%;
}

.footer-heading {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.footer-subheading {
    font-size: 1.2rem;
    color: var(--hover-color);
    margin: 0 0 30px 0;
}

.footer-email {
    font-size: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

    .footer-email::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--text-color);
        transform: scaleX(1);
        transform-origin: left;
        transition: transform 0.3s ease-out;
    }

    .footer-email:hover::after {
        transform: scaleX(0);
        transform-origin: right;
    }

.footer-links {
    display: flex;
    gap: 80px;
}

.link-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--hover-color);
}

.link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .link-column ul li {
        margin-bottom: 12px;
    }

        .link-column ul li a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.2s ease;
        }

            .link-column ul li a:hover {
                color: var(--hover-color);
            }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #ffffff;
    font-size: 0.9rem;
}

.copyright {
    color: #ffffff;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-left: 20px;
    transition: transform 0.2s ease, color 0.2s ease;
}

    .social-links a:hover {
        color: var(--hover-color);
        transform: translateY(-2px);
    }

@media (max-width: 900px) {
    .site-footer {
        padding: 40px;
        height: auto;
        min-height: 100vh;
    }

    .footer-main {
        flex-direction: column; 
        gap: 60px;
    }

    .footer-cta {
        max-width: 100%;
    }

    .footer-heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 600px) {
    .footer-heading {
        font-size: 2.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .social-links a {
        margin: 0 10px;
    }
}