/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #0a122a;
  color: #fff7e6;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(10, 18, 42, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 700;
}

.logo span {
  color: #fff7e6;
  opacity: 0.6;
}

/* NAV */
.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: #fff7e6;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}

/* hover underline effect */
.nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #fff7e6;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

/* CTA */
.cta {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  transition: 0.3s;
}

.cta:hover {
  background: #fff7e6;
  color: #0a122a;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

/* subtle grid bg */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

/* HERO CONTENT */
.hero-content {
  max-width: 800px;
  z-index: 2;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #fff7e6;
  text-shadow: 0 0 20px rgba(255, 247, 230, 0.4);
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn.primary {
  background: #fff7e6;
  color: #0a122a;
  box-shadow: 0 0 25px rgba(255, 247, 230, 0.2);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff7e6;
}

/* GLOW EFFECT */
.glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 247, 230, 0.15),
    transparent 60%
  );
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  filter: blur(80px);
  z-index: 1;
}

/* MOBILE */
.menu-btn {
  display: none;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  .nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }
}
/* SERVICES */
.services {
  padding: 120px 20px;
  background: #0a122a;
  position: relative;
}

/* header */
.services-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.services-header p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* GRID (not boring rows) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD BASE */
.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* glow hover */
.service-card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 247, 230, 0.1),
    transparent 60%
  );
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

/* hover lift */
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 247, 230, 0.2);
}

/* TEXT */
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  line-height: 1.5;
}

.service-card span {
  font-size: 12px;
  color: #fff7e6;
  opacity: 0.7;
}

/* DIFFERENT SIZES (makes it unique) */
.service-card.large {
  grid-column: span 2;
}

.service-card.wide {
  grid-column: span 3;
}

/* MOBILE */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card.large,
  .service-card.wide {
    grid-column: span 1;
  }
}
/* WHY SECTION */
.why {
  padding: 120px 20px;
  background: linear-gradient(180deg, #0a122a 0%, #070e22 100%);
}

/* LAYOUT */
.why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* LEFT */
.why-left h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.why-left p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* RIGHT */
.why-right {
  position: relative;
  padding-left: 30px;
}

/* vertical line */
.why-right::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

/* ITEM */
.why-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}

/* DOT */
.dot {
  width: 16px;
  height: 16px;
  background: #fff7e6;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 247, 230, 0.6);
  margin-top: 5px;
  flex-shrink: 0;
}

/* TEXT */
.content h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* HOVER EFFECT */
.why-item:hover .dot {
  transform: scale(1.3);
}

/* MOBILE */
@media (max-width: 900px) {
  .why-container {
    grid-template-columns: 1fr;
  }
}
/* ABOUT SECTION */
.about {
  padding: 120px 20px;
  background: #070e22;
  position: relative;
}

/* LAYOUT */
.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.about-left h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.main-text {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff7e6;
}

.sub-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* RIGHT GRID */
.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* BOX */
.about-box {
  padding: 25px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* glow effect */
.about-box::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(255, 247, 230, 0.08),
    transparent 60%
  );
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: 0.4s;
}

.about-box:hover::before {
  opacity: 1;
}

.about-box:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 247, 230, 0.2);
}

/* TEXT */
.about-box h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.about-box p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* MOBILE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-right {
    grid-template-columns: 1fr;
  }
}
/* CONTACT */
.contact {
  padding: 120px 20px;
  background: linear-gradient(180deg, #070e22 0%, #0a122a 100%);
}

/* LAYOUT */
.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.contact-left h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.contact-left p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* BUTTONS */
.contact-buttons {
  display: flex;
  gap: 15px;
}

/* RIGHT */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.contact-card {
  padding: 25px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* glow effect */
.contact-card::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(255, 247, 230, 0.08),
    transparent 60%
  );
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: 0.4s;
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 247, 230, 0.2);
}

/* TEXT */
.contact-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
/* FOOTER */
.footer {
  background: #050a1a;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* GRID */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 50px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

/* BRAND */
.footer-col h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* HEADINGS */
.footer-col h3 {
  font-size: 16px;
  margin-bottom: 15px;
}

/* LIST */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* LINKS */
.footer-col ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff7e6;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* SUBTLE GLOW LINE */
.footer::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 247, 230, 0.3),
    transparent
  );
  margin-bottom: 40px;
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
