:root {
    --main-blue: #007bff;
    --deep-blue: #001a33;
    --dark-bg: #03070c;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
    --swift-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: white;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(3, 7, 12, 0.8);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.logo {
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span {
    color: var(--main-blue);
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--main-blue);
}

.btn-nav {
    background: var(--main-blue);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.4s var(--swift-out);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #002b5c 0%, var(--dark-bg) 70%);
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin: 0;
    font-weight: 900;
}

.blue-glow {
    color: var(--main-blue);
    text-shadow: 0 0 30px rgba(0, 123, 255, 0.5);
}

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 100px 8%;
    flex-wrap: wrap;
}

.card {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 20px;
    width: 300px;
    transition: all 0.4s var(--swift-out);
}

.card:hover {
    background: rgba(0, 123, 255, 0.05);
    border-color: var(--main-blue);
    transform: translateY(-10px) scale(1.02);
}

.animate-pop { animation: pop 0.8s var(--swift-out) both; }
.animate-slide-up { animation: slideUp 0.8s var(--swift-out) both; animation-delay: 0.2s; }
.animate-fade-in { 
    animation: fadeIn 1s var(--swift-out) both; 
    animation-delay: calc(var(--order) * 0.1s + 0.4s); 
}

@keyframes pop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes slideUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 850px) {
    .menu-icon {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        background: rgba(3, 7, 12, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s var(--swift-out);
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 20px 0;
        font-size: 1.2rem;
    }

    .menu-icon.open .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-icon.open .bar:nth-child(2) { opacity: 0; }
    .menu-icon.open .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

.btn-primary {
    background: var(--main-blue);
    padding: 15px 35px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    margin: 10px;
    transition: 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
    border: 1px solid white;
    padding: 15px 35px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

.dept-hero {
    padding-top: 150px;
    text-align: center;
}

.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    min-height: 40vh;
}

.glass-overlay {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.glass-overlay h2 {
    font-size: 2.5rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
    color: var(--main-blue);
}

.loader-line {
    width: 100px;
    height: 4px;
    background: var(--main-blue);
    margin: 30px auto;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    animation: loadingSwift 2s infinite var(--swift-out);
}

@keyframes loadingSwift {
    0% { left: -100%; }
    50% { left: 0%; }
    100% { left: 100%; }
}

.about-container {
    padding: 120px 10% 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.profile-circle {
    width: 150px;
    height: 150px;
    background: var(--glass);
    border: 3px solid var(--main-blue);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.3);
}

.profile-circle img {
    width: 80%;
    height: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.about-card {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.about-card h3 {
    color: var(--main-blue);
    margin-top: 0;
}

.about-card ul {
    list-style: none;
    padding: 0;
}

.about-card ul li {
    margin-bottom: 10px;
}

.about-card ul li::before {
    content: "⚡";
    margin-right: 10px;
    color: var(--main-blue);
}

.personal-note {
    background: linear-gradient(90deg, rgba(0, 123, 255, 0.1), transparent);
    border-left: 4px solid var(--main-blue);
    padding: 40px;
    border-radius: 0 20px 20px 0;
    font-style: italic;
}

.page-header {
    padding: 160px 10% 40px;
    text-align: center;
}

.partner-section {
    padding: 0 10% 80px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-card {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    transition: 0.4s var(--swift-out);
}

.partner-card:hover {
    border-color: var(--main-blue);
    transform: translateY(-8px);
    background: rgba(0, 123, 255, 0.05);
}

.partner-logo {
    width: 90px;
    height: 90px;
    background: #000;
    margin: 0 auto 20px;
    border-radius: 18px;
    border: 2px solid var(--main-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.2);
}

.partner-logo img {
    width: 80%;
    height: auto;
}

.reviews-section {
    padding: 80px 10%;
    background: linear-gradient(to bottom, transparent, rgba(0, 123, 255, 0.03));
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-item {
    background: var(--glass);
    border-left: 5px solid var(--main-blue);
    padding: 30px;
    border-radius: 0 20px 20px 0;
    backdrop-filter: blur(10px);
}

.stars {
    color: #ffcc00;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.author {
    display: block;
    margin-top: 15px;
    color: var(--main-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.review-ticker {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #03070c;
    padding: 20px 0;
    z-index: 2000;
    overflow: hidden;
    border-top: 2px solid #007bff;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.ticker-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #007bff;
    margin: 0 15px;
    padding: 20px 30px;
    border-radius: 12px;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ticker-box p {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.ticker-box .stars {
    color: #ffcc00;
    font-size: 0.8rem;
}

.ticker-box .author {
    color: #007bff;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-ticker:hover .ticker-track {
    animation-play-state: paused;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%; /* Hides the menu off-screen */
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        right: 0; /* Slides the menu in when active */
    }

    .menu-icon {
        display: block; /* Shows the hamburger icon */
        cursor: pointer;
    }

    .nav-links a {
        margin: 20px 0;
        display: block;
        font-size: 1.2rem;
    }
}

/* Hamburger Icon Animation */
.menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.4s;
}

.menu-icon.open .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-icon.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-icon.open .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* --- Core Theme Variables --- */
:root {
    --main-blue: #007bff;
    --deep-blue: #001a33;
    --dark-bg: #03070c;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
    --swift-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Layout Container --- */
.privacy-wrapper {
    display: flex;
    justify-content: center;
    padding: 60px 8% 120px;
    background: radial-gradient(circle at top, #001a33 0%, var(--dark-bg) 100%);
}

/* --- The Legal Glass Box --- */
.legal-box {
    max-width: 1000px;
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

/* --- Text Styling --- */
.legal-box h2 {
    color: var(--main-blue);
    font-size: 1.8rem;
    margin-top: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.legal-box h3 {
    color: #fff;
    margin-top: 30px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.legal-box p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.legal-box strong {
    color: var(--main-blue);
}

/* --- Nice List Styling --- */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-list li {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    margin-bottom: 12px;
    padding: 15px 25px;
    border-radius: 12px;
    transition: 0.3s var(--swift-out);
}

.legal-list li:hover {
    background: rgba(0, 123, 255, 0.05);
    border-color: var(--main-blue);
    transform: translateX(5px);
}

/* --- Standard List Items (Section 4, 6, 7) --- */
.legal-box ul:not(.legal-list) {
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.legal-box ul:not(.legal-list) li {
    margin-bottom: 10px;
}

/* --- Visual Elements --- */
.text-divider {
    text-align: center;
    color: var(--main-blue);
    opacity: 0.3;
    font-size: 1.5rem;
    margin: 50px 0;
}

.blue-glow {
    color: var(--main-blue);
    text-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
}

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
    .legal-box {
        padding: 30px;
        border-radius: 20px;
    }
    
    .legal-box h2 {
        font-size: 1.4rem;
    }
}

/* --- Modern About Section UI --- */

.about-container {
    padding: 140px 10% 80px; /* Extra top padding for fixed navbar */
    max-width: 1100px;
    margin: 0 auto;
    min-height: 100vh;
}

.about-header {
    text-align: center;
    margin-bottom: 70px;
}

/* Glassmorphism Profile Circle */
.profile-circle {
    width: 150px;
    height: 150px;
    background: var(--glass);
    border: 2px solid var(--main-blue);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 35px rgba(0, 123, 255, 0.25);
    backdrop-filter: blur(10px);
    transition: transform 0.4s var(--swift-out);
}

.profile-circle:hover {
    transform: scale(1.05) rotate(5deg);
}

.profile-circle img {
    width: 75%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 123, 255, 0.5));
}

/* About Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Modern Glass Card */
.about-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    padding: 45px;
    border-radius: 24px;
    transition: all 0.4s var(--swift-out);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top left, rgba(0, 123, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.about-card:hover {
    transform: translateY(-12px);
    border-color: var(--main-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card h3 {
    color: var(--main-blue);
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Refined List Items */
.about-card ul {
    list-style: none;
    padding: 0;
}

.about-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.about-card ul li:last-child { border-bottom: none; }

.about-card ul li::before {
    content: "✦";
    color: var(--main-blue);
    margin-right: 15px;
    font-size: 0.8rem;
}

/* Owner Quote Section */
.personal-note {
    background: rgba(0, 123, 255, 0.03);
    border-left: 4px solid var(--main-blue);
    padding: 50px;
    border-radius: 0 30px 30px 0;
    backdrop-filter: blur(10px);
}

.personal-note h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--main-blue);
    margin-bottom: 20px;
    opacity: 0.8;
}

.personal-note p {
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    color: #e0e0e0;
}

.personal-note strong {
    color: var(--main-blue);
    display: block;
    margin-top: 20px;
    font-size: 1rem;
    letter-spacing: 1px;
}