/* =========================================
   1. GLOBAL RESET & TYPOGRAPHY
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&family=Rajdhani:wght@500;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    width: 100%;
    max-width: 100vw; 
    overflow-x: hidden; /* Stops horizontal scrolling */
}

body {
    background-color: #02020a;
    font-family: 'Montserrat', sans-serif;
    color: white;
    line-height: 1.6;
}

/* =========================================
   2. NAVIGATION (FIXED & STABLE)
   ========================================= */
nav {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 90px; /* Desktop Height */
    padding: 0 5%;
    display: flex; 
    justify-content: space-between; /* LOGO LEFT <-> BUTTON RIGHT */
    align-items: center; 
    z-index: 1000;
    transition: background 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
}

/* Scrolled State (Darker background) */
nav.scrolled {
    background: rgba(2, 2, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: #fff; 
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px; 
    background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(5px);
    white-space: nowrap; z-index: 1002;
}
.logo span { color: #00d2ff; }

/* DESKTOP LINKS */
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links li a {
    text-decoration: none; color: #fff; font-size: 0.9rem; text-transform: uppercase;
    letter-spacing: 1px; font-weight: 500; transition: color 0.3s;
}
.nav-links li a:hover, .nav-links li a.active { color: #00d2ff; }

.contact-btn {
    border: 1px solid #00d2ff; padding: 8px 25px; color: #00d2ff !important; transition: all 0.3s;
}
.contact-btn:hover { background: #00d2ff; color: #000 !important; box-shadow: 0 0 15px rgba(0, 210, 255, 0.4); }

/* HAMBURGER (Hidden by default, shown on Tablet/Mobile) */
.hamburger { display: none; cursor: pointer; z-index: 1005; }
.hamburger .line { width: 30px; height: 3px; background: #fff; margin: 6px; transition: 0.3s ease; }

/* CLOSE BUTTON (Inside Menu) */
.menu-close-btn { display: none; }

/* =========================================
   3. HERO SECTION
   ========================================= */
#hero-section { position: relative; width: 100%; height: 100vh; overflow: hidden; }
#hero-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; display: block; }
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #02020a 95%); z-index: 2; pointer-events: none;
}
.hero-content {
    position: relative; z-index: 10; top: 50%; left: 50%; transform: translate(-50%, -50%);
    text-align: center; width: 90%; max-width: 1100px;
}
.tagline { font-size: clamp(0.85rem, 2vw, 1.2rem); letter-spacing: 4px; color: #8892b0; margin-bottom: 20px; opacity: 0; animation: fadeUp 1s ease-out forwards 0.5s; }
.tagline span { color: #00d2ff; font-weight: 600; }
h1 {
    font-family: 'Rajdhani', sans-serif; font-size: clamp(2.8rem, 6vw, 6.5rem); font-weight: 700; line-height: 1.05;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #a8c0ff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    text-shadow: 0px 10px 40px rgba(0, 210, 255, 0.25); opacity: 0; animation: fadeUp 1s ease-out forwards 0.8s;
}
.cta-btn {
    display: inline-block; padding: 15px 40px; border: 1px solid rgba(0, 210, 255, 0.5);
    color: #00d2ff; text-decoration: none; font-family: 'Rajdhani', sans-serif; font-weight: 600;
    font-size: 1.1rem; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s ease;
    background: rgba(0, 210, 255, 0.05); opacity: 0; animation: fadeUp 1s ease-out forwards 1.2s;
}
.cta-btn:hover { background: #00d2ff; color: #000; box-shadow: 0 0 40px rgba(0, 210, 255, 0.6); transform: translateY(-2px); }
.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10;
    opacity: 0.5; animation: bounce 2s infinite;
}
.mouse { width: 26px; height: 42px; border: 2px solid #fff; border-radius: 20px; position: relative; }
.wheel { width: 4px; height: 8px; background: #00d2ff; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); border-radius: 2px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform:translateY(0) translateX(-50%);} 40% {transform:translateY(-10px) translateX(-50%);} 60% {transform:translateY(-5px) translateX(-50%);} }

/* =========================================
   4. CONTENT SECTIONS
   ========================================= */
.ticker-wrap {
    width: 100%; height: 45px; background: #0b0b18;
    border-top: 1px solid rgba(0, 210, 255, 0.2); border-bottom: 1px solid rgba(0, 210, 255, 0.2);
    overflow: hidden; position: relative; z-index: 20; display: flex; align-items: center;
}
.ticker-move { display: flex; width: fit-content; animation: ticker-scroll 80s linear infinite; }
.ticker-item { white-space: nowrap; font-family: 'Rajdhani', sans-serif; font-weight: 500; font-size: 1rem; color: #fff; padding-right: 100px; letter-spacing: 1px; text-transform: uppercase; }
.ticker-item .highlight { color: #00d2ff; font-weight: 700; margin-left: 20px; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.stats-bar {
    display: flex; justify-content: space-around; align-items: center; background: #050510;
    padding: 40px 5%; border-bottom: 1px solid rgba(255,255,255,0.05); flex-wrap: wrap; position: relative; z-index: 5;
}
.stat-item { text-align: center; margin: 10px 0; }
.stat-item h2 { font-family: 'Rajdhani', sans-serif; font-size: 2.5rem; color: #fff; font-weight: 700; line-height: 1; margin-bottom: 5px; }
.stat-item p { font-size: 0.8rem; letter-spacing: 2px; color: #8892b0; text-transform: uppercase; }

#about-section { padding: 100px 5%; background-color: #02020a; }
.container { max-width: 1200px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 60px; align-items: start; }
.section-label { color: #00d2ff; font-family: 'Rajdhani', sans-serif; font-weight: 600; letter-spacing: 2px; margin-bottom: 15px; }
.section-heading { font-family: 'Rajdhani', sans-serif; font-size: 3rem; line-height: 1.1; margin-bottom: 30px; color: #fff; }
#about-section p { color: #a8b2d1; margin-bottom: 20px; font-size: 1rem; line-height: 1.7; }
.intro-text { font-size: 1.1rem !important; color: #fff !important; }
.expertise-block { margin: 30px 0; padding-left: 20px; border-left: 2px solid #00d2ff; }
.expertise-block h3 { font-family: 'Rajdhani', sans-serif; font-size: 1rem; color: #00d2ff; letter-spacing: 2px; margin-bottom: 15px; text-transform: uppercase; }
.expertise-list { list-style: none; padding: 0; }
.expertise-list li { margin-bottom: 20px; color: #a8b2d1; font-size: 0.95rem; }
.expertise-list li strong { color: #fff; display: block; font-weight: 600; font-size: 1.05rem; margin-bottom: 5px; }
.why-different { background: rgba(255,255,255,0.03); padding: 20px; border-radius: 4px; margin-bottom: 30px; border-left: 1px solid rgba(255,255,255,0.1); }
.arrow-link { display: inline-block; color: #fff; text-decoration: none; font-weight: 600; border-bottom: 1px solid #00d2ff; padding-bottom: 5px; transition: 0.3s; }
.about-image-wrapper { position: relative; height: 500px; width: 100%; background: transparent; position: sticky; top: 120px; }
.about-video { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 4px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 20px 20px 0px rgba(0, 210, 255, 0.05); opacity: 0.8; }
.floating-badge { position: absolute; bottom: -20px; left: -20px; background: #00d2ff; color: #000; padding: 25px 35px; font-family: 'Rajdhani', sans-serif; font-weight: 700; box-shadow: 0 10px 30px rgba(0,0,0,0.5); z-index: 10; }
.floating-badge span { display: block; font-size: 2.5rem; line-height: 1; margin-bottom: 5px; }

#services { background-color: #02020a; padding-bottom: 100px; }
.services-header {
    position: relative; width: 100%; height: 400px; background-color: #0b0b18;
    background-image: url('AdobeStock_372696685.jpeg');
    background-size: cover; background-position: center bottom; background-attachment: scroll;
    display: flex; align-items: center; justify-content: center; margin-bottom: 60px;
}
.services-header-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(2, 2, 10, 0.85); z-index: 1; }
.services-title { position: relative; z-index: 2; text-align: center; }
.services-title h2 { font-family: 'Rajdhani', sans-serif; font-size: 3.5rem; color: #fff; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 10px; }
.services-title p { color: #00d2ff; letter-spacing: 2px; font-size: 1.1rem; text-transform: uppercase; font-weight: 600; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding: 0 5%; max-width: 1300px; margin: 0 auto; }
.service-card {
    background: #0b0b18; border: 1px solid rgba(255, 255, 255, 0.05); padding: 40px 30px;
    transition: all 0.4s ease; position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-10px); border-color: #00d2ff; box-shadow: 0 10px 30px rgba(0, 210, 255, 0.1); }
.card-number { position: absolute; top: -10px; right: 10px; font-family: 'Rajdhani', sans-serif; font-size: 5rem; font-weight: 800; color: rgba(255, 255, 255, 0.03); transition: 0.3s; }
.service-card:hover .card-number { color: rgba(0, 210, 255, 0.1); }
.service-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; color: #fff; margin-bottom: 15px; text-transform: uppercase; }
.service-card p { color: #a8b2d1; font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
.service-locations { font-size: 0.8rem; color: #00d2ff; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 15px; }

#reviews-section { padding: 100px 5%; background: linear-gradient(180deg, #02020a 0%, #0b0b18 100%); position: relative; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.platform-badges { display: flex; justify-content: center; gap: 30px; margin-bottom: 60px; flex-wrap: wrap; }
.badge-card {
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px; border-radius: 8px; display: flex; align-items: center; gap: 20px; transition: 0.3s;
}
.badge-card:hover { border-color: #00d2ff; transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 210, 255, 0.1); }
.badge-icon { font-size: 2rem; }
.badge-google i { color: #DB4437; }
.badge-jd { font-weight: 800; color: #FF7E00; font-family: sans-serif; font-size: 1.5rem; }
.badge-info h3 { font-family: 'Rajdhani', sans-serif; font-size: 2rem; line-height: 1; margin-bottom: 5px; }
.badge-info p { font-size: 0.8rem; color: #a8b2d1; text-transform: uppercase; letter-spacing: 1px; margin: 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.review-card { background: #050510; border: 1px solid rgba(255, 255, 255, 0.05); padding: 30px; border-radius: 4px; position: relative; transition: 0.3s; }
.review-card:hover { border-color: #00d2ff; background: #080815; }
.reviewer-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.reviewer-initial { width: 50px; height: 50px; background: linear-gradient(135deg, #00d2ff 0%, #0078ff 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.5rem; color: #000; font-family: 'Rajdhani', sans-serif; }
.reviewer-info h4 { color: #fff; font-size: 1.1rem; margin-bottom: 5px; }
.stars { color: #FFD700; font-size: 0.9rem; }
.review-text { color: #a8b2d1; font-style: italic; font-size: 1rem; line-height: 1.6; }
.quote-icon { position: absolute; top: 20px; right: 20px; font-size: 3rem; color: rgba(255, 255, 255, 0.05); font-family: serif; }

#contact { padding: 100px 5%; background-color: #02020a; border-top: 1px solid rgba(255,255,255,0.05); }
.feedback-msg { padding: 15px; text-align: center; margin-bottom: 30px; border-radius: 4px; font-weight: 600; }
.feedback-msg.success { background: rgba(0, 255, 128, 0.1); color: #00ff80; border: 1px solid #00ff80; }
.feedback-msg.error { background: rgba(255, 0, 64, 0.1); color: #ff0040; border: 1px solid #ff0040; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-heading { font-family: 'Rajdhani', sans-serif; font-size: 3rem; color: #fff; line-height: 1.1; margin-bottom: 10px; }
.contact-sub { color: #a8b2d1; margin-bottom: 40px; }
.info-card { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.info-card i { font-size: 1.5rem; color: #00d2ff; margin-top: 5px; }
.info-card h5 { font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; color: #fff; text-transform: uppercase; margin-bottom: 5px; }
.info-card p { color: #8892b0; font-size: 0.95rem; }
.map-frame { width: 100%; height: 250px; border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; transition: 0.3s; }
.contact-form-wrapper { background: #0b0b18; padding: 50px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.05); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.input-group { margin-bottom: 30px; }
.input-group label { display: block; color: #8892b0; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.input-group input, .input-group textarea { width: 100%; background: transparent; border: none; border-bottom: 2px solid rgba(255,255,255,0.1); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 1rem; padding: 10px 0; transition: 0.3s; }
.input-group input:focus, .input-group textarea:focus { outline: none; border-bottom-color: #00d2ff; }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; }
.custom-checkbox input { display: none; }
.box-content { display: block; padding: 15px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); color: #a8b2d1; text-align: center; cursor: pointer; transition: 0.3s; font-size: 0.9rem; border-radius: 4px; }
.box-content i { display: block; font-size: 1.2rem; margin-bottom: 5px; color: #555; transition: 0.3s; }
.custom-checkbox input:checked + .box-content { background: rgba(0, 210, 255, 0.1); border-color: #00d2ff; color: #fff; box-shadow: 0 0 15px rgba(0, 210, 255, 0.2); }
.custom-checkbox input:checked + .box-content i { color: #00d2ff; }
.submit-btn { width: 100%; padding: 20px; background: #00d2ff; border: none; font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: 0.3s; color: #000; margin-top: 10px; }
.submit-btn:hover { background: #fff; box-shadow: 0 0 30px rgba(0, 210, 255, 0.5); }
footer { padding: 40px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); color: #555; font-size: 0.8rem; }

.whatsapp-btn { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: #25d366; color: #fff; border-radius: 50%; text-align: center; font-size: 30px; box-shadow: 2px 2px 3px #999; z-index: 1000; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; text-decoration: none; box-shadow: 0 0 20px rgba(37, 211, 102, 0.4); animation: pulse-green 2s infinite; }
.whatsapp-btn:hover { transform: scale(1.1); background-color: #128c7e; }
.whatsapp-btn i { margin-top: 2px; }
@keyframes pulse-green { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* =========================================
   10. RESPONSIVE BREAKPOINTS (ALL FIXES)
   ========================================= */

/* --- TABLETS & LAPTOPS (Up to 1200px) --- */
@media screen and (max-width: 1200px) {
    /* 1. LOCK NAV HEIGHT (Fixes Gap/Overlap Issue) */
    nav { height: 80px !important; }
    nav.scrolled { height: 80px !important; }
    
    /* 2. MENU DRAWER (Full Height, Locked Position) */
    .nav-links {
        position: fixed;
        right: -100%; /* Hidden */
        top: 80px;    /* Start exactly below navbar */
        height: calc(100vh - 80px); /* Fill rest of screen */
        width: 60%;
        max-width: 350px;
        background-color: #050510;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-left: 1px solid rgba(255,255,255,0.1);
        padding-top: 40px;
        transition: right 0.4s ease; /* Slide Effect */
        overflow-y: auto; /* Scroll if menu is long */
    }
    
    /* 3. SHOW HAMBURGER (Right Side) */
    .hamburger { display: block; }
    
    /* 4. SHOW MENU (Slide In) */
    .nav-links.active { right: 0; }
    
    /* 5. CLOSE BUTTON (Inside Menu) */
    .menu-close-btn { 
        display: block; 
        position: absolute; 
        top: 15px; 
        right: 15px; 
        padding: 10px;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 4px;
    }

    /* 6. FIX ABOUT US STACKING (Text Top, Video Bottom) */
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-wrapper { 
        position: static; 
        height: 400px; 
        width: 100%; 
        margin-top: 30px; 
    }
    
    .contact-grid { grid-template-columns: 1fr; }
}

/* --- MOBILE DEVICES (Up to 768px) --- */
@media screen and (max-width: 768px) {
    /* 1. SLIMMER NAV */
    nav { height: 70px !important; padding: 0 15px; }
    .logo { font-size: 1rem; padding: 5px 12px; }
    
    /* 2. ADJUST MENU DRAWER TOP */
    .nav-links { top: 70px; height: calc(100vh - 70px); width: 85%; }
    
    /* 3. FONT SIZES */
    h1 { font-size: 3rem; }
    .tagline { font-size: 0.8rem; letter-spacing: 2px; }
    .cta-btn { padding: 15px 30px; font-size: 1rem; }
    
    .stats-bar { padding: 30px 5%; justify-content: space-between; }
    .stat-item { width: 45%; margin-bottom: 20px; }
    
    /* 4. CONTENT SPACING */
    #about-section { padding: 60px 5%; }
    .about-image-wrapper { height: 250px; } /* Smaller video on mobile */
    
    .services-header { height: 250px; }
    .services-title h2 { font-size: 2.2rem; }
    .services-grid { padding: 0 5%; grid-template-columns: 1fr; }
    
    .contact-heading { font-size: 2.5rem; }
    .contact-form-wrapper { padding: 25px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    
    .ticker-wrap { height: 40px; }
    .ticker-item { font-size: 0.8rem; }
}

/* --- LANDSCAPE MODE FIX (For Rotated Phones) --- */
@media screen and (max-height: 500px) and (orientation: landscape) {
    nav { height: 60px !important; }
    .nav-links { top: 60px; height: calc(100vh - 60px); }
    .logo { font-size: 0.9rem; padding: 5px 10px; }
    h1 { font-size: 2rem; margin-bottom: 10px; line-height: 1; }
    .hero-content { width: 100%; top: 60%; } 
    .hamburger { transform: scale(0.8); }
}