/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
}

/* =========================
   BODY
========================= */
body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(
    90deg,
    #020617,
    #0f172a,
    #1e1b4b
  );
}

/* =========================
   NAVBAR
========================= */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  height: 85px;

  background: linear-gradient(
    90deg,
    #020617,
    #0f172a,
    #1e1b4b
  );

  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* LOGO */
/* LOGO CONTAINER */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* LOGO IMAGE FIX */
.logo img {
  height: 140px;
  width: 140px;
}


.logo-text h2 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.logo-text h2 span {
  color: #3b82f6;
}

/* MENU */
/* MENU BASE */
.menu a {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  padding: 10px 20px;
  transition: 0.4s ease;
}

/* GRADIENT TEXT + GLOW ON HOVER */
.menu a:hover,
.menu a.active {
  background: linear-gradient(
    90deg,
    #60a5fa,
    #a78bfa
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(167,139,250,0.8);
}


/* =========================
   HERO SECTION
========================= */
.premium-hero {
  min-height: 90vh;
  background: linear-gradient(
    135deg,
    #020617,
    #0b1220,
    #1e1b4b
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  color: #00fbaf;
}

/* LEFT */
.hero-left {
  max-width: 520px;
  animation: fadeLeft 1.2s ease;
}

.hero-left h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 18px;
  color: #ffe0e0;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(124,58,237,0.4);
}

/* RIGHT IMAGE */
.hero-right {
  max-width: 520px;
  animation: floatUp 1.5s ease;
}

.hero-right img {
  width: 100%;
  filter: drop-shadow(0 40px 80px rgba(124,58,237,0.35));
}

/* ANIMATIONS */
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================
   SERVICES
========================= */
.services {
  padding: 80px 60px;
}

.services-title {
  text-align: center;
  font-size: 36px;
  color: #2563eb;
  font-weight: 700;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.service-card {
  background: #00ffea;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.service-img-box {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, #000000, #b380d2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img-box img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.service-card h3 {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

/* =========================
   WHY CHOOSE US
========================= */
.why-new {
  padding: 90px 60px;
  background: #060010;
}

.why-title-new {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 60px;
}

.why-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  max-width: 1100px;
  margin: auto;
}

.why-box {
  padding: 35px;
  border-radius: 22px;
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.why-box:hover {
  transform: translateY(-10px) scale(1.03);
}

.why-box span {
  font-size: 38px;
  margin-bottom: 15px;
  display: block;
}

.why-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.why-box p {
  font-size: 16px;
  line-height: 1.6;
}

.why-box.red { background: linear-gradient(135deg, #ef4444, #7f1d1d); }
.why-box.blue { background: linear-gradient(135deg, #2563eb, #020617); }
.why-box.pink { background: linear-gradient(135deg, #ec4899, #701a75); }
.why-box.green { background: linear-gradient(135deg, #22c55e, #064e3b); }

/* =========================
   FOOTER
========================= */
.footer {
  background: #020617;
  color: #ffffff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding: 70px 80px;
}

.footer-logo {
  height: 60px;
}

.footer-text {
  font-size: 15px;
  margin-top: 10px;
  color: #cbd5f5;
}

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #60a5fa;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  background: #020617;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .menu { display: none; }

  .premium-hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
  }

  .hero-right { margin-top: 40px; }

  .services-grid,
  .why-grid-new {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding: 50px 20px;
  }
}
