* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: radial-gradient(circle at top right, #1b1f3b, #050505 60%);
    color: #ffffff;
}

/* ---------------- NAVBAR ---------------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5,5,5,0.85);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 8%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.nav-logo img {
    width: 48px;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: rotate(-4deg) scale(1.05);
}

.nav-logo span {
    font-size: 22px;
    font-weight: 700;
    color: #ef4444;
}

/* NAV LINKS */
nav a {
    position: relative;
    margin-left: 25px;
    text-decoration: none;
    color: #e5e7eb;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #ef4444;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #ffffff;
}

nav a:hover::after {
    width: 100%;
}

/* CTA BUTTON */
.nav-btn {
    background: #ef4444;
    padding: 10px 18px;
    border-radius: 8px;
    color: #fff;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-btn:hover {
    box-shadow: 0 0 25px rgba(239,68,68,0.45);
}

.nav-btn:active {
    transform: scale(0.95);
}

/* ---------------- HERO ---------------- */
.hero {
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 60px 8%;
}

.hero-left h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-left p {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 520px;
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 18px;
}

/* BUTTONS */
.btn {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: scale(0.95);
}

.primary {
    background: #ef4444;
    color: #fff;
}

.primary:hover {
    box-shadow: 0 0 30px rgba(239,68,68,0.5);
}

.secondary {
    border: 1px solid #ef4444;
    color: #ef4444;
}

.secondary:hover {
    background: rgba(239,68,68,0.12);
}

/* HERO LOGO */
.hero-right img {
    width: 320px;
    transition: transform 0.6s ease;
    filter: drop-shadow(0 0 40px rgba(239,68,68,0.35));
}

.hero-right img:hover {
    transform: scale(1.05) rotate(2deg);
}

/* ---------------- SECTIONS ---------------- */
.section {
    padding: 90px 8%;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #ef4444;
}

/* ---------------- SERVICES ---------------- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(239,68,68,0.25);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 40px rgba(239,68,68,0.35);
}

.service-card ul {
    margin-top: 15px;
    padding-left: 18px;
}

/* ---------------- ABOUT ---------------- */
.about p {
    max-width: 800px;
    margin-bottom: 20px;
    color: #d1d5db;
}

/* ---------------- WHY CHOOSE ---------------- */
.why-intro {
    max-width: 700px;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.why-list {
    display: grid;
    gap: 25px;
}

.why-item {
    display: flex;
    gap: 15px;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateX(8px);
}

/* ---------------- CONTACT ---------------- */
.contact {
    text-align: center;
}

.contact-sub {
    color: #cbd5e1;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.contact-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(239,68,68,0.25);
    border-radius: 16px;
    padding: 35px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px rgba(239,68,68,0.35);
}

.linkedin a {
    color: #ef4444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.linkedin a:hover {
    color: #ffffff;
}

/* ---------------- FOOTER ---------------- */
.footer {
    text-align: center;
    padding: 20px;
    color: #9ca3af;
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-left h1 {
        font-size: 42px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-right img {
        margin-top: 40px;
        width: 220px;
    }
}
/* ================= MOBILE NAVBAR FIX ================= */
@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 6%;
        gap: 10px;
    }

    nav {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    nav a {
        margin-left: 0;
        font-size: 15px;
    }

    .nav-btn {
        padding: 8px 14px;
        font-size: 14px;
    }

    /* Prevent hero from hiding under navbar */
    .hero {
        padding-top: 140px;
    }

    .hero-left h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-left p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 14px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-right img {
        display: none; /* Hide big logo on small screens (clean look) */
    }
}/* ===== IT NETWORK BACKGROUND (NO LAYOUT CHANGE) ===== */

#bg-network {
  position: fixed;
  inset: 0;
  z-index: -1;          /* stays behind everything */
  pointer-events: none;
  opacity: 0.45;
}

@media (max-width: 768px) {
  #bg-network {
    opacity: 0.30;      /* lighter on mobile */
  }
}
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: white;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
}
.contact-form {
  max-width: 420px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  background: #111;
  border: 1px solid #333;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
}

.contact-form button {
  background: #ff3b3b;
  border: none;
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.contact-card a {
  color: inherit;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}
/* Fix contact card width */
.contact-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contact-card {
  width: 100%;
  max-width: 520px;   /* controls box width */
  padding: 24px 32px;
}
