
    
    /* --- Global Colors & Fonts --- */
:root {
    --dark-bg: #000000;
    --red-clr:rgba(233, 10, 10, 0.748);
    --primary-text: #e0e0e0;
    --secondary-text: #fff;
    --accent-color: #d4d4d4;
    --heading-font: "Lora", serif;
    --body-font: "Montserrat", sans-serif;
}

body {
    background: #000000e7;
    color: var(--primary-text);
    font-family: var(--body-font);
}

p {
    font-weight: 300;
}


/* --- Topbar --- */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* transparent overlay */
    color: #fff;
    font-size: 0.9rem;
    z-index: 1050; /* below navbar */
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar i {
    color: var(--accent-color);
}

.topbar-contact span {
    display: flex;
    align-items: center;
}

/* --- Navbar --- */
.navbar {
    position: sticky;
    background: var(--dark-bg);
    top: 38px;
    width: 100%;
    padding: 10px 0;
    transition: background-color 0.4s ease-in-out, padding 0.4s ease-in-out;
    z-index: 1060;
    margin-bottom: 30px;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.85) !important;
    backdrop-filter: blur(5px);
}

.navbar-brand {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--primary-text);
}

.navbar .nav-link {
    color: #a0a0a0;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: red;
}

.navbar-toggler {
    border: none;
    padding: 0;
    outline: none !important;
    box-shadow: none !important;
    position: relative;
    width: 30px;
    height: 22px;
}

.hamburger-icon {
    width: 100%;
    height: 100%;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-text);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2) {
    top: 9px;
}

.hamburger-icon span:nth-child(3) {
    top: 18px;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
    opacity: 0;
    left: -30px;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}


@media (max-width: 767.98px) {
    .topbar {
        display: none;
    }

    .navbar {
        top: 0; 
    }
}

.topbar.hidden {
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.topbar.hidden + .navbar {
    top: 0 !important;
    transition: top 0.4s ease;
}
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}
.navbar-nav .nav-link.active {
    color: var(--red-clr);
    font-weight: 700;
}










    .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #000000e2;
        }

        .hero-content {
            position: relative;
            max-width: 1170px;
            z-index: 2;
        }

.kicker {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #f8f9fa;
    opacity: 0.9;
    background: #ff6a00;
    display: inline-block;
    padding: 3px 10px;
}

        #hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .lead {
            font-size: 1.3rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .ctas {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .btn-primary {
            background-color: #007bff;
            color: white;
        }

        .btn-primary:hover {
            background-color: #0056b3;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,123,255,0.3);
        }

        .btn-ghost {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-ghost:hover {
            background-color: white;
            color: #333;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255,255,255,0.2);
        }

        /* Responsive */
        @media (max-width: 768px) {
            #hero-title {
                font-size: 2.5rem;
            }
            
            .lead {
                font-size: 1.1rem;
            }
            
            .ctas {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 200px;
            }
        }

        @media (max-width: 480px) {
            #hero-title {
                font-size: 2rem;
            }
            
            .hero {
                min-height: 500px;
                height: 70vh;
            }
        }