:root {
    --primary-color: #FFD700;
    --secondary-color: #E31837;
    --bg-dark: #121212;
    --text-light: #F8F9FA;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    margin: 0;
    overflow-x: hidden;
}

/* Navbar */
.navbar-public {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 2rem;
}

.text-logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--text-light) !important;
    text-transform: uppercase;
}

.footer-logo-text {
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--text-light);
    text-transform: uppercase;
}

.nav-link-public {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
}

.nav-link-public::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link-public:hover::after {
    width: 100%;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    color: #000;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero-section {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1586816001966-79b736744398?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-content .highlight {
    color: var(--primary-color);
    display: inline-block;
}

.word-animate {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: wordLoop 3s ease-in-out infinite;
}

@keyframes wordLoop {

    0%,
    10% {
        opacity: 0;
        transform: translateY(20px);
    }

    20%,
    80% {
        opacity: 1;
        transform: translateY(0);
    }

    90%,
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

.cta-btns {
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
}

/* Utility Styles */
.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), #ffec81);
    color: #000;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.glass-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.story-img-container {
    position: relative;
    padding: 20px;
}

.story-img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 30px;
    transform: translate(-20px, -20px);
    z-index: 0;
    opacity: 0.3;
}

.story-img {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.8);
    width: 100%;
}

/* Contact Section */
.contact-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.contact-card:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

/* Footer Improvements */
.footer-main {
    background-color: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-column h5 {
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-link {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50px;
    padding: 12px 25px;
}

.footer-newsletter .btn {
    border-radius: 50px;
    padding: 12px 30px;
}

.social-circle {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-circle:hover {
    background: var(--primary-color);
    color: #000;
    transform: rotate(360deg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    margin-top: 60px;
}

/* Global Adjustments */
.text-muted {
    color: #bdbdbd !important;
    /* Brighter gray for dark background */
}

.footer-main .text-muted {
    color: #cecece !important;
    /* Even brighter for footer */
}

.contact-card p.text-muted {
    color: #cecece !important;
}

.footer-newsletter .form-control::placeholder {
    color: #999 !important;
}

/* Footer */

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}