/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #0d1b2a, #1b263b, #415a77);
  color: #fff;
  line-height: 1.6;
}

/* ===== Containers ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== Header ===== */
.topbar {
  background: rgba(13, 27, 42, 0.8);
  backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}
.logo {
  height: 55px;
}
.nav {
  display: flex;
  gap: 1rem;
    font-size: 1.5rem;       /* bada title */
  font-weight: 700;        /* bold */
  color: #00d4ff;          /* theme blue */
  margin-bottom: 1.5rem;   /* thoda zyada space */
  text-align: center; 
}
.nav a {
  text-decoration: none;
  color: #ddd;
  font-weight: 500;
}
.nav a:hover {
  color: #00d4ff;
}
.btn {
  background: #00b4d8;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}
.btn:hover {
  background: #0096c7;
}
.btn.glow {
  box-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff;
}
.btn--sm {
  padding: 0.6rem 1.2rem; /* thoda height & width zyada */
  font-size: 1rem;        /* text thoda bada */
  font-weight: 700;       /* bold */
}

.nav .btn--sm.glow {
  box-shadow: 0 0 12px #00d4ff, 0 0 25px #00d4ff;
}

/* ===== Hero ===== */
.hero {
  padding: 6rem 0 4rem;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.hero__text h1 {
  font-size: 2.5rem;
  color: #00d4ff;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}
.badges {
  display: flex;
  gap: 1rem;
  list-style: none;
  flex-wrap: wrap;
}
.badges li {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
}
.hero__photo img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

/* ===== About ===== */
.section {
  padding: 4rem 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.checklist {
  list-style: none;
}
.checklist li::before {
  content: "✔ ";
  color: #00ffb3;
}
.stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 120px;
  padding: 1rem;
  border-radius: 15px;
  text-align: center;
}
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.stat__num {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00d4ff;
}

/* ===== Services ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem 1rem;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s ease;
}
.card i {
  font-size: 2rem;
  color: #00d4ff;
  margin-bottom: 1rem;
}
.card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

/* ===== Testimonials ===== */
.quotes {
  display: grid;
  gap: 1rem;
}
blockquote {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-left: 4px solid #00d4ff;
  font-style: italic;
}

/* ===== Contact ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-list {
  list-style: none;
  line-height: 1.8;
}
.map-wrap iframe {
  width: 100%;
  height: 200px;
  border: none;
  margin-top: 1rem;
}
.form label {
  display: block;
  margin: 0.5rem 0;
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 0.6rem;
  border-radius: 10px;
  border: none;
  margin-top: 0.3rem;
}
.form button {
  margin-top: 1rem;
  width: 100%;
}
.form__note {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* ===== Footer ===== */
.footer {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem 0;
  text-align: center;
}
.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero__grid, .about__grid, .contact__grid {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
}



.offers {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid #00d4ff;
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.offers h2 {
  color: #00d4ff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.offers ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offers li {
  font-size: 1rem;
  color: #fff;
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.offers li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
