/* =========================
   RESET / BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #050a14;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img, video {
    max-width: 100%;
    display: block;
    height: auto;
}

/* =========================
   GLOBAL BACKGROUND FX
========================= */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 217, 255, 0.08), transparent 20%),
        radial-gradient(circle at 90% 10%, rgba(0, 123, 255, 0.08), transparent 20%),
        radial-gradient(circle at 50% 80%, rgba(145, 0, 255, 0.06), transparent 25%);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
    z-index: -1;
    opacity: 0.6;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: rgba(7, 12, 25, 0.65) !important;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 14px 0;
    transition: 0.3s ease;
}

.navbar.scrolled {
    background: rgba(7, 12, 25, 0.95) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.30);
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: #00d9ff !important;
    letter-spacing: 0.5px;
}

.nav-link {
    color: #ffffff !important;
    margin-left: 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: #00d9ff !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, #00d9ff, #6a5cff);
    transition: 0.3s ease;
    border-radius: 50px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* =========================
   BUTTONS
========================= */
.btn-primary {
    background: linear-gradient(135deg, #00d9ff, #0066ff);
    border: none;
    color: #fff;
    border-radius: 999px;
    padding: 13px 30px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0, 217, 255, 0.18);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0, 217, 255, 0.24);
}

.btn-outline-light {
    border-radius: 999px;
    padding: 13px 30px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}

/* =========================
   HERO SLIDER
========================= */
.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 7s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(5, 10, 20, 0.92) 25%, rgba(5, 10, 20, 0.60) 55%, rgba(5, 10, 20, 0.82) 100%),
        linear-gradient(to top, rgba(5, 10, 20, 0.90), rgba(5, 10, 20, 0.15));
    z-index: 3;
}

.hero-content-wrap {
    position: relative;
    z-index: 5;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-glow-1,
.hero-glow-2,
.hero-glow-3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    z-index: 4;
    opacity: 0.5;
}

.hero-glow-1 {
    width: 320px;
    height: 320px;
    background: rgba(0, 217, 255, 0.18);
    top: 10%;
    left: -60px;
}

.hero-glow-2 {
    width: 260px;
    height: 260px;
    background: rgba(0, 123, 255, 0.16);
    top: 55%;
    right: 8%;
}

.hero-glow-3 {
    width: 240px;
    height: 240px;
    background: rgba(145, 0, 255, 0.14);
    bottom: 5%;
    left: 40%;
}

.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    color: #00d9ff;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 22px;
    backdrop-filter: blur(12px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -1px;
    max-width: 820px;
}

.hero-title .gradient-text {
    background: linear-gradient(90deg, #00d9ff, #6a5cff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: #d0d9e8;
    line-height: 1.95;
    max-width: 760px;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.hero-dot.active {
    background: #00d9ff;
    transform: scale(1.18);
    box-shadow: 0 0 18px rgba(0, 217, 255, 0.65);
}

/* =========================
   TRUST STATS
========================= */
.stats-wrap {
    margin-top: 45px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.stat-box {
    min-width: 170px;
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.stat-box h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: #00d9ff;
    font-weight: 800;
}

.stat-box p {
    margin: 0;
    color: #d5deea;
    font-size: 0.95rem;
}

/* =========================
   SECTIONS
========================= */
section {
    position: relative;
    z-index: 1;
}

.section-subtitle {
    color: #00d9ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.section-text {
    color: #c9d6e6;
    line-height: 1.9;
    font-size: 1.02rem;
}

/* =========================
   GLASS PANELS
========================= */
.glass-panel {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 30px;
    padding: 35px;
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}

/* =========================
   SERVICE CARDS
========================= */
.service-card {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.service-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(0, 217, 255, 0.08);
    top: -70px;
    right: -70px;
    border-radius: 50%;
    filter: blur(20px);
}

.service-card:hover {
    transform: translateY(-10px) rotateX(3deg) rotateY(-3deg);
    border-color: rgba(0, 217, 255, 0.25);
    box-shadow: 0 28px 60px rgba(0, 217, 255, 0.12);
}

.service-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,217,255,0.18), rgba(0,123,255,0.16));
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 22px;
    font-size: 24px;
    color: #00d9ff;
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.service-card p {
    color: #d7e0eb;
    line-height: 1.85;
    font-size: 0.96rem;
}

/* =========================
   SHOWCASE BLOCK
========================= */
.showcase-block {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.showcase-image {
    flex: 1;
    min-width: 280px;
}

.showcase-image img,
.showcase-image video {
    width: 100%;
    max-width: 520px;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 25px 55px rgba(0,0,0,0.28);
    transition: 0.4s ease;
}

.showcase-image img:hover,
.showcase-image video:hover {
    transform: scale(1.03) rotate(-1deg);
}

.showcase-content {
    flex: 1;
    min-width: 280px;
}

/* =========================
   CTA PANEL
========================= */
.cta-panel {
    text-align: center;
    padding: 60px 30px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(0,217,255,0.08), rgba(106,92,255,0.07)),
        rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.24);
}

/* =========================
   FOOTER
========================= */
footer {
    background: rgba(5, 7, 13, 0.88) !important;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer h4,
footer h5 {
    color: #00d9ff;
}

footer p,
footer a,
footer li {
    color: #d7e0eb !important;
    line-height: 1.9;
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 999;
    background: linear-gradient(135deg, #25D366, #18b857);
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 16px 35px rgba(0,0,0,0.28);
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-2px);
    color: white;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-wrap {
        justify-content: center;
    }

    .hero-slide img,
    .hero-slide video {
        height: 100vh;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-outline-light {
        width: 100%;
    }

    .glass-panel,
    .service-card,
    .cta-panel {
        padding: 24px;
    }

    .stat-box {
        width: 100%;
    }
}