/* ==================== Novahrm Deeptech Services - Modern Tech Design ==================== */
/* ==================== Global Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==================== Loading Screen ==================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeOutLoading 0.8s ease-in-out 2.2s forwards;
}

.loading-screen.hide {
    display: none;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.loading-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 40px rgba(0, 150, 255, 0.45);
    animation: loadingPulse 1.5s ease-in-out infinite, loadingFloat 3s ease-in-out infinite;
}

.loading-logo-sphere {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0096ff, #00d4ff);
    box-shadow: 0 0 50px rgba(0, 150, 255, 0.6), inset 0 0 50px rgba(0, 212, 255, 0.3);
    animation: loadingPulse 1.5s ease-in-out infinite, loadingFloat 3s ease-in-out infinite;
    position: relative;
}

.loading-logo-sphere::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent);
    animation: loadingShine 2s ease-in-out infinite;
}

.loading-text {
    font-size: 32px;
    font-weight: 700;
    color: #f0f0f0;
    letter-spacing: 2px;
    animation: loadingTextFade 1.5s ease-in-out infinite;
}

.loading-dots {
    display: flex;
    gap: 10px;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00d4ff;
    animation: loadingBounce 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loadingPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 50px rgba(0, 150, 255, 0.6), inset 0 0 50px rgba(0, 212, 255, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 80px rgba(0, 150, 255, 0.8), inset 0 0 80px rgba(0, 212, 255, 0.5);
    }
}

@keyframes loadingFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes loadingShine {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loadingTextFade {
    0%, 100% {
        opacity: 0.6;
        color: #f0f0f0;
    }
    50% {
        opacity: 1;
        color: #00d4ff;
    }
}

@keyframes loadingBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

@keyframes fadeOutLoading {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f0f0f0;
    background-color: #0a0e27;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    background-color: #0a0e27;
}

/* ==================== Animated Background ==================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 150, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 200, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    z-index: -1;
    pointer-events: none;
}

/* ==================== Header/Navigation ==================== */
header {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 70px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85), rgba(0, 150, 255, 0.05));
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 999;
    border-bottom: 1px solid rgba(0, 150, 255, 0.2);
}

.left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-sphere {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0096ff, #00d4ff);
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.8), 0 0 60px rgba(0, 212, 255, 0.4);
    animation: sphere-pulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.logo-sphere::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
}

@keyframes sphere-pulse {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(0, 150, 255, 0.8), 0 0 60px rgba(0, 212, 255, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 50px rgba(0, 150, 255, 1), 0 0 100px rgba(0, 212, 255, 0.6);
        transform: scale(1.05);
    }
}

.left h2 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #00d4ff, #ffffff);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0096ff, #00d4ff);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #00d4ff;
}

.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #00d4ff;
    transition: all 0.3s ease;
}

.menu-icon:hover {
    transform: scale(1.1);
}

/* ==================== Sidebar ==================== */
.sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(0, 150, 255, 0.2);
    z-index: 998;
    transition: left 0.3s ease;
    padding-top: 80px;
}

.sidebar.open-sidebar {
    left: 0;
}

.sidebar.close-sidebar {
    left: -300px;
}

.close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 24px;
    color: #00d4ff;
}

.sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 30px;
}

.sidebar ul a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar ul a:hover {
    color: #00d4ff;
    padding-left: 10px;
}

/* ==================== Hero Section ==================== */
.hero {
    width: 100%;
    min-height: 100vh;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(0, 150, 255, 0.15)), url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1200&h=800&fit=crop') no-repeat center/cover;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 150, 255, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    text-align: center;
    max-width: 700px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 150, 255, 0.15);
    border: 1px solid rgba(0, 150, 255, 0.5);
    border-radius: 50px;
    color: #00d4ff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(90deg, #0096ff, #00d4ff, #0096ff);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0%; }
    50% { background-position: 100%; }
}

.hero p {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    padding: 14px 30px;
    background: linear-gradient(135deg, #0096ff, #00d4ff);
    color: #0a0e27;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 150, 255, 0.6);
}

.btn-secondary {
    padding: 14px 30px;
    background: transparent;
    color: #00d4ff;
    border: 1.5px solid #00d4ff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: rgba(0, 150, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.3);
}

.hero-image-box {
    display: none;
}

.hero-image-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 150, 255, 0.05);
    border: 2px solid rgba(0, 150, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 150, 255, 0.15), inset 0 0 40px rgba(0, 150, 255, 0.05);
}

.hero-image-content {
    width: 100%;
    height: 100%;
    position: relative;
    animation: zoom-animation 8s ease-in-out infinite;
}

.hero-image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes zoom-animation {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.zoom-animation {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
    border-radius: 20px;
    animation: pulse-effect 3s ease-in-out infinite;
}

@keyframes pulse-effect {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #00d4ff;
    cursor: pointer;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-down span {
    font-size: 12px;
    font-weight: 600;
}

.scroll-down i {
    font-size: 24px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ==================== Section Header ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 16px;
    color: #b0b0b0;
    max-width: 500px;
    margin: 0 auto;
}

/* ==================== Services Section ==================== */
.services {
    width: 100%;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.service-card {
    padding: 40px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(0, 150, 255, 0.05));
    border: 1px solid rgba(0, 150, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 212, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.2), inset 0 0 30px rgba(0, 150, 255, 0.05);
    transform: translateY(-10px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 40px;
    color: #00d4ff;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.learn-more {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.learn-more:hover {
    transform: translateX(5px);
}

/* ==================== Pricing Section ==================== */
.pricing {
    width: 100%;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.pricing-card {
    padding: 40px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(0, 150, 255, 0.03));
    border: 1px solid rgba(0, 150, 255, 0.2);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 40px rgba(0, 150, 255, 0.2);
    transform: translateY(-10px);
}

.pricing-card.popular {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 40px rgba(0, 150, 255, 0.3);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: -40px;
    background: linear-gradient(135deg, #0096ff, #00d4ff);
    color: #0a0e27;
    padding: 8px 60px;
    font-weight: 700;
    font-size: 12px;
    transform: rotate(45deg);
}

.price-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    color: #00d4ff;
}

.amount {
    font-size: 36px;
    font-weight: 700;
}

.onwards {
    font-size: 14px;
    color: #b0b0b0;
}

.price-based {
    margin-bottom: 30px;
}

.price-based p {
    font-size: 18px;
    color: #00d4ff;
    font-weight: 600;
    text-align: center;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
}

.price-features li {
    padding: 10px 0;
    color: #b0b0b0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features i {
    color: #00d4ff;
}

.price-cta {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #0096ff, #00d4ff);
    color: #0a0e27;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.4);
}

.pricing-card-special {
    padding: 40px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.6), transparent);
    border: 2px dashed rgba(0, 150, 255, 0.3);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pricing-card-special h3 {
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-card-special i {
    color: #00d4ff;
}

.pricing-card-special p {
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 20px;
}

.price-cta-secondary {
    padding: 12px 30px;
    background: transparent;
    color: #00d4ff;
    border: 1.5px solid #00d4ff;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-cta-secondary:hover {
    background: rgba(0, 150, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.3);
}

/* ==================== Our Work Section ==================== */
.our-work {
    width: 100%;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.work-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.work-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-card:hover .work-image img {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.8), rgba(0, 212, 255, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.work-info {
    text-align: center;
    color: #fff;
}

.work-info h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.work-info p {
    font-size: 14px;
    opacity: 0.9;
}

/* ==================== Why Choose Us Section ==================== */
.why-choose {
    width: 100%;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.why-card {
    padding: 40px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.7), rgba(0, 150, 255, 0.02));
    border: 1px solid rgba(0, 150, 255, 0.2);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.2);
    transform: translateY(-10px);
}

.why-icon {
    font-size: 40px;
    color: #00d4ff;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.why-card p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== How We Work Section ==================== */
.how-we-work {
    width: 100%;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-timeline {
    width: 100%;
    max-width: 1000px;
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0s; }
.process-step:nth-child(3) { animation-delay: 0.2s; }
.process-step:nth-child(5) { animation-delay: 0.4s; }
.process-step:nth-child(7) { animation-delay: 0.6s; }
.process-step:nth-child(9) { animation-delay: 0.8s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-circle {
    min-width: 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0096ff, #00d4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #0a0e27;
    position: relative;
    flex-direction: column;
    box-shadow: 0 0 40px rgba(0, 150, 255, 0.3);
}

.step-circle span {
    font-size: 32px;
}

.step-circle i {
    font-size: 32px;
    opacity: 0;
    position: absolute;
}

.step-circle:hover span {
    opacity: 0;
}

.step-circle:hover i {
    opacity: 1;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-content p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

.process-connector {
    width: 5px;
    height: 60px;
    background: linear-gradient(180deg, #0096ff, #00d4ff);
    margin: 0 37.5px 60px;
    border-radius: 5px;
}

/* ==================== Contact Section ==================== */
.contact {
    width: 100%;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    width: 100%;
    max-width: 1200px;
}

.contact-form-box {
    padding: 40px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(0, 150, 255, 0.05));
    border: 1px solid rgba(0, 150, 255, 0.2);
    border-radius: 15px;
}

.contact-form-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 150, 255, 0.2);
    border-radius: 8px;
    color: #f0f0f0;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #5a5a5a;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 150, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.2);
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0096ff, #00d4ff);
    color: #0a0e27;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 150, 255, 0.4);
}

.contact-info {
    padding: 40px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(0, 150, 255, 0.05));
    border: 1px solid rgba(0, 150, 255, 0.2);
    border-radius: 15px;
}

.contact-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.2), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #00d4ff;
    flex-shrink: 0;
}

.info-label {
    font-size: 12px;
    color: #00d4ff;
    font-weight: 600;
    text-transform: uppercase;
}

.info-value {
    font-size: 14px;
    color: #b0b0b0;
}

.whatsapp-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 150, 255, 0.2);
}

.whatsapp-label {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #0096ff, #00d4ff);
    color: #0a0e27;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.4);
}

/* ==================== Footer ==================== */
.footer {
    width: 100%;
    background: linear-gradient(135deg, #0a0e27, #1a1f3a);
    border-top: 1px solid rgba(0, 150, 255, 0.2);
    padding: 60px 30px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-section ul a:hover {
    color: #00d4ff;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 150, 255, 0.1);
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(0, 150, 255, 0.3);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 150, 255, 0.1);
    color: #5a5a5a;
    font-size: 14px;
}

/* ==================== WhatsApp Float Button ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0096ff, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #0a0e27;
    text-decoration: none;
    box-shadow: 0 0 40px rgba(0, 150, 255, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
    animation: pulse-float 2s ease-in-out infinite;
}

@keyframes pulse-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(0, 150, 255, 0.6);
    animation: none;
}

/* ==================== Responsive Design ==================== */
@media(max-width: 768px) {
    header {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .menu-icon {
        display: flex;
    }

    .hero {
        flex-direction: column;
        min-height: auto;
        padding: 40px 20px;
        margin-top: 70px;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-image-box {
        height: 300px;
    }

    .badge {
        font-size: 12px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .services-grid,
    .pricing-grid,
    .work-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-step {
        gap: 20px;
    }

    .footer-content {
        gap: 20px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media(max-width: 480px) {
    header {
        padding: 0 15px;
        height: 60px;
    }

    .logo-sphere {
        width: 32px;
        height: 32px;
    }

    .left h2 {
        font-size: 18px;
    }

    .hero {
        padding: 30px 15px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 13px;
    }

    .hero-image-box {
        height: 250px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

    .service-card,
    .pricing-card,
    .why-card,
    .contact-form-box,
    .contact-info {
        padding: 25px;
    }

    .step-circle {
        min-width: 60px;
        width: 60px;
        height: 60px;
    }

    .process-connector {
        height: 40px;
        margin: 0 27.5px 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ==================== Animations ==================== */
[data-aos] {
    opacity: 0;
}

[data-aos].aos-animate {
    opacity: 1;
}
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f0f0f0;
    background-color: #0a0015;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    background-color: #050010;
}

/* ==================== Background Video ==================== */
.back-vid {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: overlay;
    opacity: 0.3;
}

/* ==================== Header/Navigation ==================== */
header {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 70px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85), rgba(0, 150, 255, 0.05));
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 999;
    border-bottom: 1px solid rgba(0, 150, 255, 0.2);
}

.left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0096ff, #00d4ff);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.6);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 150, 255, 0.6); }
    50% { box-shadow: 0 0 40px rgba(0, 150, 255, 0.8); }
}

.left h2 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #0096ff, #00d4ff, #0096ff);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0%; }
    50% { background-position: 100%; }
}

header ul {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    list-style: none;
}

header ul a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

header ul a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0096ff, #00d4ff);
    transition: width 0.3s ease;
}

header ul a:hover::after {
    width: 100%;
}

header ul a:hover {
    color: #00d4ff;
}

.box-icons {
    display: flex;
    gap: 15px;
}

.box-icons p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    width: 35px;
    height: 35px;
    border: 2px solid #0096ff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #0096ff;
}

.box-icons p:hover {
    background-color: #0096ff;
    color: white;
    box-shadow: 0 0 15px #0096ff;
    transform: scale(1.1);
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #0096ff;
}

/* ==================== Sidebar ==================== */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 250px;
    background: linear-gradient(135deg, #0a0e27, #1a1f3a);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding-top: 80px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-right: 1px solid rgba(0, 150, 255, 0.2);
}

.sidebar.open-sidebar {
    transform: translateX(0);
}

.sidebar.close-sidebar {
    transform: translateX(-100%);
}

.sidebar .close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #0096ff;
}

.sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style: none;
    padding: 0 20px;
}

.sidebar ul a {
    text-decoration: none;
    color: #f0f0f0;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.sidebar ul a:hover {
    color: #00d4ff;
    padding-left: 10px;
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    margin-top: 70px;
    gap: 40px;
}

.hero-info {
    flex: 1;
    max-width: 600px;
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-info-title {
    color: #00d4ff;
    padding: 10px 15px;
    border-radius: 50px;
    border: 1px solid rgba(0, 150, 255, 0.5);
    width: fit-content;
    background-color: rgba(0, 150, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 150, 255, 0.3);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.hero-info h1 {
    font-size: 60px;
    max-width: 600px;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.hero-info p {
    max-width: 550px;
    line-height: 28px;
    margin-bottom: 40px;
    font-size: 18px;
    color: #d0d0d0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid #0096ff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #0096ff, #00d4ff);
    color: white;
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.6);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: #0096ff;
}

.btn-secondary:hover {
    background: rgba(0, 150, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.4);
    transform: translateY(-3px);
    text-decoration: none;
}

.hero-image-box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-placeholder {
    width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 150, 255, 0.15), inset 0 0 40px rgba(0, 150, 255, 0.05);
    border: 2px solid rgba(0, 150, 255, 0.2);
    position: relative;
}

.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image-placeholder:hover img {
    transform: scale(1.05);
}

/* ==================== Scroll Down Animation ==================== */
.scroll-down {
    height: 50px;
    width: 30px;
    border: 2px solid #0096ff;
    position: absolute;
    left: 50%;
    bottom: 50px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 150, 255, 0.4);
}

.scroll-down::before,
.scroll-down::after {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    height: 10px;
    width: 10px;
    transform: translate(-50%, -100%) rotate(45deg);
    border: 2px solid #0096ff;
    border-top: transparent;
    border-left: transparent;
    animation: scroll-down 2s ease-in-out infinite;
}

.scroll-down::before {
    top: 30%;
    animation-delay: 0.5s;
}

@keyframes scroll-down {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        top: 90%;
        opacity: 0;
    }
}

/* ==================== Gradient Text ==================== */
.gradient {
    background: linear-gradient(90deg, #0096ff, #00d4ff, #00ffff);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 3s ease infinite;
}

@keyframes gradient-text {
    0%, 100% { background-position: 0%; }
    50% { background-position: 100%; }
}

/* ==================== Section Title ==================== */
.section-title {
    font-size: 45px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #00d4ff, #0096ff, #00d4ff);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 3s ease infinite;
}

/* ==================== Who We Are Section ==================== */
.who-we-are {
    width: 90%;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.who-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.3);
    border: 2px solid rgba(0, 150, 255, 0.2);
}

.who-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.who-image:hover img {
    transform: scale(1.05);
}

.who-text h2 {
    font-size: 35px;
    margin-bottom: 20px;
    color: #00d4ff;
}

.who-text p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
    color: #d0d0d0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.1), rgba(0, 212, 255, 0.05));
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 150, 255, 0.2);
}

.stat-item h3 {
    font-size: 35px;
    color: #00d4ff;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    color: #b0b0b0;
}

/* ==================== Our Mission Section ==================== */
.our-mission {
    width: 90%;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.mission-card {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.1), rgba(0, 212, 255, 0.05));
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 150, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.3);
    border-color: rgba(0, 150, 255, 0.5);
}

.mission-icon {
    font-size: 50px;
    color: #00d4ff;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 22px;
    color: #00d4ff;
    margin-bottom: 15px;
}

.mission-card p {
    font-size: 15px;
    color: #d0d0d0;
    line-height: 24px;
}

/* ==================== Gallery Section ==================== */
.gallery-section {
    width: 90%;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    width: 100%;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.2);
    border: 1px solid rgba(0, 150, 255, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 150, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

/* ==================== Demo Video Section ==================== */
.demo-video-section {
    width: 90%;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-container {
    width: 100%;
    max-width: 900px;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.1), rgba(0, 212, 255, 0.05));
    border: 2px solid rgba(0, 150, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.2);
}

.video-container video {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

.video-info p {
    text-align: center;
    font-size: 16px;
    color: #d0d0d0;
    line-height: 24px;
}

/* ==================== Why Choose Us Section ==================== */
.why-choose-us {
    width: 90%;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.why-card {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.15), rgba(0, 212, 255, 0.08));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 150, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 0 40px rgba(0, 150, 255, 0.4);
    border-color: #0096ff;
}

.why-icon {
    font-size: 55px;
    color: #00d4ff;
    margin-bottom: 25px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.why-card h3 {
    font-size: 22px;
    color: #00d4ff;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 15px;
    color: #d0d0d0;
    line-height: 24px;
}

/* ==================== Courses Section ==================== */
.courses-section {
    width: 90%;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
}

.course-card {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.1), rgba(0, 212, 255, 0.05));
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(0, 150, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 0 40px rgba(0, 150, 255, 0.4);
    border-color: #0096ff;
}

.course-card.featured {
    border: 2px solid #0096ff;
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.3);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -40px;
    background: linear-gradient(135deg, #0096ff, #00d4ff);
    color: white;
    padding: 8px 50px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.course-header h3 {
    font-size: 22px;
    color: #00d4ff;
}

.course-duration {
    background: rgba(0, 150, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    color: #00d4ff;
}

.course-price {
    font-size: 35px;
    color: #00d4ff;
    font-weight: 700;
    margin-bottom: 30px;
}

.course-features {
    list-style: none;
    margin-bottom: 30px;
}

.course-features li {
    padding: 12px 0;
    font-size: 15px;
    color: #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.course-features i {
    color: #00d4ff;
    font-size: 18px;
}

.enroll-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #0096ff, #00d4ff);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.3);
}

.enroll-btn:hover {
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.5);
    transform: scale(1.05);
}

/* ==================== Booking Section ==================== */
.booking-section {
    width: 90%;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.booking-box {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.1), rgba(0, 212, 255, 0.05));
    padding: 50px 40px;
    border-radius: 20px;
    border: 2px solid rgba(0, 150, 255, 0.2);
}

.booking-box h2 {
    font-size: 28px;
    color: #00d4ff;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #0096ff;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 8px;
    color: #f0f0f0;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: #0096ff;
    box-shadow: 0 0 10px rgba(0, 150, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b0b0;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #0096ff, #00d4ff);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.5);
    transform: translateY(-3px);
}

/* ==================== Services Section ==================== */
.services-section {
    width: 90%;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.service-card {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.1), rgba(0, 212, 255, 0.05));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 150, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 0 40px rgba(0, 150, 255, 0.4);
    border-color: #0096ff;
}

.service-icon {
    font-size: 50px;
    color: #00d4ff;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: #00d4ff;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: #d0d0d0;
    line-height: 24px;
    margin-bottom: 20px;
}

.service-price {
    font-size: 18px;
    color: #00d4ff;
    font-weight: 700;
}

/* ==================== Reviews Section ==================== */
.google-reviews {
    width: 90%;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    width: 100%;
}

.review-card {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.15), rgba(0, 212, 255, 0.08));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 150, 255, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.3);
}

.review-stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 15px;
}

.review-card p {
    font-size: 15px;
    color: #d0d0d0;
    line-height: 24px;
    margin-bottom: 15px;
}

.reviewer-name {
    color: #00d4ff;
    font-weight: 600;
    margin: 0 !important;
}

.review-card small {
    color: #909090;
    font-size: 12px;
}

/* ==================== Testimonials Section ==================== */
.testimonials-section {
    width: 90%;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.1), rgba(0, 212, 255, 0.05));
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 150, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.3);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #0096ff;
    object-fit: cover;
}

.testimonial-card h4 {
    font-size: 18px;
    color: #00d4ff;
    margin-bottom: 5px;
}

.testimonial-role {
    color: #b0b0b0;
    font-size: 13px;
    margin-bottom: 20px !important;
}

.testimonial-text {
    font-size: 14px;
    color: #d0d0d0;
    line-height: 24px;
    font-style: italic;
}

/* ==================== Contact Section ==================== */
.contact-section {
    width: 90%;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.1), rgba(0, 212, 255, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(0, 150, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-box:hover {
    transform: translateX(10px);
    border-color: #0096ff;
}

.contact-box i {
    font-size: 35px;
    color: #00d4ff;
    flex-shrink: 0;
}

.contact-box h4 {
    color: #00d4ff;
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-box p {
    color: #d0d0d0;
    font-size: 14px;
    margin: 5px 0;
}

.social-icons {
    margin-top: 20px;
}

.social-icons h4 {
    color: #00d4ff;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #0096ff;
    color: #0096ff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #0096ff;
    color: white;
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.5);
}

.contact-form {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.1), rgba(0, 212, 255, 0.05));
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(0, 150, 255, 0.2);
}

.contact-form h2 {
    font-size: 28px;
    color: #00d4ff;
    margin-bottom: 30px;
}

/* ==================== Footer ==================== */
.footer {
    width: 100%;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(15, 0, 50, 0.9), rgba(0, 150, 255, 0.1));
    border-top: 1px solid rgba(0, 150, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.footer h1 {
    font-size: 18px;
    color: #f0f0f0;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d4ff;
}

.footer .box-icons {
    display: flex;
    gap: 20px;
}

/* ==================== Animations ==================== */
.autoBlur {
    animation: autoBlurEffect 1.5s ease;
}

@keyframes autoBlurEffect {
    from {
        filter: blur(10px);
        opacity: 0;
    }
    to {
        filter: blur(0px);
        opacity: 1;
    }
}

.autoDisplay {
    animation: autoDisplayEffect 1.5s ease;
}

@keyframes autoDisplayEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        height: auto;
        padding: 100px 30px;
    }

    .hero-info {
        max-width: 100%;
    }

    .hero-image-placeholder {
        width: 300px;
        height: 400px;
    }

    .booking-container {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header ul {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .box-icons {
        display: none;
    }

    .hero-info h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .hero-info-title {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 32px;
    }

    .who-we-are-content {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .mission-cards,
    .services-grid,
    .courses-grid,
    .gallery-grid,
    .reviews-carousel,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .contact-box {
        flex-direction: column;
    }

    .booking-box {
        padding: 30px 20px;
    }

    .hero {
        padding: 80px 20px;
    }

    .who-we-are,
    .our-mission,
    .gallery-section,
    .demo-video-section,
    .why-choose-us,
    .courses-section,
    .booking-section,
    .services-section,
    .google-reviews,
    .testimonials-section,
    .contact-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0 15px;
    }

    .left h2 {
        font-size: 18px;
    }

    .hero-info h1 {
        font-size: 28px;
        line-height: 35px;
    }

    .hero-info p {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .course-header {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==================== AOS Custom Animations ==================== */
[data-aos] {
    opacity: 0;
}

[data-aos].aos-animate {
    opacity: 1;
    animation: aosAnimation 0.8s ease-in-out;
}

@keyframes aosAnimation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==================== Additional Animations ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ==================== Apply Animations to Elements ==================== */
.hero-info {
    animation: fadeInLeft 1s ease-out;
}

.hero-image-box {
    animation: fadeInRight 1s ease-out;
}

.section-title {
    animation: fadeInDown 1s ease-out;
}

.mission-card {
    animation: fadeInUp 0.8s ease-out;
}

.gallery-item {
    animation: zoomIn 0.8s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    animation: pulse 0.6s ease;
}

.service-card {
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.3s ease;
}

.course-card {
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.3s ease;
}

.why-card {
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.3s ease;
}

.testimonial-card {
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.3s ease;
}

.review-card {
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.3s ease;
}

.stat-item {
    animation: fadeInUp 1s ease-out;
    transition: all 0.3s ease;
}

.stat-item:hover {
    animation: float 2s ease-in-out infinite;
}

.logo-circle {
    animation: glow-pulse 2s ease-in-out infinite;
}

.left h2 {
    animation: gradient-shift 3s ease infinite;
}

.section-title {
    animation: gradient-text 3s ease infinite;
}

.gradient {
    animation: gradient-text 3s ease infinite;
}

.scroll-down {
    animation: scroll-down 2s ease-in-out infinite;
}

.scroll-down::before,
.scroll-down::after {
    animation: scroll-down 2s ease-in-out infinite;
}

/* ==================== Button Animations ==================== */
.btn-primary,
.btn-secondary,
.submit-btn,
.enroll-btn {
    transition: all 0.3s ease;
}

.btn-primary:hover,
.submit-btn:hover,
.enroll-btn:hover {
    animation: pulse 0.5s ease;
}

/* ==================== Icon Animations ==================== */
.mission-icon,
.why-icon,
.service-icon {
    animation: float 3s ease-in-out infinite;
}

/* ==================== Contact Form Animation ==================== */
.contact-box {
    animation: fadeInLeft 1s ease-out;
    transition: all 0.3s ease;
}

.contact-form {
    animation: fadeInRight 1s ease-out;
}

/* ==================== Smooth Transitions ==================== */
* {
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* ==================== Loading Animation ==================== */
@keyframes loading {
    0% {
        opacity: 0.6;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
        transform: scale(0.95);
    }
}

.loading {
    animation: loading 1.5s ease-in-out infinite;
}

/* ==================== Mobile Hamburger Menu (Final Overrides) ==================== */
.hamburger-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 150, 255, 0.45);
    border-radius: 10px;
    background: rgba(10, 14, 39, 0.7);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    cursor: pointer;
}

.hamburger-line {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #00d4ff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-icon.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-icon.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-icon.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-links,
    header ul {
        display: none !important;
    }

    .menu-icon {
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 1001;
    }
}

@media (min-width: 769px) {
    .menu-icon {
        display: none !important;
    }

    .sidebar {
        transform: translateX(-100%) !important;
        left: -300px !important;
    }
}

/* ==================== Mobile Overflow Fixes ==================== */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

.sidebar {
    left: 0 !important;
    transform: translateX(-100%);
    width: min(84vw, 320px);
}

.sidebar.open-sidebar {
    transform: translateX(0) !important;
}

.sidebar.close-sidebar {
    transform: translateX(-100%) !important;
}

@media (max-width: 768px) {
    header,
    .hero,
    section,
    footer {
        width: 100%;
        max-width: 100%;
    }

    .hero {
        padding-left: 16px !important;
        padding-right: 16px !important;
        overflow-x: clip;
    }

    .hero-content,
    .hero-text,
    .services-grid,
    .pricing-grid,
    .work-grid,
    .why-grid,
    .process-timeline,
    .contact-content,
    .footer-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-buttons {
        width: 100%;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        max-width: 100%;
    }
}


