html, body {
  margin: 0;
  scroll-behavior: smooth;
}



body {
  background-color: #06040f;
  color: #ffffff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero {
  min-height: calc(100vh - 95px); /* 👈 subtract navbar height */
  padding: 0 24px;

  display: flex;
  align-items: center;

  background:
    radial-gradient(
      600px circle at 80% 15%,
      rgba(140, 110, 255, 0.25),
      rgba(140, 110, 255, 0.08) 35%,
      transparent 60%
    ),
    radial-gradient(
      500px circle at 15% 45%,
      rgba(90, 160, 255, 0.18),
      rgba(90, 160, 255, 0.06) 40%,
      transparent 65%
    ),
    linear-gradient(
      180deg,
      #0a0618 0%,
      #0b0720 30%,
      #090615 60%,
      #06040f 100%
    );
}
/* Text */
.hero-text h1 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-text p {
  max-width: 460px;
  color: #cfd2ff;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Badge */


/* Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, #7b7cff, #5f61ff);
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;

}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(123, 124, 255, 0.4);
}


.btn-secondary {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 26px;
  margin-top: auto;
}

/* Image */
.hero-image {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  transform: rotate(-8deg); /* gives phone-like tilt */
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: transparent;
  padding: 20px 0;
}

/* Container */
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 55px;
}

/* Links */
.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

/* CTA Button */
.cta-btn {
  background: linear-gradient(135deg, #7b7cff, #5f61ff);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(123, 124, 255, 0.4);
}

.hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;   /* 👈 aligns text + image together */
  gap: 64px;
}
.menu-toggle {
  background: none;
  border: none;
  font-size: 26px;
  color: #ffffff;
  cursor: pointer;
  display: none;
}
@media (max-width: 900px) {
  
  .menu-toggle {
  display: block;
  }
  /* NAVBAR */
  .nav-links {
    display: none; /* hide links on mobile */
  }

  .cta-btn {
    display: none;
  }

  .logo img {
    height: 42px;
  }

  /* HERO */
  .hero {
    min-height: calc(100vh - 95px);
    padding: 40px 16px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-text{
    margin-top: 30px;
  }
  .hero-text h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .hero-text p {
    font-size: 16px;
    max-width: 100%;
  }

  /* BUTTONS */
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* IMAGE */
  .hero-image {
    margin-top: 0; /* REMOVE desktop offset */
  }

  .hero-image img {
    max-width: 280px;
    transform: rotate(0deg); /* no tilt on mobile */
  }
  

}


.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;

  background: rgba(6, 4, 15, 0.98);
  backdrop-filter: blur(10px);

  display: flex;
  flex-direction: column;
  align-items: center;

  max-height: 0;
  overflow: hidden;

  transition: max-height 0.35s ease;
  z-index: 999;
}

.mobile-menu a {
  width: 100%;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
  max-height: 300px;
}
/* =========================
   SERVICES SECTION
========================= */

.services {
  padding: 120px 24px;
  background: #06040f;
  min-height: calc(100vh - 95px);
}

.services-title {
  text-align: center;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 64px;
  color: #ffffff;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Card */
.service-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 32px;
  position: relative;

  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(123, 124, 255, 0.15);
}

/* Highlight card (top-left like reference) */
.service-card.highlight {
  background:
    radial-gradient(
      400px circle at top left,
      rgba(123, 124, 255, 0.35),
      rgba(123, 124, 255, 0.08),
      transparent 70%
    ),
    rgba(255, 255, 255, 0.05);
}

/* Icon */
.service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #7b7cff, #5f61ff);
  color: #fff;
  font-size: 22px;

  margin-bottom: 20px;
}

/* Text */
.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #cfd2ff;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .services {
    padding: 80px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* =========================
   WHY CHOOSE US
========================= */

.why-choose {
  padding: 180px 24px;
   min-height: calc(100vh - 95px); /* 👈 subtract navbar height */
  padding: 0 24px;

  display: flex;
  align-items: center;
  background-color:transparent;

}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  border-color: #786cfe;
  border-style:solid;
  border-radius:40px;
  border-width: thick;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative; /* REQUIRED */
  z-index: 1;
}
.why-container::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -70px;

  width: 220px;
  height: 160px;

  border: 5px solid rgba(123, 124, 255, 0.6);
  border-radius: 28px;

  z-index: -1;
}

/* Bottom-right decorative rectangle */
.why-container::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -70px;

  width: 240px;
  height: 180px;

  border: 5px solid rgba(123, 124, 255, 0.6);
  border-radius: 28px;

  z-index: -1;
}
/* LEFT IMAGES */
.why-images {
  position: relative;
}

.why-images .image {
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.08);
}

.why-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Main image */
.why-images .main {
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

/* Small images */
.why-images .small {
  width: 140px;
  height: 140px;
  position: absolute;
}

.why-images .small.top {
  top: -90px;
  left: 20px;
}

.why-images .small.bottom {
  bottom: -90px;
  right: 20px;
}

/* RIGHT CONTENT */
.why-content h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 56px;
}

.why-item {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.why-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #7b7cff, #5f61ff);
  color: #fff;
  font-weight: bold;
}

.why-item h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.why-item p {
  margin: 0;
  color: #cfd2ff;
  font-size: 15px;
  line-height: 1.6;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .why-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .why-images .small {
    display: none;
  }

  .why-item {
    justify-content: center;
    text-align: left;
  }
}
/* CONTACT SECTION */
.contact-section {
  padding: 120px 6%;
  background: #05030d;
  min-height: calc(100vh - 300px);
  margin-top: 50px;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.contact-tag {
  color: #7b7cff;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

.contact-left h2 {
  font-size: 42px;
  color: #fff;
  margin: 16px 0;
}

.contact-left h2 span {
  color: #7b7cff;
}

.contact-left p {
  color: #c6c6d3;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* SOCIALS */
.contact-socials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-socials a {
  padding: 12px 20px;
  border-radius: 50px;
  background: rgba(123,124,255,0.15);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.contact-socials a:hover {
  background: #7b7cff;
}

/* FORM */
.contact-form {
  background: transparent;
  padding: 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form input{
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.05);
  color: #fff;
  outline: none;
}
.contact-form textarea {
  width: 94%;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.05);
  color: #fff;
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}


/* MOBILE */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-left h2 {
    font-size: 34px;
  }

  .form-row {
    flex-direction: column;
  }
}
.contact-form .btn-primary {
  width: 100%;
  max-width: 100%;
  display: block;
}
.footer {
  background:rgba(140, 110, 255, 0.25);
  color: #ffffff;
  padding: 80px 6% 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-desc {
  margin-top: 15px;
  opacity: 0.85;
  line-height: 1.6;
  max-width: 300px;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ffffff;
  opacity: 0.9;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Newsletter */
.footer-newsletter form {
  display: flex;
  gap: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 30px;
  border: none;
  outline: none;
}

.footer-newsletter button {
  background: #ffffff;
  color: #786cfe;
  border: none;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

.footer-newsletter button:hover {
  opacity: 0.9;
}

/* Contact */
.footer-contact p {
  margin-bottom: 12px;
  opacity: 0.9;
}

/* Bottom */
.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-desc {
    margin: 0 auto;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter button {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .why-container::before,
  .why-container::after {
    display: none;
    content: none;
  }
}
@media (max-width:900px){
  .contact-section {
  min-height: none;
  margin-top: none;
}
}