* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #f0f0f0;
    line-height: 1.6;
}

/* Header & Navigation */
/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 20, 0.9);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.w3-bar {
    padding: 12px 5%;
}

.w3-bar-item {
    margin: 0 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.w3-bar-item:hover {
    background: #e94560 !important;
    transform: translateY(-2px);
}

/* Hero Section with Slideshow */
.hero-slideshow {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
}

.slide-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
}

.slide-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
}

.slide-4 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
}

.w3-display-middle {
    text-align: center;
    width: 80%;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ff6b6b, #ffa502, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 300% 300%;
    animation: gradient 8s ease infinite;
}

h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
}

p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.85;
}

.w3-button {
    background: #e94560;
    border: none;
    padding: 15px 40px !important;
    font-size: 1.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.w3-button:hover {
    background: #ff6b6b !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
}

/* Content Section */
.content-section {
    padding: 100px 5%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.w3-row {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    position: relative;
    font-size: 2.5rem;
    margin-bottom: 50px;
    padding-bottom: 15px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #1a1a2e, #e94560, #1a1a2e);
    border-radius: 2px;
}

.card {
    background: rgba(26, 26, 46, 0.7);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(233, 69, 96, 0.3);
    border-color: rgba(233, 69, 96, 0.3);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
}

.card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffa502;
}

.card p {
    margin-bottom: 15px;
    font-size: 1rem;
    opacity: 0.8;
}

.w3-tag {
    background: #e94560;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 5px;
    margin-bottom: 10px;
    display: inline-block;
}

/* Footer */
footer {
    background: rgba(10, 10, 20, 0.95);
    padding: 50px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.social-icons {
    margin: 30px 0;
}

.social-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 15px;
    position: relative;
    transition: all 0.3s ease;
}

.social-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #fff;
}

.social-icon:hover {
    background: #e94560;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 3.5rem;
    }
    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .w3-bar-item {
        padding: 10px 15px;
        margin: 5px;
    }
    h1 {
        font-size: 2.8rem;
    }
    p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-slideshow {
        height: 90vh;
    }
    h1 {
        font-size: 2.2rem;
    }
    h3 {
        font-size: 1.2rem;
    }
    .w3-button {
        padding: 12px 30px !important;
        font-size: 1rem;
    }
}