@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

:root {
    --bg-color: #0b1121;
    --primary: #00f2fe;
    --secondary: #4facfe;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: var(--bg-color); color: #fff; overflow-x: hidden; display: flex; flex-direction: column; min-height: 100vh; }

/* Animated Background */
body::before {
    content: ''; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at 50% 50%, rgba(79, 172, 254, 0.1) 0%, rgba(11, 17, 33, 1) 70%);
    z-index: -1; animation: pulseGlow 8s infinite alternate;
}
@keyframes pulseGlow { 0% { opacity: 0.5; } 100% { opacity: 1; } }

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center; padding: 20px 5%;
    background: rgba(11, 17, 33, 0.8); backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border); position: sticky; top: 0; z-index: 100;
}

/* --- IMAGE LOGO CSS ADDED HERE --- */
.navbar .logo { display: flex; align-items: center; text-decoration: none; }
.navbar .logo img { max-height: 60px; width: auto; object-fit: contain; transition: transform 0.3s ease; border-radius: 8px; }
.navbar .logo img:hover { transform: scale(1.05); }
/* --------------------------------- */

.nav-links { display: flex; align-items: center; }
.nav-links a { color: #cbd5e1; text-decoration: none; margin-left: 25px; font-weight: 600; transition: 0.3s; padding: 8px 15px; border-radius: 8px; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: rgba(0, 242, 254, 0.1); }

/* Hamburger Menu Icon (Hidden on Desktop) */
.menu-toggle { display: none; font-size: 28px; color: #fff; cursor: pointer; transition: 0.3s; }
.menu-toggle:hover { color: var(--primary); }

/* Layout Containers */
.container { padding: 80px 5%; flex: 1; }
.hero-flex { display: flex; align-items: center; justify-content: space-between; gap: 50px; flex-wrap: wrap; }
.hero-text { flex: 1; min-width: 300px; }
.hero-image { flex: 1; min-width: 300px; text-align: right; }
.hero-image img { width: 100%; max-width: 600px; border-radius: 20px; box-shadow: 0 15px 35px rgba(0, 242, 254, 0.2); border: 1px solid var(--glass-border); }

h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
h2 { font-size: 2.5rem; margin-bottom: 30px; background: linear-gradient(to right, var(--primary), var(--secondary)); -webkit-background-clip: text; color: transparent; text-align: center; }
p { font-size: 1.1rem; color: #94a3b8; margin-bottom: 30px; line-height: 1.8; }

/* Buttons */
.btn { padding: 15px 35px; background: linear-gradient(45deg, var(--secondary), var(--primary)); color: #fff; font-size: 1.1rem; font-weight: 600; text-decoration: none; border-radius: 50px; border: none; cursor: pointer; transition: 0.4s; display: inline-block; box-shadow: 0 5px 20px rgba(0, 242, 254, 0.3); }
.btn:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 242, 254, 0.6); }

/* Glass Boxes */
.glass-box { background: var(--glass-bg); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 20px; padding: 40px; box-shadow: 0 15px 35px rgba(0,0,0,0.2); }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; width: 100%; margin-top: 40px; }
.service-card { padding: 30px; text-align: center; cursor: pointer; border-radius: 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); }
.service-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
.service-card .price { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin-bottom: 20px; }

/* Contact Section */
.contact-wrapper { display: flex; flex-wrap: wrap; gap: 50px; justify-content: space-between; }
.form-group { display: flex; flex-direction: column; gap: 15px; }
.form-group input, .form-group textarea { padding: 15px; border-radius: 10px; border: 1px solid var(--glass-border); background: rgba(255,255,255,0.05); color: white; font-size: 1rem; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: #25d366; border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: 0px 4px 20px rgba(37, 211, 102, 0.5); z-index: 1000; transition: 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float img { width: 35px; height: 35px; filter: brightness(0) invert(1); }

/* Premium Footer Setup */
.footer { background: rgba(8, 12, 24, 0.95); border-top: 1px solid var(--glass-border); padding: 50px 5% 20px; margin-top: auto; }
.footer-container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.footer-col { flex: 1; min-width: 250px; }
.footer-col h3 { color: var(--primary); margin-bottom: 20px; font-size: 1.3rem; }
.footer-col p { font-size: 0.95rem; margin-bottom: 10px; }
.footer-col a { display: block; color: #94a3b8; text-decoration: none; margin-bottom: 10px; transition: 0.3s; }
.footer-col a:hover { color: var(--primary); padding-left: 5px; }
.footer-bottom { text-align: center; border-top: 1px solid var(--glass-border); padding-top: 20px; color: #64748b; font-size: 0.9rem; }

/* --- HOMEPAGE SECTIONS CSS --- */
.stats-container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; padding: 40px 5%; background: rgba(0, 242, 254, 0.05); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.stat-box { text-align: center; flex: 1; min-width: 150px; }
.stat-box h3 { font-size: 3rem; color: var(--primary); margin-bottom: 5px; text-shadow: 0 0 15px rgba(0,242,254,0.3); }
.stat-box p { color: #fff; font-weight: 600; font-size: 1.1rem; margin-bottom: 0; }
.feature-list { list-style: none; margin-top: 20px; }
.feature-list li { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.feature-list li::before { content: '✔'; color: var(--primary); font-weight: bold; font-size: 1.2rem; background: rgba(0,242,254,0.1); padding: 5px 10px; border-radius: 50%; }
.cta-banner { text-align: center; padding: 60px 20px; margin: 60px 5%; background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(0, 242, 254, 0.05)); border: 1px solid var(--primary); border-radius: 20px; box-shadow: 0 0 30px rgba(0,242,254,0.1); }
.cta-banner h2 { font-size: 2.5rem; margin-bottom: 20px; color: #fff; text-fill-color: initial; -webkit-text-fill-color: initial; background: none; }

/* =========================================
   MOBILE & TABLET RESPONSIVE INTERFACE 
========================================= */

/* Tablets & Small Screens */
@media screen and (max-width: 992px) {
    .container { padding: 60px 5%; }
    .hero-flex { flex-direction: column; text-align: center; gap: 40px; }
    .hero-image img { width: 100%; max-width: 500px; }
    .hero-text h2 { text-align: center !important; }
    .feature-list { display: inline-block; text-align: left; }
    h1 { font-size: 3.2rem; }
}

/* Mobile Phones (Hamburger Activated Here) */
@media screen and (max-width: 768px) {
    /* Show Hamburger Icon */
    .menu-toggle { display: block; }
    
    /* Hide normal links and style for mobile dropdown */
    .nav-links {
        position: absolute; top: 100%; left: 0; width: 100%; flex-direction: column;
        background: rgba(11, 17, 33, 0.95); backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        padding: 0; max-height: 0; overflow: hidden; opacity: 0; transition: 0.4s ease-in-out;
    }
    
    /* When active class is added via JS, menu opens */
    .nav-links.active { max-height: 400px; opacity: 1; padding: 20px 0; }
    
    .nav-links a { margin: 10px 0; font-size: 1.1rem; text-align: center; width: 100%; padding: 10px 0; }

    /* --- MOBILE IMAGE LOGO SIZE UPDATE --- */
    .navbar .logo img { max-height: 45px; }
    /* ------------------------------------- */

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .stats-container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
    .stat-box h3 { font-size: 2.2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .cta-banner { margin: 40px 5%; padding: 40px 20px; }
    .cta-banner h2 { font-size: 1.8rem; }
    .footer-container { flex-direction: column; text-align: center; gap: 30px; }
    .whatsapp-float { width: 55px; height: 55px; bottom: 20px; right: 20px; }
    .whatsapp-float img { width: 30px; height: 30px; }
}