:root {
  --primary: #0f172a;
  --primary-light: #1e3a8a;
  --primary-dark: #020617;

  --accent: #3b82f6;
  --accent-light: #60a5fa;

  --white: #ffffff;
  --light: #f8fafc;
  --muted: #94a3b8;
  --text: #0f172a;

  --gradient-main: linear-gradient(135deg, #0f172a, #1e3a8a);
}

/* =========================
   RESET + GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
}

/* =========================
   LAYOUT
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  background: #ffffff;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h3 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 10px;
}

.section-title p {
  color: #64748b;
  max-width: 700px;
  margin: auto;
}

/* =========================
   HEADER / NAVBAR
========================= */
header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 14px;
}

.brand-text h1 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 2px;
}

.brand-text p {
  color: #dbeafe;
  font-size: 0.9rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #7dd3fc;
}

.nav-btn {
  
  padding: 10px 18px;
  border-radius: 999px;
  color: white !important;
}

.nav-btn:hover {
  transform: translateY(-2px);
  color: white !important;
}

/* =========================
   HERO SECTIONS
========================= */
.hero,
.packages-hero,
.coverage-hero,
.about-hero-custom,
.contact-hero {
  background:
    linear-gradient(
      rgba(15, 23, 42, 0.82),
      rgba(30, 58, 138, 0.82)
    ),
    url("home1 image.jpeg") center/cover no-repeat;
}

.hero::before {
  background: linear-gradient(
    rgba(2, 6, 23, 0.72),
    rgba(30, 58, 138, 0.72)
  );
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: min(750px, 90%);
}
.hero {
  padding: 0 20px;
}

.hero h2 {
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
  text-shadow: 0 6px 25px rgba(0,0,0,0.5);
}
.hero span {
  color: #60a5fa;
}

.hero p {
  color: #e5e7eb;
  margin-bottom: 22px;
  font-size: 1.05rem;
}


.hero-content h2 span {
  color: #7dd3fc;
}

.hero-content p {
  font-size: 1.08rem;
  color: #dbeafe;
  margin-bottom: 26px;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e0f2fe;
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary,
.nav-btn {
  background: var(--gradient-main);
  color: white;
}

.btn-secondary {
  border: 1px solid var(--accent-light);
  color: var(--accent-light);
}

/* =========================
   GENERIC CARDS / GRIDS
========================= */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.card,
.premium-card,
.about-card,
.testimonial-card,
.tip-card {
  background: white;
  border-radius: 20px;
  border: 1px solid #e2e8f0;

  box-shadow: 0 10px 30px rgba(15,23,42,0.06);

  transition: 0.3s ease;
}

.card:hover,
.premium-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(37,99,235,0.12);
}

.card h3,
.card h4 {
  color: #08306b;
  margin-bottom: 12px;
}

.card p {
  color: #475569;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.image-box img,
.home-image img,
.about-images img {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* =========================
   PACKAGES HERO + BANNER
========================= */
.packages-hero {
  background-image: url("home1 image.jpeg");
}

.packages-section-bg {
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.package-gallery-section {
  padding-top: 70px;
  padding-bottom: 30px;
}

.package-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 18px;
}

.gallery-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.15));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: white;
}

.gallery-overlay h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.gallery-overlay p {
  color: #dbeafe;
  font-size: 0.95rem;
}

.package-banner {
  position: relative;
  padding: 90px 0;
  background-image: linear-gradient(rgba(2, 6, 23, 0.65), rgba(2, 6, 23, 0.65)), url("home1 image.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.package-banner-content {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
  color: white;
}

.package-banner-content h3 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.package-banner-content p {
  color: #dbeafe;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* =========================
   ULTRA PREMIUM PACKAGE CARDS
========================= */
.premium-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 35px 25px;
  text-align: center;

  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* 🔵 Top glow line */
.premium-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
  opacity: 0;
  transition: 0.3s;
}

/* Hover effect */
.premium-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.15);
}

.premium-card:hover::after {
  opacity: 1;
}

/* SPEED TITLE (BIG & BOLD) */
.plan-top h4 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
}

/* Small description */
.plan-top p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 20px;
}

/* PRICE */
.premium-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #2563eb;
}

/* per month */
.package-cost {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 20px;
}

/* FEATURES LIST */
.premium-card ul {
  list-style: none;
  margin-bottom: 25px;
  text-align: left;
}

/* ✔ ICON STYLE */
.premium-card ul li {
  margin: 10px 0;
  color: #475569;
  padding-left: 25px;
  position: relative;
}

/* Check icon */
.premium-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

/* BUTTON */
.premium-card .btn {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.3s;
}

.premium-card .btn:hover {
  transform: scale(1.05);
}

/* ⭐ FEATURED PLAN */
.premium-card.featured {
  transform: scale(1.06);
  border: 2px solid #2563eb;
  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.25);
}

/* Badge */
.premium-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 999px;
}

/* =========================
   CONTACT PAGE
========================= */
/* HERO CONTAINER */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  color: white;
  text-align: center;
}

/* 🔥 PARALLAX BACKGROUND */
.contact-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background: linear-gradient(rgba(2,6,23,0.7), rgba(2,6,23,0.7)),
              url('home1 image.jpeg') center/cover no-repeat;
  z-index: -1;
  transform: translateY(0);
  transition: transform 0.2s ease-out;
}

/* TEXT */
.contact-hero h2 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
}

.contact-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* =========================
   COVERAGE PAGE
========================= */
.coverage-hero {
  background-image: url("home1 image.jpeg");
}
.coverage-hero {
  min-height: auto;          /* 🔥 remove full screen height */
  padding: 80px 0;           /* 🔥 reduce space */
  min-height: auto !important;
  padding: 70px 0 !important;
}
.coverage-hero h2 {
  font-size: 2.2rem;
}

.coverage-hero p {
  font-size: 1rem;
}
.coverage-section-bg {
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.coverage-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.coverage-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
  transition: 0.3s ease;
}

.coverage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 75px rgba(30, 64, 175, 0.18);
}

.coverage-card h4 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: #0f172a;
}

.coverage-card ul {
  list-style: disc;
  padding-left: 20px;
  color: #475569;
}

.coverage-map {
  margin-top: 40px;
  text-align: center;
}

.coverage-map img {
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
}

.map-note {
  margin-top: 12px;
  color: #64748b;
  font-size: 0.95rem;
}

/* =========================
   CTA
========================= */

.cta {
  padding: 80px 0;
}

.cta-box {
  background: var(--gradient-main);
  color: white;
  padding: 50px 30px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(30, 64, 175, 0.22);
}

.cta-box h3 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.cta-box p {
  color: #dbeafe;
  max-width: 700px;
  margin: 0 auto 24px;
}

/* =========================
   FOOTER
========================= */
footer {
   background: #020c1b;
   color: white;
  text-align: center;
  padding: 20px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
  .premium-packages,
  .contact-cards,
  .contact-wrap,
  .form-grid,
  .grid-2,
  .about-images,
  .package-gallery,
  .coverage-cards {
    grid-template-columns: 1fr;
  }

  .premium-card.featured {
    transform: scale(1);
  }

  .package-banner {
    background-attachment: scroll;
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }

  nav {
    justify-content: center;
  }

  .navbar {
    justify-content: center;
    text-align: center;
  }

  .brand {
    justify-content: center;
  }
  
}
/* =========================
   🔥 ORATECH-STYLE PACKAGE UPGRADE
========================= */

/* Layout fix */
.premium-packages {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Stronger card pop */
.premium-card {
  border-radius: 18px;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* 🔥 HOVER = POP EFFECT */
.premium-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* Glow top line stronger */
.premium-card::after {
  height: 5px;
  background: linear-gradient(90deg, #38bdf8, #2563eb);
}

/* Plan icon bigger */
.plan-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 10px;
}

/* Speed text more premium */
.premium-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1e40af;
}

/* Price styling */
.package-cost {
  font-size: 1rem;
  color: #64748b;
}

/* List spacing */
.premium-card ul li {
  margin: 10px 0;
}

/* Button more interactive */
.premium-card .btn {
  margin-top: 15px;
  transition: 0.3s ease;
}

.premium-card .btn:hover {
  transform: scale(1.08);
}

/* 🔥 FEATURED PLAN (CENTER CARD LIKE ORATECH) */
.premium-card.featured {
  transform: scale(1.08);
  border: 2px solid #38bdf8;
  box-shadow: 0 35px 80px rgba(56,189,248,0.35);
  z-index: 2;
}

/* Stronger hover for featured */
.premium-card.featured:hover {
  transform: scale(1.12) translateY(-12px);
}

/* Badge improved */
.premium-card.featured::before {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  font-weight: 700;
  padding: 7px 16px;
}
/* =========================
   🔥 CONTACT PAGE PREMIUM STYLE
========================= */

.contact-hero {
  background-image: url("contact background image.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Dark overlay like ISP websites */
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.65);
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

/* Contact layout cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Each card POP effect */
.contact-card {
  background: white;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Contact form styling */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

/* Send button */
.contact-form .btn {
  width: 100%;
  text-align: center;
}
/* =========================
   🔥 ORATECH-STYLE COLOR POP EFFECT
========================= */

.premium-card {
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* COLOR OVERLAY (hidden by default) */
.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
}

.premium-card {
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* FULL COVER GRADIENT (FIXED) */
.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
}

/* SHOW FULL COVER PROPERLY */
.premium-card:hover::before {
  opacity: 1;
}

/* KEEP CONTENT ABOVE */
.premium-card > * {
  position: relative;
  z-index: 2;
}

/* FIX TEXT COLOR ON HOVER */
.premium-card:hover h4,
.premium-card:hover p,
.premium-card:hover li,
.premium-card:hover .package-cost,
.premium-card:hover .premium-price {
  color: white !important;
}

/* FIX BUTTON ON HOVER */
.premium-card:hover .btn {
  background: white;
  color: #2563eb;
}

/* Show blue overlay on hover */
.premium-card:hover::before {
  opacity: 1;
}

/* Change text colors on hover */
.premium-card:hover h4,
.premium-card:hover p,
.premium-card:hover li,
.premium-card:hover .package-cost,
.premium-card:hover .premium-price {
  color: white;
}

/* Button glow effect */
.premium-card:hover .btn {
  background: white;
  color: #2563eb;
  font-weight: bold;
  box-shadow: 0 25px 60px rgba(30, 58, 138, 0.18);
}

/* Featured card extra glow */
.premium-card.featured:hover {
  box-shadow: 0 40px 90px rgba(56, 189, 248, 0.4);
}
.premium-card::before,
.premium-card .btn,
.premium-card.featured::before,
.premium-card::after {
  background: var(--gradient-main);
}
/* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 28px;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
/* PACKAGES HERO BACKGROUND LIKE CONTACT PAGE */
.packages-hero {
   min-height: 100vh;
  background: linear-gradient(rgba(2, 8, 23, 0.65), rgba(2, 8, 23, 0.72)),
    url("home1 image.jpeg") center center / cover no-repeat;
  display: flex;
  align-items: center;
}
/* SMALLER PACKAGES HERO */
.packages-hero {
  min-height: 60vh !important;  /* reduce height */
  padding: 80px 0 !important;
  display: flex;
  align-items: center;

  /* OPTIONAL: make background look better */
  background: linear-gradient(rgba(2,6,23,0.75), rgba(2,6,23,0.75)),
              url('home1 image.jpeg');
  background-size: cover;
  background-position: center;
}
.packages-hero h2 {
  font-size: 2.5rem;
}

.packages-hero p {
  font-size: 1.1rem;
}

.packages-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 40%),
              radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.15), transparent 35%);
  z-index: 1;
}

.packages-hero .container {
  position: relative;
  z-index: 2;
}

.packages-hero .hero-content {
  max-width: 700px;
}

.packages-hero .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}

.packages-hero h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
  color: #fff;
}

.packages-hero h2 span {
  color: #38bdf8;
}

.packages-hero p {
  font-size: 1.05rem;
  color: #dbeafe;
  margin-bottom: 28px;
  max-width: 620px;
}

.packages-hero .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
body {
  color: var(--primary);
  line-height: 1.6;
  min-height: 100vh;
}
/* ABOUT PAGE HERO WITH CUSTOM BACKGROUND IMAGE */
.about-hero-custom {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  background:
    linear-gradient(rgba(4, 17, 40, 0.78), rgba(7, 32, 70, 0.78)),
    url("home1 image.jpeg") center center / cover no-repeat;
}

.about-hero-custom .hero-content {
  max-width: 760px;
  text-align: left;
  padding: 60px 0;
}
/* SMALLER ABOUT HERO */
.about-hero-custom {
  min-height: 60vh !important; /* was full screen */
  padding: 80px 0 !important;
  display: flex;
  align-items: center;
}

/* OPTIONAL: tighter spacing on text */
.about-hero-custom .hero-content {
  padding-top: 40px;
}
.about-hero-custom h2 {
  font-size: 2.5rem;
}

.about-hero-custom p {
  font-size: 1.1rem;
}


.about-hero-custom .hero-content h2,
.about-hero-custom .hero-content p,
.about-hero-custom .badge {
  color: #fff;
}

/* ABOUT SECTION BACKGROUND */
.about-section-bg {
  background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
}

/* ABOUT CARDS */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.about-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 60, 120, 0.08);
  text-align: center;
  transition: 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0, 60, 120, 0.14);
}

.about-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

/* COVERAGE HERO (MATCH INDEX PAGE) */
.coverage-hero {
  min-height: 100vh;
  background: linear-gradient(rgba(2, 8, 23, 0.65), rgba(2, 8, 23, 0.72)),
    url("home1 image.jpeg") center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.coverage-hero .hero-content {
  padding-top: 120px;
  color: white;
}

.about-coverage-band .section-title h3,
.about-coverage-band .section-title p,
.about-coverage-band .card h3,
.about-coverage-band .card p {
  color: #fff;
}

.about-coverage-band .card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}
/* IMAGE GRID (BENEFITS) */
.about-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.about-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.about-image-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

.about-image-card:hover img {
  transform: scale(1.1);
}

.about-image-card .overlay {
  position: absolute;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  width: 100%;
  padding: 20px;
}

/* TIPS */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.tip-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.tip-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-style: italic;
}

.testimonial-card h4 {
  margin-top: 10px;
  font-style: normal;
  color: #003366;
}
/* IMAGE GRID (BENEFITS) */
.about-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.about-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.about-image-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

.about-image-card:hover img {
  transform: scale(1.1);
}

.about-image-card .overlay {
  position: absolute;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  width: 100%;
  padding: 20px;
}

/* TIPS */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.tip-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.tip-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-style: italic;
}

.testimonial-card h4 {
  margin-top: 10px;
  font-style: normal;
  color: #003366;
}
/* TOP HERO BAR */
.hero {
  position: relative;
}

.hero-top {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 10;
}

/* LOGO */
.hero-logo {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* SOCIAL ICONS */
.hero-socials {
  display: flex;
  gap: 12px;
}

.hero-socials img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  padding: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

.hero-socials img:hover {
  transform: scale(1.1);
  background: rgba(255,255,255,0.3);
}
.section {
  background: #ffffff;
}

.about-section-bg {
  background: #f8fafc; /* soft light section */
}

.card,
.about-card,
.feature-card,
.testimonial-card,
.tip-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
/* TOP BAR */
.top-bar {
 background: var(--gradient-main);
  color: white;
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.top-left span {
  margin-right: 20px;
}

.top-right a {
  margin-left: 10px;
}

.top-right img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.top-right img:hover {
  transform: scale(1.2);
}

/* NAVBAR IMPROVEMENT */
.navbar {
  margin-top: 0; /* remove gap */
  border-radius: 0 0 20px 20px;
}

/* HERO LIKE IMAGE STYLE */
.hero {
  background:
    linear-gradient(
      rgba(10, 25, 47, 0.82),
      rgba(17, 34, 64, 0.82)
    ),
    url("home1 image.jpeg") center/cover no-repeat;

  min-height: 90vh;
}

/* LOGO STYLE */
.logo {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}

/* BUTTON STYLE LIKE IMAGE */
.btn-primary {
  background: linear-gradient(90deg, #22c55e, #facc15);
  color: white;
  border: none;
}

.btn-secondary {
  border: 2px solid #f472b6;
  color: #f472b6;
  background: transparent;
}
/* SOCIAL STRIP BELOW NAVBAR */
.social-strip {
  position: relative;
  margin-top: 100px;
}

.social-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 15px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);

  color: white;
}
/* =========================
   🔥 STATS SECTION
========================= */
.stats-section {
  background: linear-gradient(135deg, #0a192f, #112240);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-box {
  padding: 20px;
}

.stat-box h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 1rem;
  opacity: 0.9;
}/* =========================
   PRE FOOTER
========================= */
.pre-footer {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: white;
  padding: 50px 0;
  margin-top: 60px;
}

.pre-footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

/* LEFT */
.pre-footer-left h3 {
  margin: 10px 0 5px;
}

.pre-footer-left p {
  color: #cbd5f5;
  font-size: 14px;
}

.pre-footer-logo {
  width: 45px;
  height: 45px;
  border-radius: 10px;
}

/* MIDDLE */
.pre-footer-middle h4,
.pre-footer-right h4 {
  margin-bottom: 10px;
}

.pre-footer-middle p {
  margin: 6px 0;
  color: #e2e8f0;
}

/* RIGHT */
.pre-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.pre-socials img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.pre-socials img:hover {
  transform: scale(1.2);
}

/* MOBILE */
@media(max-width: 900px) {
  .pre-footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pre-socials {
    justify-content: center;
  }
}
.pre-socials img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1); /* 🔥 THIS FIXES INVISIBLE ICONS */
}
.coverage-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 50px;
  align-items: center;
}

.coverage-map-box iframe {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  border: none;
}

@media(max-width: 900px) {
  .coverage-row {
    grid-template-columns: 1fr;
  }
}
/* PRE-FOOTER LOGO FIX */
.pre-footer-logo {
  width: 45px;
  height: 45px;
  object-fit: contain;
  display: block;
}

/* SOCIAL ICONS FIX */
.pre-socials img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  transition: 0.3s ease;
}

/* OPTIONAL: CONTROL ICON BUTTON SIZE */
.pre-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
/* PARTNERS SECTION (PREMIUM) */
.partners {
 
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}

/* fade edges (premium effect) */
.partners::before,
.partners::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.partners::before {
  left: 0;
  background: linear-gradient(to right, #2e1065, transparent);
}

.partners::after {
  right: 0;
  background: linear-gradient(to left, #2e1065, transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

/* logos */
.partners img {
  height: 45px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

/* hover effect */
.partners img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.partners-vertical {
  background: linear-gradient(180deg, #2e1065, #4c1d95);
  padding: 40px 0;
}

.partners-mask {
  height: 250px;
  overflow: hidden;
  position: relative;
}
:root {
  --primary: #0f172a;
  --primary-light: #1e3a8a;
  --primary-dark: #020617;

  --accent: #3b82f6;
  --accent-light: #60a5fa;

  --white: #ffffff;
  --light: #f8fafc;
  --muted: #94a3b8;
  --text: #0f172a;

  --gradient-main: linear-gradient(135deg, #0f172a, #1e3a8a);
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f8fafc;
  color: var(--text);
  line-height: 1.6;
}

/* NAVBAR */
.nav-btn {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  padding: 10px 18px;
  border-radius: 999px;
  color: white !important;
}
/* HERO */
.hero::before {
  background: linear-gradient(
    rgba(22, 163, 74, 0.35),
    rgba(220, 38, 38, 0.45)
  );
}

/* BUTTONS */
.btn-primary {
  background: var(--gradient-main);
  color: white;
}

/* CARDS */
.card:hover {
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.25);
}

/* PREMIUM CARDS */
.premium-card::after {
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
}

.premium-card .btn {
  background: var(--gradient-main);
}

.premium-price {
  color: var(--red);
}

/* FEATURED */
.premium-card.featured {
  border: 2px solid #3b82f6;
  box-shadow: 0 30px 70px rgba(59,130,246,0.25);
}

.premium-card.featured::before {
  background: var(--gradient-main);
}

/* HOVER OVERLAY */
.premium-card::before {
  background: var(--gradient-main);
}

/* CTA */

/* STATS */
.stats-section {
  background: var(--gradient-main);
}

/* TOP BAR */
.top-bar {
  background: var(--gradient-main);
}

/* PARTNERS */
.partners {
  background: linear-gradient(90deg, #020617, #1e3a8a, #020617);
}

/* LINKS */
nav a:hover {
  color: var(--accent);
}

/* REMOVE BLUE COLORS */
h3, h4 {
  color: #1e3a8a;
}

/* SHADOW FIX */
.premium-card:hover {
  box-shadow: 0 30px 70px rgba(220, 38, 38, 0.25);
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(10, 25, 47, 0.95);

  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);

  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.services img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  transition: 0.3s;
}

.card:hover img {
  transform: scale(1.05);
}
/* FORCE IMAGE SIZE FIX */
.card img {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  margin-bottom: 12px !important;
}
/* GLOBAL IMAGE CONTROL (CSS ONLY) */
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  margin-bottom: 12px;
}
.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  margin-bottom: 12px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.hero-stat {
  background: rgba(255,255,255,0.15);
  padding: 15px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}
img {
  max-width: 100%;
  height: auto;
}
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  margin-bottom: 12px;
}
.badge {
  font-weight: 700;
}

.hero h2 {
  font-weight: 800;
}

.hero p {
  font-weight: 600;
}
.container {
  width: min(1000px, 90%);
}
/* WHO WE ARE - FULL WIDTH FEEL */
.who-we-are {
  padding: 100px 0;
}

.who-we-are .container {
  max-width: 1200px;
}

.who-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.who-text {
  flex: 1;
  min-width: 400px;
  text-align: left;
}

.who-text h3 {
  font-size: 34px;
  margin-bottom: 20px;
}

.who-text p {
  font-size: 17px;
  line-height: 1.9;
}

.who-image {
  flex: 1;
  min-width: 450px;
}

.who-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
/* ALLOW PAGE TO FEEL WIDER */
.container {
  max-width: 1300px; /* increase from small default */
  width: 90%;
  margin: auto;
}.section-title {
  text-align: left;   /* instead of centered */
  margin-bottom: 60px;
}

.section-title h3 {
  font-size: 32px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.testimonials {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1;
}
/* CENTER ALL SECTION TITLES */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 16px;
  opacity: 0.8;
}
/* BIGGER SECTION TITLES */
.section-title h2,
.section-title h3 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
}

/* TALLER SERVICE IMAGES */
.card img,
.card-img {
  height: 260px !important;
  object-fit: cover;
}

/* BIGGER CARD TEXT */
.card h4 {
  font-size: 1.4rem;
}

.card p {
  font-size: 1rem;
  line-height: 1.7;
}
/* FORCE GLOBAL SITE COLORS */

.hero::before,
.packages-hero::before,
.coverage-hero::before,
.about-hero-custom::before,
.contact-hero::before {
  background: linear-gradient(
    rgba(15, 23, 42, 0.82),
    rgba(30, 58, 138, 0.82)
  ) !important;
}

.btn-primary,
.nav-btn,
.cta-box,
.top-bar,
.stats-section,
.pre-footer,
.partners {
  background: var(--gradient-main) !important;
}

.premium-card::before,
.premium-card::after {
  background: var(--gradient-main) !important;
}
/* =========================
   SERVICES HERO SECTION
========================= */

.services-hero {
  min-height: 42vh;

  display: flex;
  align-items: center;

  position: relative;

  background:
    linear-gradient(
      rgba(15, 23, 42, 0.82),
      rgba(30, 58, 138, 0.82)
    ),
    url("home1 image.jpeg") center center/cover no-repeat;

  color: white;

  padding: 55px 0 45px;
}
.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top right,
    rgba(56,189,248,0.18),
    transparent 35%);

  z-index: 1;
}

.services-hero .hero-content {
  position: relative;
  z-index: 2;
}

.services-hero h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}


.services-hero h2 span {
  color: #38bdf8;
}

.services-hero p {
  color: #dbeafe;
  max-width: 650px;
  font-size: 1rem;
  line-height: 1.6;
}
.badge {
  display: inline-block;

  padding: 10px 20px;

  border-radius: 40px;

  background: rgba(255,255,255,0.12);

  border: 1px solid rgba(255,255,255,0.15);

  margin-bottom: 20px;

  font-size: 0.9rem;
  font-weight: 600;
}

/* =========================
   SERVICES SECTION
========================= */

.services-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* SECTION TITLE */

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h3 {
  font-size: 2.3rem;
  margin-bottom: 15px;
  color: #0f172a;
}

.section-title p {
  max-width: 700px;
  margin: auto;
  color: #64748b;
  line-height: 1.7;
}

/* GRID */

.services-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));

  gap: 30px;
}
/* CARD */

.service-card {
  background: white;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);

  transition: 0.3s ease;

  display: flex;
  flex-direction: column;
}

/* HOVER */

.service-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 18px 40px rgba(37,99,235,0.12);
}

/* IMAGE */

.service-card img {
  width: 100%;
  height: 220px;

  object-fit: cover;

  display: block;
}

/* CONTENT */

.service-content {
  padding: 25px;
}

.service-content h4 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #0f172a;
}

.service-content p {
  color: #475569;
  line-height: 1.7;
  font-size: 0.96rem;
}
/* SERVICE BUTTON */

.service-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;

  background: linear-gradient(135deg, #2563eb, #38bdf8);

  color: white;
  text-decoration: none;

  border-radius: 10px;

  font-weight: 600;
  font-size: 0.95rem;

  transition: 0.3s ease;
}

/* HOVER EFFECT */

.service-btn:hover {
  transform: translateY(-3px);

  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);

  box-shadow: 0 10px 25px rgba(37,99,235,0.25);
}
.why-us {
  padding: 80px 0;

  background: white;
}

.why-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));

  gap: 25px;
}

.why-card {
  background: #f8fafc;

  padding: 35px;

  border-radius: 18px;

  text-align: center;

  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.why-card h4 {
  margin-bottom: 15px;

  color: #0f172a;
}
