/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Bright Futuristic Colors */
    --primary: #00e0ff;
    --secondary: #ff2a6d;
    --accent: #05d9e8;
    --dark: #0d1117;
    --dark-secondary: #161b22;
    --light: #ffffff;
    --gray: #8b949e;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient2: linear-gradient(135deg, #00e0ff, #0051ff);
    --glow: 0 0 20px rgba(0, 224, 255, 0.7);
    --card-bg: rgba(255, 255, 255, 0.05);
    --section-bg: linear-gradient(180deg, #0d1117 0%, #161b22 100%);
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--section-bg);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.circuit-loader {
    position: relative;
    width: 200px;
    height: 200px;
}

.wire {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: rotate 3s linear infinite;
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: var(--glow);
}

.node1 { top: 10%; left: 50%; transform: translateX(-50%); }
.node2 { top: 50%; right: 10%; transform: translateY(-50%); }
.node3 { bottom: 10%; left: 50%; transform: translateX(-50%); }

.loading-text {
    margin-top: 2rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 3px;
    animation: pulse 2s infinite;
}

.loading-progress {
    width: 300px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    margin-top: 1rem;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient2);
    width: 0%;
    animation: loading 3s ease-in-out forwards;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 224, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--primary);
    text-shadow: var(--glow);
    animation: glow 2s infinite alternate;
}

.logo h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient2);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-cta {
    background: var(--gradient2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 224, 255, 0.3);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(13, 17, 23, 0.8), rgba(13, 17, 23, 0.9));
}

.circuit-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path d="M0,100 L200,100 M100,0 L100,200 M50,50 L150,150 M150,50 L50,150" stroke="rgba(0,224,255,0.15)" stroke-width="1"/></svg>');
    opacity: 0.3;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(0, 224, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary);
    animation: float 6s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.3);
}

.float-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 60%; right: 15%; animation-delay: 1s; }
.float-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 2s; }
.float-icon:nth-child(4) { top: 40%; right: 25%; animation-delay: 3s; }

.hero-content {
    max-width: 1200px;
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

.hero-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 224, 255, 0.5);
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.highlight {
    background: var(--gradient2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.hero-desc {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--gray);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--gradient2);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 224, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 224, 255, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-count {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--gray);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    background: var(--dark-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.title-line {
    width: 100px;
    height: 4px;
    background: var(--gradient2);
    margin: 0 auto;
    border-radius: 2px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s;
    border: 1px solid rgba(0, 224, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient2);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 224, 255, 0.2);
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(0, 224, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(0, 224, 255, 0.2);
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0,243,255,0.3);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover .icon-glow {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: var(--primary);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list i {
    color: var(--primary);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: gap 0.3s;
    position: relative;
    z-index: 1;
}

.service-link:hover {
    gap: 15px;
}

/* Why Choose Us */
.why-us {
    padding: 8rem 2rem;
    background: var(--dark);
}

.why-container {
    max-width: 1200px;
    margin: 4rem auto 0;
}

.why-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 224, 255, 0.1);
    transition: all 0.3s;
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-text h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.why-text p {
    color: var(--gray);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: var(--dark-secondary);
}

.contact-container {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 224, 255, 0.1);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.info-content p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.phone-number, .email {
    color: var(--light) !important;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 224, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray);
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(0, 224, 255, 0.3);
    border-radius: 10px;
    color: var(--light);
    font-family: 'Exo 2', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 224, 255, 0.2);
}

textarea {
    resize: vertical;
    margin-bottom: 1.5rem;
}

.submit-btn {
    background: var(--gradient2);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 224, 255, 0.3);
}

/* Footer */
footer {
    background: #05050a;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section p {
    color: var(--gray);
    margin: 1rem 0;
}

.footer-desc {
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light);
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px);
    background: var(--gradient2);
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.5rem 0;
    color: var(--gray);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li:last-child {
    border-bottom: none;
}

.footer-section ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    animation: pulse-green 2s infinite;
    transition: transform 0.3s;
    font-size: 1.8rem;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(0, 224, 255, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 224, 255, 0.4);
}

/* Animations */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes glow {
    0% { text-shadow: 0 0 10px rgba(0,224,255,0.7); }
    100% { text-shadow: 0 0 20px rgba(0,224,255,1), 0 0 30px rgba(0,224,255,0.5); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 17, 23, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-top: 1px solid rgba(0, 224, 255, 0.2);
        backdrop-filter: blur(15px);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-count {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .services, .why-us, .contact {
        padding: 4rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* This is a CSS comment */
/* YouTube Video Thumbnails */
.video-thumb-container {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 224, 255, 0.2);
    transition: all 0.3s;
}

.video-thumb-container:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 224, 255, 0.2);
}

.video-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.video-thumb-container:hover .video-thumb img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: white;
}

.video-thumb-container:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 3rem;
    color: #ff0000; /* YouTube red */
    margin-bottom: 10px;
}

.play-overlay span {
    font-weight: 600;
    font-size: 1.1rem;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.video-info p {
    color: var(--gray);
    font-size: 0.95rem;
}

.youtube-badge {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}