/* Global CSS */

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #071026;
    font-family: "Poppins", sans-serif;
    /* hide default cursor */
}

h1 {
    color: #ffffff;
    font-size: 52px;
    text-transform: uppercase;
}

h2 {
    color: #ffffff;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    color: #f3f3f3;
    line-height: 1.8;
    font-size: 16px;
}

section {
    padding: 100px 20px 100px 20px;
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.sectionTitle {
    padding-bottom: 60px;
}

.container {
    width: 100%;
    margin: auto;
    overflow: hidden;
    display: flex;
}

.row {
    width: 1400px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* horizontal center */
    align-items: center;
}

i {
    color: yellow;
}

.divider {
    width: 75%;
    height: 3px;
    background-color: #06b6d4;
    display: flex;
    justify-self: center;
}


/*Button CSS*/

.btn {
    padding: 11px 26px;
    background: linear-gradient(90deg, #06b6d4, #7c3aed);
    border: 0;
    border-radius: 50px;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.btn a {
    text-decoration: none;
    color: #ffffff !important;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.content {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
}


/* Header */

.header {
    height: 65px;
    background: #0f172a;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


/* Brand */

.brand {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .7rem;
}

.logo {
    width: 42px;
    height: 42px;
    background: linear-gradient(90deg, #06b6d4, #7c3aed);
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-weight: bold;
    color: #071026;
}


/* Desktop nav */

.desktop-nav {
    display: flex;
    gap: 1.5rem;
}

.desktop-nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}


/* Hamburger button */

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: white;
    position: relative;
    transition: 0.3s;
}

.hamburger .bar::before,
.hamburger .bar::after {
    content: "";
    width: 100%;
    height: 3px;
    background: white;
    position: absolute;
    left: 0;
    transition: 0.3s;
}

.hamburger .bar::before {
    top: -8px;
}

.hamburger .bar::after {
    top: 8px;
}


/* Hamburger active (X icon) */

.hamburger.active .bar {
    background: transparent;
}

.hamburger.active .bar::before {
    transform: rotate(45deg);
    top: 0;
}

.hamburger.active .bar::after {
    transform: rotate(-45deg);
    top: 0;
}


/* Mobile menu */

.mobile-menu {
    background: #0f172a;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    position: absolute;
    width: 100%;
    left: 0;
    top: 65px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.25s ease;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}


/* When open */

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}


/* Responsive */

@media (max-width: 820px) {
    .desktop-nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}


/* Privacy Policy */

#privacy-policy {
    max-width: 900px;
    margin: 60px auto;
    padding: 30px;
    line-height: 1.8;
}

#privacy-policy h2 {
    margin-top: 30px;
    font-size: 22px;
}

#privacy-policy ul,
a {
    padding-left: 20px;
    color: #fff;
}

#privacy-policy a {
    padding-left: 10px;
    color: #fff;
}

.updated-date {
    color: #06b6d4;
    font-size: 14px;
}