:root {
    --navy: #1b2350;
    --gold: #b4944a;
    --teal: #0db3c8;
    --muted: #f2f6f8;
    --max-width: 1200px;
    --accent: #ff6b6b;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #fff;
    color: #222;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

.site {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar with Ticker Animation */
.topbar {
    background: linear-gradient(135deg, var(--teal), #0a8f9f);
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.news-ticker {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.ticker-label {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.contact-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s;
}

.brand:hover {
    transform: translateY(-2px);
}

.brand img {
    height: 70px;
    width: 70px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.brand:hover img {
    transform: rotate(5deg) scale(1.05);
}

.brand h1 {
    font-family: 'Georgia', serif;
    color: var(--navy);
    font-size: 22px;
    font-weight: 700;
}

.tagline {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover {
    color: var(--teal);
    background: rgba(13, 179, 200, 0.1);
}

nav a:hover::after {
    width: 60%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #1b2350 0%, #2c3e7a 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, .1) 35px, rgba(255, 255, 255, .1) 70px);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h2 {
    font-family: 'Georgia', serif;
    font-size: 56px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero h2 span {
    display: block;
    font-size: 32px;
    color: var(--gold);
    margin-top: 10px;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 20px 0 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 4px 15px rgba(13, 179, 200, 0.4);
}

.btn-primary:hover {
    background: #0a8f9f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 179, 200, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--navy);
    transform: translateY(-2px);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.float-1 {
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: rgba(180, 148, 74, 0.1);
    border-radius: 50%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 15%;
    right: 25%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30%;
    animation-delay: 2s;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--teal), #0a8f9f);
    padding: 50px 0;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: #fff;
    animation: fadeInUp 0.8s ease;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Cards Section */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 60px 0;
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(20, 30, 60, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(20, 30, 60, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal), #0a8f9f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card h3 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 22px;
}

.list div {
    margin: 12px 0;
    padding-left: 20px;
    position: relative;
    transition: transform 0.3s;
}

.list div::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

.list div:hover {
    transform: translateX(5px);
    color: var(--teal);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--muted);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.about {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.about h2 {
    color: var(--navy);
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--teal);
}

.about h3 {
    color: var(--navy);
    margin: 30px 0 15px;
    font-size: 24px;
}

.about ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.about li {
    padding: 12px 20px;
    background: var(--muted);
    border-radius: 8px;
    position: relative;
    padding-left: 40px;
    transition: all 0.3s;
}

.about li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: var(--teal);
    font-weight: bold;
    font-size: 18px;
}

.about li:hover {
    background: var(--teal);
    color: #fff;
    transform: translateX(5px);
}

.about li:hover::before {
    color: #fff;
}

.founder-link {
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(13, 179, 200, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.founder-link:hover {
    background: var(--teal);
    color: #fff;
    transform: translateX(5px);
    border-color: var(--teal);
    box-shadow: 0 4px 15px rgba(13, 179, 200, 0.3);
}

/* Sidebar */
.sidebar {
    background: linear-gradient(135deg, var(--navy), #2c3e7a);
    color: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.sidebar h4 {
    margin-bottom: 20px;
    font-size: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.sidebar ol {
    list-style: none;
    counter-reset: item;
}

.sidebar ol li {
    margin: 15px 0;
    padding-left: 35px;
    position: relative;
    counter-increment: item;
    transition: transform 0.3s;
    cursor: pointer;
}

.sidebar ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
}

.sidebar ol li:hover {
    transform: translateX(5px);
    color: var(--gold);
}

.contact-item {
    margin: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-icon {
    color: var(--teal);
    font-size: 18px;
    margin-top: 2px;
}

.qr-codes {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
}

.qr {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: 3px solid rgba(255, 255, 255, 0.2);
    background: #fff;
    padding: 5px;
}

.qr:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* QR Modal */
.qr-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.qr-modal-content {
    max-width: 400px;
    max-height: 400px;
    border-radius: 16px;
    animation: zoomIn 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close:hover {
    background: var(--teal);
    transform: rotate(90deg);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0f1b3b, #1b2350);
    color: #fff;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.social-icon:hover {
    background: var(--teal);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    opacity: 0.8;
}

footer a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--teal);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--teal);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(13, 179, 200, 0.4);
    transition: all 0.3s;
    z-index: 99;
}

.scroll-top:hover {
    background: var(--navy);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav.active {
        max-height: 500px;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    nav a {
        display: block;
        padding: 15px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 400px;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero h2 span {
        font-size: 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 28px;
    }

    .hero h2 span {
        font-size: 20px;
    }

    .hero p {
        font-size: 16px;
    }

    .contact-info span {
        font-size: 12px;
    }
}

.social-icon i {
    font-size: 20px;
    line-height: 40px;
}