/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* Container */
.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #181818;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: padding 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: rgb(29, 78, 216);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    margin: 0;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgb(29, 78, 216);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(29, 78, 216);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    transition: all 0.3s ease;
    background-color: #333;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* New Hero Section with Centered Medium Image */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    padding: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(95deg, #000000, #676565, #211f28, #2C3333);
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
    margin-bottom: 100px;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    /* Cyberpunk Border */
    border: 0px solid #00f0ff;
    animation: cyberGlow 3s ease-in-out infinite alternate;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    border-radius: 4px;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0px);
}

@keyframes cyberGlow {
    0% {
        border-color: #0094c5;
     
     
    }
    33% {

        
    }
    66% {
        border-color: #00ff88;
     
       
    }
    100% {
        border-color: #ff0080;
   
        
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.3) 0%, rgba(29, 78, 216, 0.1) 100%);
    border-radius: 24px;
    
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    color: white;
    z-index: 3;
    opacity: 0;
    text-align: center;
    transition: all 0.8s ease;
    width: 90%;
}

.hero-content.active {
    opacity: 1;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-btn {
    margin-top: 20px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 228px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    background-color: rgb(29, 78, 216);
    color: white;
    border: 2px solid rgb(255, 255, 255);
    box-shadow: 0 5px 15px rgba(29, 78, 216, 0.3);
}

.hero-btn:hover {
    background-color: rgb(26, 70, 194);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 78, 216, 0.4);
}

.slider-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Background Pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(29, 78, 216, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(29, 78, 216, 0.05) 0%, transparent 50%);
    z-index: 1;
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 0;
    }

    .hero {
        padding: 120px;
    }

    .hero-slider {
        width: 80%;
        height: 65vh;
    }


        .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.1rem);
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgb(51, 49, 49);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1.5rem 0;
    }

    .hero {
        padding: 100px 30px;
    }

    .hero-slider {
        width: 90%;
        height: 60vh;
    }

    .hero-content {
        width: 95%;
    }


        .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.1rem);
    }
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
    .navbar {
        padding: 0.875rem 0;
    }

    .logo a {
        font-size: 1.5rem;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero-slider {
        width: 95%;
        height: 55vh;
        border-radius: 20px;
    }

    .slide {
        border-radius: 20px;
    }

    .slider-indicators {
        bottom: 20px;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
        .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.1rem);
    }
}

/* Extra Small Devices (max-width: 360px) */
@media (max-width: 360px) {
    .hero {
        padding: 70px 15px;
    }

    .hero-slider {
        height: 50vh;
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.1rem);
    }
}