* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(160, 118, 177, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #A076B1;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(160, 118, 177, 0.6));
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 25px rgba(160, 118, 177, 1));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    position: relative;
}

.nav-links a:hover {
    color: #A076B1;
}

.nav-links a.active {
    color: #A076B1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #A076B1, #C89BD8);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

main {
    margin-top: 80px;
}

/* Updated Hero Section with Video Background */
.hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 2rem 0;
    color: white;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease;
    color: #ffffff;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.98;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.6);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #A076B1 0%, #8A65A0 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    box-shadow: 0 10px 30px rgba(160, 118, 177, 0.4), 0 0 20px rgba(0, 0, 0, 0.5);
    text-shadow: none;
}

.cta-button:hover {
    background: linear-gradient(135deg, #8A65A0 0%, #7A5B8E 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(160, 118, 177, 0.6), 0 0 25px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.services {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(20px);
    padding: 4rem 0;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(160, 118, 177, 0.2);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #f8fafc;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background: rgba(22, 33, 62, 0.6);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(160, 118, 177, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(160, 118, 177, 0.3);
    border-color: rgba(160, 118, 177, 0.5);
    background: rgba(22, 33, 62, 0.8);
}

.service-content {
    flex: 1;
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
}

.service-card:hover .service-content {
    transform: translateX(-10px);
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.service-card p {
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: #cbd5e1;
    margin-bottom: 0.8rem;
    padding-left: 20px;
    position: relative;
    font-size: 1rem;
}

.service-features li:before {
    content: "•";
    color: #A076B1;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.service-image-container {
    flex: 0 0 400px;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.learn-more-btn {
    display: inline-block;
    background: rgba(160, 118, 177, 0.15);
    color: #A076B1;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
    border: 1px solid rgba(160, 118, 177, 0.4);
    transition: all 0.3s ease;
    font-weight: 500;
}

.learn-more-btn:hover {
    background: rgba(160, 118, 177, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(160, 118, 177, 0.3);
    color: #C89BD8;
}

.about {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(20px);
    padding: 4rem 0;
    margin: 2rem 0;
    border-radius: 20px;
    border: 1px solid rgba(160, 118, 177, 0.2);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #f8fafc;
}

.about p {
    text-align: center;
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

footer {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    color: #cbd5e1;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(160, 118, 177, 0.3);
}

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

/* Responsive Design for Video Hero Section */
@media (max-width: 768px) {
    .hero {
        height: 40vh;
        padding: 1.5rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 35vh;
        padding: 1rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}