/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* scroll-snap removed for smoother Lenis scroll */
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Grid pattern overlay for tech feel */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   APP CONTAINER
   ============================================ */
.app-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* ============================================
   SIDEBAR NAVIGATION
   ============================================ */
.sidebar {
    width: 15%;
    min-width: 200px;
    background: #000000;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    height: 100vh;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.logo-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 60px;
    display: block;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.logo-image:hover {
    filter: brightness(1.2);
}

.logo h1 {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 6px;
    color: #ffffff;
    margin-bottom: 60px;
    text-transform: uppercase;
    font-family: 'Inter', monospace;
    position: relative;
    display: none;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 1px;
    background: #ffffff;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
}

.nav-item::before {
    content: '';
    position: absolute;
    left: -15px;
    width: 2px;
    height: 0;
    background: #ffffff;
    transition: height 0.2s ease;
}

.nav-item:hover {
    color: #ffffff;
    padding-left: 5px;
}

.nav-item:hover::before {
    height: 100%;
}

.nav-item.active {
    color: #ffffff;
    padding-left: 5px;
}

.nav-item.active::before {
    height: 100%;
}

.nav-indicator {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-item.active .nav-indicator {
    opacity: 1;
}

.sidebar-footer {
    margin-top: auto;
}

.sidebar-lang {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 5px;
}

.location {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    transition: all 0.2s ease;
}

.social-icon:hover {
    color: #ffffff;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
.main-content {
    width: 85%;
    margin-left: 15%;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

/* ============================================
   VIDEO BACKGROUND
   ============================================ */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: #000000;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.video-background.active {
    opacity: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: grayscale(20%) contrast(110%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Scanline effect */
.video-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        transparent 1px,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 3px
    );
    pointer-events: none;
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

/* ============================================
   PARTICLE BACKGROUND
   ============================================ */
.particle-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease;
    background: transparent;
}

.particle-background.active {
    opacity: 1;
}

#particleCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.particle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* ============================================
   CONTENT WRAPPER
   ============================================ */
.content-wrapper {
    position: relative;
    z-index: 10;
    padding: 80px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ============================================
   PAGE SECTIONS
   ============================================ */
.page-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.page-section.active {
    opacity: 1;
    transform: translateY(0);
}

.page-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-section-wrapper {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   CTA BUTTONS
   ============================================ */
.cta-button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 28px;
    font-size: 12px;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: inherit;
    text-transform: uppercase;
    font-weight: 300;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-button:hover::before {
    left: 0;
}

.cta-button.top-right {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 20;
}

.cta-button.primary {
    margin-top: 30px;
    padding: 16px 32px;
    font-size: 16px;
}

.cta-button .arrow {
    font-size: 20px;
}

/* ============================================
   HERO SECTION (Home Page)
   ============================================ */
.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 60%;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.main-heading {
    font-size: 80px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: 3px;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.15);
}

.main-heading .line {
    display: block;
}

.subheading {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2), 0 0 15px rgba(255, 255, 255, 0.1);
}

.experience-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.2), 0 0 12px rgba(255, 255, 255, 0.1);
}

.experience-badge::before,
.experience-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.experience-badge::before {
    left: -12px;
}

.experience-badge::after {
    right: -12px;
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.chevron {
    font-size: 20px;
    animation: bounce 2s infinite;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 60px 40px;
}

.about-main {
    width: 100%;
}

.about-card.large {
    max-width: 100%;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mission-vision-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.5),
        inset 0 -1px 1px rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.7),
        transparent
    );
    filter: blur(1px);
}

.mission-vision-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
    pointer-events: none;
    border-radius: 20px;
}

.mission-vision-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.mission-vision-card:hover::before,
.mission-vision-card:hover::after {
    opacity: 0;
}

.mission-vision-card:hover .card-content {
    transform: translateY(-5px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-vision-card:hover .card-header {
    transform: translateY(-5px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.values-section {
    margin-top: 40px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item {
    padding: 24px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.4),
        inset 0 -1px 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0.3)
    );
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.value-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%
    );
    pointer-events: none;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-item:hover {
    transform: translateX(5px) translateY(-12px);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.value-item:hover .value-title,
.value-item:hover .value-text {
    transform: translateY(-3px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-title,
.value-text {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-item:hover::before {
    transform: scaleY(1);
}

.value-item:hover::after {
    opacity: 1;
}

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

.value-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.25), 0 0 15px rgba(255, 255, 255, 0.12);
}

.value-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.2), 0 0 12px rgba(255, 255, 255, 0.1);
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.play-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 14px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.about-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.4),
        inset 0 -1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.6),
        transparent
    );
    filter: blur(1px);
    transition: opacity 0.4s ease;
}

.about-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    pointer-events: none;
    border-radius: 24px;
    transition: opacity 0.4s ease;
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-15px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.about-card:hover::before,
.about-card:hover::after {
    opacity: 0;
}

.about-card:hover .card-content {
    transform: translateY(-5px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover .card-header {
    transform: translateY(-5px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-content {
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.card-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.2), 0 0 12px rgba(255, 255, 255, 0.1);
}

.card-logo {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.4),
        inset 0 -1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.card-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 50%
    );
    pointer-events: none;
    border-radius: 10px;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.card-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.2), 0 0 12px rgba(255, 255, 255, 0.1);
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-wrapper {
    padding: 80px 60px;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-main-title {
    font-size: 64px;
    font-weight: 200;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.15);
}

.services-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 1px;
    background: #ffffff;
}

.services-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.2), 0 0 12px rgba(255, 255, 255, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px;
    backdrop-filter: blur(20px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.service-card-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover .service-card-bg {
    opacity: 1;
}

.service-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    z-index: 1;
}

.service-icon {
    font-size: 48px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover .service-icon-glow {
    opacity: 1;
}

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

.service-number {
    display: inline-block;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 4px;
    margin-bottom: 20px;
    padding: 4px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    background: transparent;
    text-transform: uppercase;
}

.service-title {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 1px;
    line-height: 1.5;
    color: #ffffff;
    transition: all 0.2s ease;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.25), 0 0 15px rgba(255, 255, 255, 0.12);
}

.service-card:hover .service-title {
    color: #ffffff;
    letter-spacing: 1.5px;
}

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

.service-list li {
    font-size: 15px;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.2), 0 0 12px rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: color 0.3s ease, transform 0.3s ease;
    padding-left: 0;
}

.service-list li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.list-icon {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    transition: transform 0.2s ease, color 0.2s ease;
    display: inline-block;
    margin-top: 2px;
    font-size: 12px;
}

.service-list li:hover .list-icon {
    transform: translateX(3px);
    color: rgba(255, 255, 255, 1);
}

.why-choose-section {
    margin-top: 60px;
    width: 100%;
}

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

.why-list li {
    font-size: 16px;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.2), 0 0 12px rgba(255, 255, 255, 0.1);
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.video-player-section {
    width: 100%;
    margin-top: 40px;
}

.video-player {
    width: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-player video {
    width: 100%;
    display: block;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 100vh;
    padding: 80px 60px;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-heading {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.15);
}

.contact-heading .line {
    display: block;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: opacity 0.3s ease;
}

.email-link:hover {
    opacity: 0.7;
}

.copy-icon {
    font-size: 16px;
    opacity: 0.6;
}

.contact-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.glowing-logo {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5)) 
            drop-shadow(0 0 40px rgba(255, 255, 255, 0.3))
            drop-shadow(0 0 60px rgba(255, 255, 255, 0.2));
    animation: glow 2s ease-in-out infinite alternate;
}

.glowing-logo svg {
    width: 100%;
    height: 100%;
    max-width: 120px;
    max-height: 120px;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    padding: 40px;
    backdrop-filter: blur(20px);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.play-icon-small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.form-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.25), 0 0 15px rgba(255, 255, 255, 0.12);
}

.form-section {
    margin-bottom: 20px;
}

.form-section-label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.2), 0 0 12px rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.form-inputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.2s ease;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 25px;
    line-height: 1.6;
}

.form-submit {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 14px 28px;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    width: 100%;
    justify-content: center;
}

.form-submit:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.submit-arrow {
    font-size: 18px;
}

.contact-footer {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.lang-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.lang-link:hover::after,
.lang-link.active::after {
    width: 100%;
}

.lang-link:hover,
.lang-link.active {
    color: #ffffff;
}

.lang-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.5),
            0 0 40px rgba(255, 255, 255, 0.3),
            0 0 60px rgba(255, 255, 255, 0.2);
    }
    to {
        text-shadow: 
            0 0 30px rgba(255, 255, 255, 0.7),
            0 0 60px rgba(255, 255, 255, 0.5),
            0 0 90px rgba(255, 255, 255, 0.3);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .main-heading {
        font-size: 56px;
    }
    
    .contact-heading {
        font-size: 48px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .sidebar {
        width: 250px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        width: 100%;
        margin-left: 0;
    }
    
    .about-wrapper {
        padding: 40px 30px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-main-title {
        font-size: 42px;
    }
    
    .services-wrapper {
        padding: 40px 30px;
    }
    
    .services-header {
        margin-bottom: 50px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }
    
    .contact-center {
        order: -1;
    }
    
    .glowing-logo {
        width: 150px;
        height: 150px;
        font-size: 80px;
    }
    
    .hero-section {
        max-width: 100%;
    }
    
    .main-heading {
        font-size: 42px;
    }
    
    .contact-heading {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .content-wrapper {
        padding: 40px 30px;
    }
    
    .main-heading {
        font-size: 32px;
    }
    
    .contact-heading {
        font-size: 28px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .cta-button.top-right {
        top: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 12px;
    }
}

