/* Modern Hero Section Styling */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background-color: var(--dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(0, 153, 255, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.hero-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    background-color: var(--primary);
    bottom: 5px;
    left: 0;
    z-index: -1;
    opacity: 0.3;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.hero-btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background-color: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}

.hero-btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
}

.hero-btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-btn-outline:hover {
    background-color: #fff;
    color: var(--dark);
}

/* Stats Card */
.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.hero-stats:hover {
    transform: translateY(-10px);
}

.stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stats-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #fff;
}

.stats-item:last-child {
    margin-bottom: 0;
}

.stats-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.5rem;
}

.stats-text {
    flex: 1;
}

.stats-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.stats-value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Animated elements */
.fade-in-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.fade-in-up-delay-1 {
    animation-delay: 0.2s;
}

.fade-in-up-delay-2 {
    animation-delay: 0.4s;
}

.fade-in-up-delay-3 {
    animation-delay: 0.6s;
}

.fade-in-up-delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator removed */

/* Navbar Styling */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Minimized navbar style */
.navbar.navbar-minimized {
    background-color: rgba(26, 26, 26, 0.2) !important; /* Very transparent background */
    max-height: 60px;
}

.navbar.navbar-minimized .navbar-brand h2 {
    font-size: 1.3rem;
}

.navbar.navbar-minimized .nav-item {
    font-size: 14px;
}

.navbar.navbar-minimized .nav-link {
    color: var(--gray-600) !important;
}

.navbar.navbar-minimized .nav-link:hover,
.navbar.navbar-minimized .nav-link.active {
    color: var(--primary) !important;
}

.navbar.scrolled {
    background-color: var(--light) !important; /* Fully opaque when scrolled */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2) !important;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
    text-decoration: none;
}

.navbar-brand h2 {
    color: var(--primary);
    transition: all 0.3s ease;
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }
}
