:root {
    --primary: #00f0ff;
    --dark: #050505;
    --card: #0f0f0f;
    --border: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --text-dim: #999;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px;
    background: var(--primary); width: 0%; z-index: 9999;
    transition: width 0.1s;
}

/* Navigation */
nav { position: fixed; width: 100%; top: 0; z-index: 1000; padding: 25px 0; transition: 0.4s; }
nav.sticky { background: rgba(5, 5, 5, 0.9); backdrop-filter: blur(15px); padding: 15px 0; border-bottom: 1px solid var(--border); }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.6rem; font-weight: 800; letter-spacing: -1px; }
.logo span { color: var(--primary); }
.logo a { text-decoration: none; color: #fff; }
.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: #fff; font-size: 0.9rem; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }
.btn-nav { background: var(--primary); color: #000 !important; padding: 10px 20px; border-radius: 8px; font-weight: 700; }
.menu-btn { display: none; font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding: 120px 0 80px; }
.hero-glow {
    position: absolute; top: 0; right: 0; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}
.badge-label {
    display: inline-block; padding: 6px 16px; background: rgba(0, 240, 255, 0.1);
    color: var(--primary); border: 1px solid var(--primary); border-radius: 50px;
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 25px; }
.highlight { color: var(--primary); }
.hero p { color: var(--text-dim); max-width: 700px; margin: 0 auto 40px; font-size: 1.2rem; }
.btn-main { background: var(--primary); color: #000; padding: 18px 40px; border-radius: 12px; font-weight: 800; text-decoration: none; display: inline-block; transition: 0.3s; }
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3); }
.btn-ghost { border: 1px solid var(--border); padding: 18px 40px; border-radius: 12px; text-decoration: none; display: inline-block; margin-left: 15px; color: #fff; transition: 0.3s; }
.btn-ghost:hover { border-color: var(--primary); }

/* Logo Slider */
.logo-slider { padding: 50px 0; background: #080808; border-top: 1px solid var(--border); overflow: hidden; }
.slider-tag { text-align: center; color: var(--text-dim); font-size: 0.8rem; margin-bottom: 30px; letter-spacing: 1px; }
.slider-track { display: flex; gap: 80px; width: calc(250px * 14); animation: scroll 30s linear infinite; align-items: center; }
.slide img { height: 40px; filter: grayscale(1) invert(1); opacity: 0.5; transition: 0.3s; }
.slide img:hover { opacity: 1; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-250px * 7)); } }

/* Stats */
.stats { padding: 100px 0; border-bottom: 1px solid var(--border); }
.stat-box { text-align: center; }
.stat-box h3 { font-size: 3rem; color: var(--primary); margin-bottom: 5px; font-weight: 800; }
.stat-box p { color: var(--text-dim); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* Sub-Heading (used everywhere) */
.sub-heading { color: var(--primary); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 3px; font-weight: 700; margin-bottom: 15px; display: block; }
.section-head { margin-bottom: 60px; }
.section-head h2 { font-size: 2.8rem; margin-bottom: 15px; font-weight: 800; }
.section-head p { color: var(--text-dim); max-width: 600px; margin: 0 auto; }

/* About Premium */
.about-premium { padding: 120px 0; }
.about-visual { position: relative; }
.about-visual img { width: 100%; border-radius: 25px; }
.experience-badge {
    position: absolute; bottom: -30px; right: -30px;
    background: var(--primary); color: #000; padding: 25px;
    border-radius: 20px; text-align: center; z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.3); min-width: 150px;
}
.experience-badge .num { display: block; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.experience-badge .txt { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.about-content h2 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }
.about-content p { color: var(--text-dim); margin-bottom: 15px; }
.mission-vision { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--border); }
.mv-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 25px; }
.mv-item i { font-size: 1.8rem; color: var(--primary); margin-top: 5px; }
.mv-item h4 { margin-bottom: 5px; }
.mv-item p { color: var(--text-dim); font-size: 0.95rem; margin: 0; }

/* Services */
.services { padding: 100px 0; background: #080808; }
.s-card { background: var(--card); padding: 45px; border-radius: 20px; border: 1px solid var(--border); transition: 0.3s; }
.s-card:hover { border-color: var(--primary); transform: translateY(-10px); }
.s-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 25px; }
.s-card h3 { margin-bottom: 15px; }
.s-card p { color: var(--text-dim); font-size: 0.95rem; }

/* Why Choose Us */
.why-choose { padding: 100px 0; }
.wcu-grid { gap: 30px; }
.wcu-item {
    background: linear-gradient(145deg, var(--card), #000);
    padding: 40px 30px; border-radius: 20px;
    border: 1px solid var(--border); position: relative; transition: 0.3s;
}
.wcu-item:hover { border-color: var(--primary); transform: translateY(-5px); }
.wcu-num {
    font-size: 3rem; font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #0077ff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}
.wcu-item h4 { margin-bottom: 10px; font-size: 1.2rem; }
.wcu-item p { color: var(--text-dim); font-size: 0.9rem; }

/* Leadership Team */
.leadership { padding: 100px 0; background: #080808; }
.team-card { background: var(--card); border-radius: 25px; overflow: hidden; border: 1px solid var(--border); transition: 0.4s; }
.team-card:hover { transform: translateY(-10px); border-color: var(--primary); }
.member-img img { width: 100%; height: 320px; object-fit: cover; filter: grayscale(80%); transition: 0.4s; }
.team-card:hover .member-img img { filter: grayscale(0%); }
.member-info { padding: 30px; }
.member-info h3 { font-size: 1.4rem; margin-bottom: 5px; }
.member-info .role { color: var(--primary); font-size: 0.85rem; font-weight: 700; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.member-info .bio { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 20px; }
.m-social a { color: #fff; font-size: 1.3rem; margin-right: 15px; transition: 0.3s; }
.m-social a:hover { color: var(--primary); }

/* Testimonials */
.testimonials { padding: 100px 0; }
.testimonial-card { background: var(--card); padding: 40px; border-radius: 20px; border: 1px solid var(--border); transition: 0.3s; position: relative; }
.testimonial-card:hover { border-color: var(--primary); }
.quote-icon { font-size: 2rem; color: var(--primary); opacity: 0.3; margin-bottom: 20px; }
.testimonial-card p { color: var(--text-dim); font-style: italic; margin-bottom: 25px; line-height: 1.7; }
.t-author { display: flex; align-items: center; gap: 15px; padding-top: 20px; border-top: 1px solid var(--border); }
.t-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #0077ff);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: #000; font-size: 1.2rem;
}
.t-author h5 { font-size: 1rem; margin-bottom: 2px; }
.t-author span { color: var(--text-dim); font-size: 0.85rem; }

/* Forms */
.forms-bg { padding: 100px 0; background: #080808; }
.form-card { background: var(--card); padding: 45px; border-radius: 30px; border: 1px solid var(--border); position: relative; }
.form-card.highlight { border-color: var(--primary); background: #000; }
.form-card h3 { font-size: 1.8rem; margin-bottom: 10px; }
.form-card p { color: var(--text-dim); margin-bottom: 25px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
input, select, textarea {
    width: 100%; padding: 15px; background: #151515; border: 1px solid #252525;
    border-radius: 10px; color: #fff; margin-bottom: 15px; outline: none;
    font-family: inherit; transition: 0.3s;
}
input:focus, select:focus, textarea:focus { border-color: var(--primary); }
.btn-full { width: 100%; padding: 18px; background: var(--primary); border: none; border-radius: 12px; font-weight: 800; cursor: pointer; transition: 0.3s; color: #000; font-size: 1rem; }
.btn-full:hover { transform: translateY(-3px); }
.btn-full.ghost { background: transparent; border: 1px solid #fff; color: #fff; }
.success-pop {
    display: none; padding: 20px; background: rgba(0, 255, 128, 0.1);
    color: #00ff80; border-radius: 10px; margin-top: 20px; text-align: center;
}

/* FAQ */
.faq-section { padding: 100px 0; }
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 15px; margin-bottom: 15px; overflow: hidden; transition: 0.3s;
}
.faq-item.active { border-color: var(--primary); }
.faq-q {
    padding: 25px; display: flex; justify-content: space-between;
    align-items: center; cursor: pointer; font-weight: 600;
}
.faq-q i { color: var(--primary); transition: 0.3s; }
.faq-item.active .faq-q i { transform: rotate(45deg); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease; padding: 0 25px;
}
.faq-item.active .faq-a { max-height: 200px; padding-bottom: 25px; }
.faq-a p { color: var(--text-dim); }

/* Footer */
footer { padding: 80px 0 30px; background: #030303; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.f-brand p { color: var(--text-dim); margin: 20px 0; }
.f-contact { color: var(--text-dim); font-size: 0.9rem; line-height: 2; }
.f-contact i { color: var(--primary); margin-right: 8px; }
.f-nav h4, .f-social h4 { margin-bottom: 20px; font-size: 1.1rem; }
.f-nav ul { list-style: none; }
.f-nav ul li { margin-bottom: 12px; }
.f-nav a { color: var(--text-dim); text-decoration: none; transition: 0.3s; }
.f-nav a:hover { color: var(--primary); }
.social-links { display: flex; gap: 15px; }
.social-links a { font-size: 1.5rem; color: #fff; transition: 0.3s; }
.social-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 25px; color: var(--text-dim); font-size: 0.9rem; }

/* Modal */
.modal { display: none; position: fixed; z-index: 2000; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); }
.modal-box { background: var(--card); margin: 5% auto; padding: 50px; width: 60%; border-radius: 30px; border: 1px solid var(--primary); position: relative; max-height: 80vh; overflow-y: auto; }
.close-modal { position: absolute; top: 20px; right: 30px; font-size: 2.5rem; cursor: pointer; }
.modal-text { color: var(--text-dim); margin-top: 20px; line-height: 1.8; }

/* WhatsApp */
.whatsapp-btn {
    position: fixed; bottom: 30px; right: 30px; background: #25d366; color: #fff;
    padding: 14px 25px; border-radius: 50px; text-decoration: none; z-index: 1000;
    display: flex; align-items: center; gap: 10px; font-weight: 700;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2, .grid-3, .grid-4, .footer-top { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .menu-btn { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .modal-box { width: 90%; padding: 30px; }
    .experience-badge { right: 10px; bottom: -20px; }
    .btn-ghost { margin-left: 0; margin-top: 15px; }
    .section-head h2 { font-size: 2rem; }
    .whatsapp-btn span { display: none; }
    .whatsapp-btn { padding: 15px; }
    .whatsapp-btn i { font-size: 1.5rem; }
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .footer-top { text-align: center; }
    .social-links { justify-content: center; }
}