/* ================= ROOT ================= */
:root {
  --primary: #007bff;
  --secondary: #00c6ff;
  --accent: #25D366;
  --bg-dark: #0f172a;
  --bg-card: #111827;      /* solid card */
  --bg-card-2: #0b1220;    /* darker card */
  --border: #1f2937;       /* subtle border */
  --text-muted: #cbd5e1;
}

/* ================= RESET ================= */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: white;
  overflow-x: hidden;   /* 🔥 stops horizontal scroll */

}

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  background: #0b1220;           /* solid */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: 0.3s;
}

.header.scrolled {
  padding: 8px 40px;
  background: #0b1220;
}

.header nav {
  display: flex;
  gap: 20px;
}

.header nav a {
  color: white;
  text-decoration: none;
  font-size: 17px;     /* 🔥 increase size */
  font-weight: 600;    /* 🔥 semi-bold (clean look) */
  letter-spacing: 0.5px; /* optional premium spacing */
  transition: 0.3s;
}

.header nav a:hover {
  color: #00c6ff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .header nav a {
    font-size: 16px;
  }
}

/* ================= LOGO ================= */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 60px;
}

/* ========= menu ========= */
/* ================= HAMBURGER ================= */

/* Hide on desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;

  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);

  z-index: 10001; /* 🔥 ensure above everything */
}


/* ================= MOBILE MENU ================= */
@media (max-width: 768px) {

  /* Show hamburger */
  .menu-toggle {
    display: block;
  }

  /* Hide default nav */
  .header nav {
    position: absolute;
    top: 100%;               /* 🔥 better than fixed 60px */
    right: 0;

    width: 220px;
    background: #0b1220;

    display: none;
    flex-direction: column;

    padding: 15px;
    border-radius: 0 0 8px 8px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  }

  /* Show menu when toggled */
  .header nav.show {
    display: flex;
  }

  /* Menu items */
  .header nav a {
    padding: 12px 10px;
    border-bottom: 1px solid #1f2937;
  }

  .header nav a:last-child {
    border-bottom: none;
  }

}

/* ================= SLIDER ================= */
/* SLIDER */
.slider {
  position: relative;
  height: 85vh;
  overflow: hidden;
    z-index: 1;   /* 👈 keep it low */
}

/* EACH SLIDE */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
    z-index: 1;
}

/* ACTIVE SLIDE */
.slide.active {
  opacity: 1;
  z-index: 1;
}

/* IMAGE FIT FULL BACKGROUND */
.slide picture,
.slide img {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide img {
  object-fit: cover;   /* 🔥 KEY LINE */
}

/* CONTENT OVERLAY */
.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  padding: 20px;
}

/* OPTIONAL DARK OVERLAY FOR TEXT READABILITY */
.slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  top: 0;
  left: 0;
}

.slide h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.slide p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

/* ================= BUTTONS ================= */
.btn,
.slider-btn,
.plan-btn,
.submit-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover,
.slider-btn:hover {
  transform: translateY(-2px);
}

/* ================= DOTS ================= */
.slider-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.slider-dots span {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #374151;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.slider-dots span.active {
  background: var(--secondary);
}

/* ================= HERO ================= */
.page-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* ================= SERVICES ================= */
.services-premium {
  padding: 60px 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ================= CARDS (NO GLASS) ================= */
.service-card,
.vps-card,
.why-card,
.highlight-box,
.contact-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
}

.service-card:hover,
.vps-card:hover,
.why-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-2);
}

.service-card.highlight {
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  border: none;
}

/* ================= VPS ================= */
.vps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;

  width: 95%;        /* ðŸ”¥ reduce width */
  margin: 0 auto;    /* ðŸ”¥ center it */
}

.vps-card.featured {
  border: 2px solid var(--primary);
}

.plan-btn {
  width: 85%;
  margin: 20px auto 25px;
  text-align: center;
}

.vps-card ul {
  list-style: none;
  padding: 0;
}
.vps-card ul li {
  margin: 10px 0;
}

/* ================= ABOUT ================= */
/* ABOUT SECTION */
.about-section {
  padding: 30px 0 60px 0;   /* vertical spacing only */
}

/* MAIN CONTAINER */
.about-container {
  width: 95%;        /* 🔥 95% of screen */
  max-width: 1200px; /* 🔥 prevents too wide on large screens */
  margin: 0 auto;    /* 🔥 center align */
}

/* OPTIONAL: better readability */
.about-container p {
  line-height: 1.6;
  color: #cbd5e1;
}

/* GRID */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 30px 0;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }
}

/* ================= WHY ================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ================= CTA SECTION ================= */
.cta-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #007bff, #00c6ff);
}

/* MAIN CTA BLOCK */
.cta {
  width: 95%;
  margin: 50px auto;
  max-width: 1200px
  padding: 60px 20px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* 🔥 BRIGHT BACKGROUND */
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;
  box-sizing: border-box;
  border-radius: 12px;
}

/* HEADING */
.cta h2 {
  margin-bottom: 20px;
  font-size: 32px;
}

/* BUTTON */
.cta .btn {
  display: inline-block;
  padding: 12px 25px;

  background: white;
  color: #007bff;

  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;

  transition: 0.3s;
  margin-top: 0px;   /* space from heading */
  margin-bottom: 20px;   /* 🔥 remove extra bottom gap */
}

/* BUTTON HOVER */
.cta .btn:hover {
  background: #e0f2ff;
  transform: translateY(-2px);
}

/* BUTTON CONTAINER */
.cta-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BASE BUTTON */
.cta-btn {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;   /* 🔥 removes underline */
  font-weight: 500;
  transition: 0.3s;
}

/* WHATSAPP BUTTON */
.cta-btn.whatsapp {
  background: #25D366;
  color: white;
}

/* OUTLINE BUTTON */
.cta-btn.outline {
  background: white;          /* 🔥 make it solid */
  color: #007bff;
  border: none;
}

/* HOVER */
.cta-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* SECTION WRAPPER */
.contact-section {
  padding: 60px 20px;
}

/* MAIN CONTAINER */
.contact-container {
  width: 95%;
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;

  align-items: start; /* ðŸ”¥ important */
}

/* LEFT SIDE BOX */
.contact-info-box {
  background: #111827;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #1f2937;

  height: fit-content; /* ðŸ”¥ fix stretch */
}

/* RIGHT SIDE FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* INPUTS */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;                /* ðŸ”¥ fix uneven width */
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #1f2937;
  background: #020617;
  color: white;
  font-size: 14px;
}

/* SELECT FIX */
.contact-form select {
  background: #ffffff;
  color: black;
}

/* TEXTAREA */
.contact-form textarea {
  min-height: 120px;
}

/* SUBMIT BUTTON */
.submit-btn {
  width: 100%;               /* ðŸ”¥ full width button */
  margin-top: 10px;
  padding: 14px;

  border-radius: 8px;
  border: none;

  background: linear-gradient(45deg, #007bff, #00c6ff);
  color: white;
  font-size: 15px;

  cursor: pointer;
}

/* CONTACT ITEMS */
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.contact-item i {
  color: #00c6ff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* ================= FLOAT BUTTONS ================= */
.floating-buttons {
  position: fixed;
  bottom: 40px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;   /* 👈 must be higher than slider */

}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-whatsapp { background: #25D366; }
.btn-call { background: var(--primary); }
.btn-email { background: #ff4b2b; }

@media (max-width: 768px) {

  .floating-buttons {
    right: 12px;        /* 🔥 bring inside screen */
    bottom: 40px;       /* 🔥 20px higher than before */
  }

  .float-btn {
    width: 48px;        /* 🔥 smaller */
    height: 48px;
  }

  .float-btn i {
    font-size: 20px;    /* 🔥 smaller icon */
  }

}

/* ================= FOOTER ================= */
footer {
  background: #020617;
  padding: 20px;
  border-top: 1px solid #1f2937;
}

/* FLEX CONTAINER */
.footer-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* EACH ITEM */
.footer-item {
  display: flex;
  align-items: center;
  gap: 8px;

  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
}

.footer-item i {
  color: #00c6ff;
  font-size: 16px;
}

.footer-item:hover {
  color: white;
}

/* MOBILE */
@media (max-width: 600px) {
  .footer-contact {
    flex-direction: column;
    gap: 10px;
  }

  .footer-item {
    font-size: 13px;
  }
}

/* ================= ANIMATIONS ================= */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .services-premium,
  .vps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-container,
  .why-grid,
  .about-highlights {
    grid-template-columns: 1fr;
  }

  .slide h2 { font-size: 32px; }
  .slide p { font-size: 16px; }
}

@media (max-width: 600px) {
  .services-premium,
  .vps-grid {
    grid-template-columns: 1fr;
  }

  .header {
    padding: 10px 20px;
  }
}

.float-btn i {
  color: white;
}

.whatsapp-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;

  display: flex;
  align-items: center;
  gap: 10px;

  background: #25D366;
  color: white;

  padding: 12px 18px;
  border-radius: 50px;

  font-size: 14px;
  font-weight: 500;
  text-decoration: none;

  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  z-index: 9999;

  transition: 0.3s;
}

.whatsapp-cta:hover {
  transform: scale(1.05);
}

.whatsapp-cta {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-cta:hover {
  transform: translateY(-3px) scale(1.05);
}

.float-btn i {
  font-size: 26px;   /* 🔥 increase size */
}

.float-btn {
  text-decoration: none;
}