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

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    background: #000;
    border-bottom: 1px solid #111;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}
/* ===== NAV RIGHT STRUCTURE ===== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* MENU */
.menu {
  display: flex;
  gap: 28px;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.menu a:hover {
  color: #1e90ff;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
}

.logo span {
    font-size: 20px;
    font-weight: 600;
    color: #1e90ff;
}

nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

nav a:hover {
    color: #1e90ff;
}

.btn-primary {
    background: linear-gradient(135deg, #1e90ff, #0066ff);
    padding: 10px 20px;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #1e90ff;
    padding: 10px 20px;
    border-radius: 25px;
    color: #1e90ff;
    text-decoration: none;
}

/* HERO */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top, #001f3f, #000);
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    max-width: 600px;
    margin-bottom: 30px;
    color: #ccc;
}

.hero-buttons a {
    margin-right: 15px;
}

/* SECTIONS */
section {
    padding: 80px 0;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e90ff;
}

/* SERVICES */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #0a0a0a;
    padding: 30px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid #111;

    /* SHADOW */
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.15);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(30, 144, 255, 0.35);
    border-color: #1e90ff;
}

/* WHY */
.why ul {
    list-style: none;
}

.why li {
    margin: 15px 0;
    font-size: 18px;
}

/* CONTACT */
.contact-form {
    max-width: 500px;
    margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: none;
}

.contact-form textarea {
    height: 120px;
}

/* FOOTER */
.footer {
    background: #000;
    border-top: 1px solid #111;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-links a:hover {
    color: #1e90ff;
}

copyright {
    text-align: center;
    color: #666;
    margin-top: 20px;
}

/* RESPONSIVE */


body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    text-align: center;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, #001f3f, #000);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    width: 100%;
    text-align: center;
}
.why ul {
    list-style: none;
    padding: 0;
}

.why li {
    margin: 15px 0;
    font-size: 18px;
}
.contact-form {
    max-width: 500px;
    margin-top: 30px;
    width: 100%;
}

.contact-info {
    margin-bottom: 20px;
}
.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}
/* WHY CHOOSE US SECTION */
.why-choose-us {
  padding: 90px 5%;
  background: radial-gradient(circle at top, #0a0f1f, #000);
  text-align: center;
  color: #ffffff;
}

/* Heading */
.why-choose-us h2 {
  font-size: 2.6rem;
  margin-bottom: 60px;
}

.why-choose-us h2 span {
  color: #5b8cff;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  justify-items: center;
}

/* Card */
.why-card {
  background: linear-gradient(145deg, #0e1630, #070b18);
  padding: 35px 28px;
  border-radius: 22px;
  width: 100%;
  max-width: 340px;
  text-align: left;
  box-shadow:
    0 0 20px rgba(91, 140, 255, 0.25),
    inset 0 0 15px rgba(255, 255, 255, 0.03);
  transition: all 0.4s ease;
}

/* Hover Glow */
.why-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 0 40px rgba(91, 140, 255, 0.6),
    inset 0 0 25px rgba(255, 255, 255, 0.06);
}

/* Card Title */
.why-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: #ffffff;
}

/* Bullet List */
.why-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-card ul li {
  font-size: 0.95rem;
  color: #cfd8ff;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

/* Custom Bullet */
.why-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #5b8cff;
  font-size: 1.3rem;
  line-height: 1;
}
.navbar {
  width: 100%;
  padding: 20px 5%;
  background: linear-gradient(to right, #000814, #050b1f);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* MENU LINKS */
.menu {
  display: flex;
  gap: 32px;
}

.menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}

.menu a:hover {
  color: #5b8cff;
}

/* GET STARTED BUTTON */
.cta-btn {
  background: linear-gradient(135deg, #4f7cff, #2f5bff);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}
.thank-you {
    display: none;
    margin-top: 25px;
    padding: 20px;
    border-radius: 14px;
    background: rgba(30, 144, 255, 0.1);
    color: #1e90ff;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.25);
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ===== RESPONSIVE NAVBAR ===== */
@media (max-width: 900px) {

  .hamburger {
    display: block;
  }

  .nav-right {
    position: absolute;
    top: 75px;
    right: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    gap: 25px;
    padding: 25px 0;
    display: none;
    border-top: 1px solid #111;
  }

  .nav-right.active {
    display: flex;
  }

  .menu {
    flex-direction: column;
    gap: 20px;
  }

  .btn-primary {
    margin-top: 10px;
  }
}