* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #ffffff;
  color: #0a1f44;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1535223289827-42f1e9919769") center/cover no-repeat;
  position: relative;
}

.overlay {
  background: rgba(5, 20, 60, 0.85);
  height: 100%;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.services {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.tagline {
  color: #ffd700;
  font-weight: bold;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #1da1f2;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1rem;
  margin-bottom: 20px;
}

.contact {
  margin-top: 20px;
}

/* SECTIONS */
.section {
  padding: 50px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.light {
  background: #f2f6ff;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-weight: bold;
}

/* WHY */
.why {
  list-style: none;
  max-width: 600px;
  margin: auto;
  font-size: 1.1rem;
}

.why li {
  margin: 10px 0;
}

/* FOOTER */
footer {
  background: #0a1f44;
  color: #ffffff;
  text-align: center;
  padding: 20px;
}

/* MOBILE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}

/* GLASSMORPHISM SERVICES SECTION */
.services {
  background: linear-gradient(
    135deg,
    rgba(240, 245, 255, 0.6),
    rgba(255, 255, 255, 0.3)
  );
  backdrop-filter: blur(6px);
}

/* GRID */
.services-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: auto;
}

/* SERVICE CARD */
.service-column {
  position: relative;
  padding: 28px 22px;
  border-radius: 18px;
  color: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

/* ICON */
.service-column .icon {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

/* HEADINGS */
.service-column h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  padding-bottom: 8px;
}

/* LIST */
.service-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-column li {
  font-size: 1rem;
  line-height: 1.6;
  margin: 6px 0;
}

/* HOVER GLOW EFFECT */
.service-column::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(255,255,255,0.35),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-column:hover::before {
  opacity: 1;
}

.service-column:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 25px rgba(255,255,255,0.45),
              0 18px 35px rgba(0,0,0,0.25);
}

/* COLOR THEMES (TRANSPARENT GRADIENTS) */
.blue {
  background: linear-gradient(135deg,
    rgba(30,60,114,0.85),
    rgba(42,82,152,0.85));
}

.green {
  background: linear-gradient(135deg,
    rgba(17,153,142,0.85),
    rgba(56,239,125,0.85));
}

.orange {
  background: linear-gradient(135deg,
    rgba(247,151,30,0.85),
    rgba(255,210,0,0.85));
  color: #1a1a1a;
}

.purple {
  background: linear-gradient(135deg,
    rgba(106,17,203,0.85),
    rgba(37,117,252,0.85));
}

.teal {
  background: linear-gradient(135deg,
    rgba(19,106,138,0.85),
    rgba(38,120,113,0.85));
}


/* LOGO GLOW EFFECT */
.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.glow-logo {
  width: 160px; /* adjust size */
  height: auto;
  background: transparent;
  filter:
    drop-shadow(0 0 10px rgba(0, 170, 255, 0.6))
    drop-shadow(0 0 25px rgba(0, 170, 255, 0.4))
    drop-shadow(0 0 45px rgba(0, 170, 255, 0.2));
  animation: glowPulse 3s infinite ease-in-out;
}

/* PULSE ANIMATION */
@keyframes glowPulse {
  0% {
    filter:
      drop-shadow(0 0 8px rgba(0, 170, 255, 0.5))
      drop-shadow(0 0 20px rgba(0, 170, 255, 0.3));
  }
  50% {
    filter:
      drop-shadow(0 0 18px rgba(0, 170, 255, 0.8))
      drop-shadow(0 0 40px rgba(0, 170, 255, 0.6));
  }
  100% {
    filter:
      drop-shadow(0 0 8px rgba(0, 170, 255, 0.5))
      drop-shadow(0 0 20px rgba(0, 170, 255, 0.3));
  }
}

/* =========================
   GLOBAL ENHANCEMENTS
========================= */
body {
  background: linear-gradient(135deg, #eef3ff, #ffffff);
}

/* =========================
   HERO SECTION – PREMIUM
========================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.overlay {
  max-width: 900px;
  padding: 40px 20px;
  color: #ffffff;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.subtitle {
  font-size: 1.3rem;
  color: #cfe9ff;
}

.services {
  font-size: 1.1rem;
  margin: 12px 0;
  color: #e0f2ff;
}

.tagline {
  color: #ffd700;
  font-weight: bold;
  margin: 18px 0;
}

/* =========================
   LOGO – TRANSPARENT + GLOW
========================= */
.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.glow-logo {
  width: 160px;
  background: transparent;
  filter:
    drop-shadow(0 0 12px rgba(0,170,255,0.6))
    drop-shadow(0 0 28px rgba(0,170,255,0.4));
  animation: glowPulse 3s infinite ease-in-out;
}

@keyframes glowPulse {
  0% {
    filter:
      drop-shadow(0 0 8px rgba(0,170,255,0.5))
      drop-shadow(0 0 18px rgba(0,170,255,0.3));
  }
  50% {
    filter:
      drop-shadow(0 0 18px rgba(0,170,255,0.9))
      drop-shadow(0 0 40px rgba(0,170,255,0.6));
  }
  100% {
    filter:
      drop-shadow(0 0 8px rgba(0,170,255,0.5))
      drop-shadow(0 0 18px rgba(0,170,255,0.3));
  }
}

/* =========================
   CTA BUTTON – GLOW
========================= */
.btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #ffffff;
  border-radius: 40px;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 0 25px rgba(0,114,255,0.6);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0,198,255,0.9);
}

/* =========================
   SECTION TITLES – GRADIENT
========================= */
.section h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* =========================
   SERVICES – GLASS + GLOW
========================= */
.services {
  background: linear-gradient(
    135deg,
    rgba(240,245,255,0.7),
    rgba(255,255,255,0.4)
  );
  backdrop-filter: blur(6px);
}

.service-column {
  border-radius: 18px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.35s ease;
}

.service-column:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 0 30px rgba(255,255,255,0.5),
              0 18px 40px rgba(0,0,0,0.25);
}

.service-column .icon {
  font-size: 2.6rem;
  margin-bottom: 12px;
  text-shadow: 0 0 14px rgba(255,255,255,0.7);
}

/* =========================
   WHY CHOOSE US – CARDS
========================= */
.light {
  background: linear-gradient(135deg, #f8fbff, #eef4ff);
}

.why li {
  background: #ffffff;
  padding: 14px 20px;
  border-radius: 14px;
  margin: 12px 0;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* =========================
   FOOTER – DARK GRADIENT
========================= */
footer {
  background: linear-gradient(135deg, #0f2027, #203a43);
  color: #ffffff;
  padding: 26px 10px;
  font-size: 0.95rem;
}

/* =========================
   HERO – ATTRACTIVE DESIGN
========================= */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(0,198,255,0.25), transparent 40%),
    linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.hero-content {
  max-width: 900px;
  color: #ffffff;
}

/* TITLE */
.hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* SUBTITLE */
.subtitle {
  font-size: 1.4rem;
  color: #cfe9ff;
  margin-bottom: 12px;
}

/* SERVICES LINE */
.hero-services {
  font-size: 1.15rem;
  color: #e0f4ff;
  margin: 12px 0;
}

/* TAGLINE */
.hero-tagline {
  color: #ffd700;
  font-weight: 600;
  margin: 18px 0 30px;
}

/* BUTTON GROUP */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn.primary {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  box-shadow: 0 0 30px rgba(0,114,255,0.7);
}

.btn.secondary {
  background: transparent;
  border: 2px solid #00c6ff;
  color: #ffffff;
}

.btn.secondary:hover {
  background: #00c6ff;
  color: #000;
}

/* TRUST STRIP */
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #d6f1ff;
  margin-bottom: 20px;
}

/* CONTACT */
.contact {
  font-size: 1.05rem;
  margin-top: 10px;
}

/* MOBILE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  .subtitle {
    font-size: 1.2rem;
  }
}
/* HERO ROW LAYOUT */
.hero-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1100px;
  width: 100%;
}

/* LEFT LOGO */
.hero-left {
  flex: 0 0 220px;
  display: flex;
  justify-content: center;
}

/* RIGHT CONTENT */
.hero-right {
  flex: 1;
  text-align: left;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero-row {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    text-align: center;
  }
}

/* =========================
   HERO BACKGROUND UPGRADE
========================= */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(0,198,255,0.25), transparent 40%),
    radial-gradient(circle at bottom left, rgba(0,114,255,0.25), transparent 45%),
    linear-gradient(135deg, #0b1f2a, #143645, #1f4d63);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Decorative glow line */
.hero-bg-shape {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 40%, rgba(0,198,255,0.08), transparent 60%);
  animation: bgMove 12s linear infinite;
}

@keyframes bgMove {
  0% { transform: translateX(-30%); }
  100% { transform: translateX(30%); }
}

/* =========================
   HERO CONTENT
========================= */
.hero-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  gap: 60px;
}

/* LEFT LOGO */
.hero-left {
  flex: 0 0 340px;
  display: flex;
  justify-content: center;
}

/* BIG LOGO */
.big-logo {
  width: 300px;
  max-width: 100%;
  filter:
    drop-shadow(0 0 18px rgba(0,170,255,0.8))
    drop-shadow(0 0 45px rgba(0,170,255,0.6))
    drop-shadow(0 0 70px rgba(0,170,255,0.3));
  animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

/* RIGHT TEXT */
.hero-right {
  flex: 1;
  color: #ffffff;
}

.hero-right h1 {
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.subtitle {
  font-size: 1.45rem;
  color: #cfe9ff;
  margin: 12px 0;
}

.hero-services {
  font-size: 1.1rem;
  color: #e4f6ff;
  margin-bottom: 12px;
}

.hero-tagline {
  color: #ffd700;
  font-weight: 600;
  margin: 20px 0 30px;
}

/* =========================
   BUTTONS UPGRADE
========================= */
.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.btn.primary {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  box-shadow: 0 0 35px rgba(0,114,255,0.8);
}

.btn.primary:hover {
  box-shadow: 0 0 55px rgba(0,198,255,1);
}

.btn.secondary {
  background: transparent;
  border: 2px solid #00c6ff;
  color: #ffffff;
}

.btn.secondary:hover {
  background: #00c6ff;
  color: #002033;
}

/* TRUST STRIP */
.hero-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #d9f3ff;
  margin-bottom: 16px;
}

/* CONTACT */
.contact {
  font-size: 1.05rem;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero-row {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    flex: none;
  }

  .big-logo {
    width: 220px;
  }

  .hero-right h1 {
    font-size: 2.5rem;
  }
}

/* =========================
   HERO ALIGNMENT FIX
========================= */

/* Wrapper to keep everything aligned */
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* LEFT ALIGN */
  gap: 16px;
}

/* Buttons row */
.hero-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
}

/* Trust row */
.hero-trust {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 0.95rem;
  color: #d9f3ff;
}

/* Contact line */
.hero-contact {
  font-size: 1rem;
  color: #ffffff;
}

/* MOBILE CENTER ALIGN */
@media (max-width: 768px) {
  .hero-actions {
    align-items: center;
    text-align: center;
  }

  .hero-buttons,
  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }
}

