/* ===============================
   GLOBAL RESET & BASE
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background: #0b0f1a;
    color: #ffffff;
    scroll-behavior: smooth;
    overflow: hidden;
}

/* ===============================
   CONTAINER
================================ */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ===============================
   HERO SECTION
================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: radial-gradient(circle at top, #1a1f36, #070a14);
}

.hero-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 153, 255, 0.15), transparent 60%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}


/* ===============================
   HEADINGS
================================ */
.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.gradient-text {
    background: linear-gradient(135deg, #00e0ff, #7b5cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 15px;
}

.hero-desc {
    font-size: 15px;
    color: #9ca3af;
    margin-bottom: 30px;
}

.stat-highlight {
    color: #00e0ff;
    font-weight: 600;
}

/* ===============================
   CTA BUTTON
================================ */
.hero-cta-group {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.btn {
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #0088ff, #00e0ff);
    color: #fff;
    box-shadow: 0 0 25px rgba(0, 153, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(0, 153, 255, 0.8);
}

.btn i {
    margin-right: 8px;
}

/* ===============================
   Whatsapp BUTTON
================================ */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(37, 211, 102, 0.8);
}

.btn i {
    margin-right: 8px;
}


/* ===============================
   SERVICES
================================ */
.our-services {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    max-width: 420px;
    margin: auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.services-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #00e0ff;
}

.services-list {
    list-style: none;
}

.services-list li {
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-list li:last-child {
    border-bottom: none;
}


/* ===============================
   RESPONSIVE (MOBILE)
================================ */
@media (max-width: 768px) {

    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .our-services {
        margin-top: 10px;
        padding: 20px;
    }
}
