:root { --primary: #ccff00; --secondary: #0a0a0a; --white: #ffffff; --panel: #141414; --font-head: 'Oswald', sans-serif; --font-body: 'Montserrat', sans-serif; --btn-radius: 4px;}

/* BASE */
body { margin: 0; font-family: var(--font-body); color: var(--white); background: var(--secondary); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; }
.hidden { display: none !important; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }
.center { text-align: center; }
.highlight { color: var(--primary); }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ANIMATION */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
#preloader { position: fixed; inset: 0; background: black; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.loader-spinner { width: 50px; height: 50px; border: 5px solid #333; border-top: 5px solid var(--primary); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }

/* NAVBAR */
.navbar { padding: 20px 0; position: fixed; top: 0; width: 100%; z-index: 1000; border-bottom: 1px solid #222; transition: 0.3s; background: rgba(10,10,10,0.95); backdrop-filter: blur(5px); }
.navbar.scrolled { border-bottom: 2px solid var(--primary); padding: 10px 0; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 100px; }
.btn-nav { background: white; border: none; color: black; padding: 8px 25px; font-weight: 700; text-transform: uppercase; border-radius: 2px; cursor: pointer; font-family: var(--font-head); letter-spacing: 1px; }
.btn-nav:hover { background: var(--primary); }

/* HERO */
.hero { height: 90vh; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero h1 { font-family: var(--font-head); font-size: 5.5rem; line-height: 0.9; margin: 20px 0; text-transform: uppercase; font-style: italic; }
.sub-headline { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); font-weight: bold; margin-bottom: 15px; display: block; }
.btn-primary { background: var(--primary); color: black; padding: 14px 35px; font-weight: 700; text-transform: uppercase; border: 2px solid var(--primary); cursor: pointer; transition: 0.3s; font-family: var(--font-head); letter-spacing: 1px; border-radius: var(--btn-radius);}
.btn-primary:hover { background: transparent; color: var(--primary); }
.btn-outline { border: 2px solid #333; color: white; padding: 12px 30px; font-weight: 700; text-transform: uppercase; cursor: pointer; background: transparent; font-family: var(--font-head); letter-spacing: 1px; transition: 0.3s; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* MISSION */
.mission { background: var(--panel); border-top: 1px solid #222; border-bottom: 1px solid #222; }
.mission-text { font-size: 1.3rem; line-height: 1.6; max-width: 900px; margin: 30px auto 0; text-align: center; color: #ccc; border-left: 2px solid var(--primary); border-right: 2px solid var(--primary); padding: 0 20px; }
.divider { width: 100px; height: 2px; background: var(--primary); margin: 20px auto; }

/* SECONDARY HERO */
.sec-hero-image img { width: 100%; border: 1px solid #333; filter: grayscale(20%); transition: 0.3s; }
.sec-hero-image:hover img { filter: grayscale(0%); border-color: var(--primary); }
.sec-hero-text h2 { font-family: var(--font-head); font-size: 3.5rem; text-transform: uppercase; font-style: italic; margin-bottom: 10px; line-height: 1; }
.sec-hero-text h3 { color: var(--primary); font-size: 1.5rem; text-transform: uppercase; font-weight: bold; margin-bottom: 20px; font-family: var(--font-head); }
.sec-hero-text p { font-size: 1.1rem; color: #ccc; margin-bottom: 30px; line-height: 1.6; }

/* SPECIALIZED SERVICES (Text Carousel) */
/* Styling handled by .image-carousel classes below */
/* --- SPECIALIZED SERVICES (GRID FIXED) --- */
/* Override carousel container defaults for this specific section */
#specServicesGrid.image-carousel {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns Desktop */
    gap: 20px;
    width: 100% !important;
    min-width: 0 !important; /* Prevents overflow */
    justify-content: stretch !important;
    padding: 0 !important;
    overflow: visible !important;
}

.text-card { 
    width: auto !important; /* Let Grid decide width */
    min-width: 0 !important; /* Critical: Stops scrolling */
    height: 100%; 
    min-height: 220px; 
    padding: 30px 15px; 
    background: var(--panel); 
    border: 1px solid #222; 
    transition: 0.3s; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    position: relative; 
    box-sizing: border-box;
}

.text-card:hover { 
    border-color: var(--primary); 
    transform: translateY(-5px); 
    box-shadow: 0 5px 20px rgba(204, 255, 0, 0.1); 
    z-index: 2;
}

.text-card h3 { 
    font-family: var(--font-head); 
    font-size: 1.4rem; 
    color: white; 
    text-transform: uppercase; 
    margin-bottom: 15px; 
    line-height: 1.2; 
    word-break: break-word; /* Prevents text overflow */
}

.text-card p { 
    color: #aaa; 
    line-height: 1.4; 
    font-size: 0.9rem; 
    margin: 0;
}

/* Mobile: 2x2 Grid */
@media (max-width: 768px) {
    #specServicesGrid.image-carousel { 
        grid-template-columns: repeat(2, 1fr); /* 2 Columns Mobile */
        gap: 5px;
    }
    .text-card { 
        padding: 15px 10px; 
        min-height: 180px; 
    }
    .text-card h3 { font-size: 1.1rem; }
    .text-card p { font-size: 0.8rem; }
}

/* Mobile: 2 Columns (2 Up, 2 Down) */
@media (max-width: 768px) {
    .text-carousel { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
    .text-card { 
        padding: 20px 15px; 
        min-height: 200px;
    }
    .text-card h3 { font-size: 1.2rem; }
    .text-card p { font-size: 0.85rem; }
}

/* .text-card { flex: 0 0 320px; min-height: 250px; padding: 30px; background: var(--panel); border: 1px solid #222; transition: 0.3s; display: flex; flex-direction: column; justify-content: center; position: relative; }
.text-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.text-card h3 { font-family: var(--font-head); font-size: 1.6rem; color: white; text-transform: uppercase; margin-bottom: 15px; }
.text-card p { color: #aaa; line-height: 1.6; } */

/* AUTHORITY */
.authority-strip { background: var(--primary); padding: 40px 0; text-align: center; }
.auth-label { color: black; font-weight: bold; font-family: var(--font-head); letter-spacing: 2px; margin-bottom: 20px; }
.logo-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.logo-grid img { height: 40px; width: auto; filter: brightness(0); }

/* PROFILE */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.profile-media img { filter: grayscale(30%); border-left: 4px solid var(--primary); width: 100%; transition: 0.3s; }
.profile-media:hover img { filter: grayscale(0%); }
.section-label { color: var(--primary); font-family: var(--font-head); letter-spacing: 2px; margin-bottom: 10px; display: block; text-transform: uppercase; font-size: 1.2rem; }
.check-list li { margin-bottom: 10px; }
.check-list i { color: var(--primary); margin-right: 10px; }
.profile-socials { margin-top: 30px; display: flex; gap: 15px; justify-content: flex-start; }
.profile-socials a { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; border-radius: 2px; border: 1px solid var(--primary); color: var(--primary); font-size: 1.2rem; transition: 0.3s; }
.profile-socials a:hover { background: var(--primary); color: black; }

/* TEAM */
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 50px; }
.team-card { flex: 0 1 300px; text-align: center; padding: 40px 30px; background: var(--panel); border: 1px solid #222; transition: 0.3s; }
.team-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.team-img img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px auto; border: 2px solid var(--primary); filter: grayscale(50%); }
.team-card h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 5px; color: white; text-transform: uppercase; }
.team-card p { color: var(--primary); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* SERVICES (Grid) */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 30px; }
.service-card { background: var(--panel); padding: 40px; border: 1px solid #222; transition: 0.3s; position: relative; }
.service-card:hover { border-color: var(--primary); transform: translateY(0px); }
.service-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 1.5rem; margin-bottom: 15px; }

/* --- CAROUSEL FIX (NO CLIPPING) --- */
.image-carousel-container { 
    width: 100%; 
    overflow-x: auto; 
    padding-bottom: 20px; 
    -webkit-overflow-scrolling: touch; /* Smooth scroll on mobile */
}
.image-carousel { 
    display: flex; 
    gap: 30px; 
    width: max-content; 
    padding: 0 20px; /* Ensures padding on sides */
}
.image-carousel img { 
    height: 400px; 
    width: auto; 
    border: 2px solid #222; 
    flex-shrink: 0; 
    transition: 0.3s; 
}
.image-carousel img:hover { border-color: var(--primary); }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; margin-top: 40px; }
.gallery-grid img { width: 100%; height: 300px; object-fit: cover; filter: grayscale(50%); transition: 0.3s; border: 1px solid #222; }
.gallery-grid img:hover { filter: grayscale(0%); transform: scale(1.02); border-color: var(--primary); }

/* REVIEWS */
.reviews-slider { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.review-card { background: var(--panel); padding: 30px; border-left: 4px solid var(--primary); }
.review-card .stars { color: var(--primary); letter-spacing: 3px; margin-bottom: 15px; }
.reviewer-info h5 { font-family: var(--font-head); text-transform: uppercase; font-size: 1.2rem; color: var(--primary); }

/* PRICING (FIXED BUTTONS) */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-top: 50px; max-width: 900px; margin: 50px auto; }
.plan-card { 
    background: var(--panel); 
    padding: 50px 30px; 
    border: 1px solid #222; 
    text-align: center; 
    transition: 0.3s; 
    display: flex; 
    flex-direction: column; 
    height: 100%; 
}
.plan-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.plan-card.highlight { border: 2px solid var(--primary); background: #0f0f0f; transform: scale(1.05); z-index: 2; }
.plan-card h3 { font-family: var(--font-head); font-size: 1.8rem; text-transform: uppercase; letter-spacing: 1px; }
.plan-card .price { font-family: var(--font-head); font-size: 3.5rem; color: var(--primary); margin: 20px 0; font-weight: 700; line-height: 1; }
.plan-card ul { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; flex-grow: 1; }
.plan-card li { padding: 10px 0; border-bottom: 1px solid #222; color: #ccc; display: flex; align-items: center; gap: 10px; }
.plan-card li i { color: var(--primary); font-size: 0.9rem; }
.plan-card button { margin-top: auto; width: 100%; display: block; }

/* FAQ */
.narrow { max-width: 800px; margin: 0 auto; }
.accordion-item { border-bottom: 1px solid #222; }
.accordion-header { width: 100%; text-align: left; background: none; border: none; padding: 20px 0; font-size: 1.2rem; color: white; cursor: pointer; display: flex; justify-content: space-between; font-family: var(--font-head); }
.accordion-header::after { content: '+'; color: var(--primary); }
.accordion-body { max-height: 0; overflow: hidden; transition: 0.3s ease-out; }
.accordion-body p { padding-bottom: 20px; color: #aaa; }

/* FOOTER */
footer { background: #000; padding: 80px 0; border-top: 1px solid #222; text-align: center; }
.socials { margin-top: 20px; display: flex; justify-content: center; gap: 15px; }
.socials a { color: white; font-size: 1.5rem; transition: 0.3s; }
.socials a:hover { color: var(--primary); transform: scale(1.1); }

/* APP (SMOOTH VERSION) */
.app-download { background-size: cover; position: relative; padding: 100px 0; border-top: 1px solid #222; overflow: hidden; }
/* Dark overlay sitting BEHIND content */
.app-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.85); z-index: 1; } 
/* Content pushed ABOVE overlay */
.app-download .container { position: relative; z-index: 5; }
.app-text { position: relative; }
.app-buttons { display: flex; gap: 15px; margin-top: 20px; }
.app-buttons img { height: 45px; }
.app-image { text-align: center; }
.app-image img { margin: 0 auto; max-height: 400px; }

/* WIDGETS */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 1000; display: none; align-items: center; justify-content: center; }
.modal-overlay.active { display: flex; }
.modal-content { background: #111; border: 1px solid #333; padding: 50px; max-width: 600px; width: 90%; text-align: center; position: relative; }
.close-modal { position: absolute; top: 10px; right: 15px; color: white; background: none; border: none; font-size: 2rem; cursor: pointer; }
.btn-full { width: 100%; display: block; padding: 15px; background: var(--primary); color: black; font-weight: bold; text-align: center; font-family: var(--font-head); text-transform: uppercase; }
.captcha-box { margin: 20px 0; text-align: left; background: #222; padding: 15px; border: 1px solid #333; }
.captcha-box label { display: block; font-weight: bold; margin-bottom: 5px; color: var(--primary); }
.captcha-box input { width: 100%; padding: 10px; background: #000; border: 1px solid #444; color: white; box-sizing: border-box; }
.error-msg { color: red; font-size: 0.9rem; margin-top: 10px; display: block; }
.iframe-box { width: 100%; height: 500px; overflow: hidden; background: #000; border: 1px solid #333; margin-top: 20px; }
.iframe-box iframe { width: 100%; height: 100%; border: none; display: block; }
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 10px rgba(0,0,0,0.3); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: 0.3s; text-decoration: none; animation: float-bounce 2s infinite ease-in-out; }
.whatsapp-float:hover { background-color: #1ebe57; transform: scale(1.1); box-shadow: 2px 2px 15px rgba(0,0,0,0.5); color: #FFF; }
@keyframes float-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 768px) { .hero h1 { font-size: 3rem; } .split-layout { grid-template-columns: 1fr; } .profile-socials { justify-content: center; } .text-card { flex: 0 0 280px; min-height: 220px; } }

/* ... [All previous CSS] ... */

/* --- FORM STYLES (NEW) --- */
.api-form-box {
    margin: 20px 0;
    text-align: left;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: #000;
    border: 1px solid #333;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: var(--primary);
    outline: none;
}

.status-msg {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 10px;
    font-weight: bold;
}

.status-msg.error { color: #ff2a2a; }
.status-msg.success { color: #00b894; }