/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #0f172a;
  background: #fdf2f8; /* light pink base */
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffffcc;
  border-bottom: 1px solid #fee2e2;
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0; /* thoda slim navbar */
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  height: 45px;   /* yahi size change kiya hai */
  width: auto;
  object-fit: contain;
}

.logo-mark {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #ffffff;
  font-weight: 700;
  padding: 0.4rem 0.6rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
}

.logo-text h1 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.logo-text p {
  font-size: 0.7rem;
  color: #6b7280;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav a {
  color: #4b5563;
  position: relative;
  padding-bottom: 0.15rem;
  transition: color 0.2s, transform 0.1s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1e3a8a, #ec4899);
  border-radius: 999px;
  transition: width 0.2s;
}

.nav a:hover {
  color: #111827;
  transform: translateY(-1px);
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-block;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: transparent;
  border: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(30, 64, 175, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(30, 64, 175, 0.6);
}

.btn-outline {
  background: #ffffff;
  color: #1e3a8a;
  border: 1px solid #fecaca;
}

.btn-outline:hover {
  background: #fef2f2;
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
}

.btn-block {
  width: 100%;
}

.btn-link {
  font-size: 0.85rem;
  color: #1e3a8a;
  font-weight: 500;
}

/* ===== HERO ===== */
.hero {
  padding: 4rem 0 3rem;
  background: radial-gradient(circle at top left, #fce7f3 0, #eff6ff 40%, #ffffff 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.hero-content p {
  color: #4b5563;
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: #fdf2f8;
  color: #be185d;
  border: 1px solid #f9a8d4;
  font-size: 0.75rem;
  margin-bottom: 0.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat-box {
  background: linear-gradient(135deg, #ffffff, #fee2e2);
  border-radius: 0.9rem;
  padding: 0.7rem 0.9rem;
  min-width: 100px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  border: 1px solid #fecaca;
}

.stat-box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.1rem;
  color: #1e3a8a;
}

.stat-box p {
  font-size: 0.75rem;
  color: #6b7280;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.45);
  border: 3px solid #fecaca;
}

/* ===== SECTIONS ===== */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: #ffffff;
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  color: #1e3a8a;
}

.section-head p {
  color: #6b7280;
}

/* GRID */
.grid {
  display: grid;
  gap: 1.5rem;
}

/* ===== SERVICES ===== */
.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  border: 1px solid #ffe4e6;
}

.service-card h3 {
  margin-bottom: 0.4rem;
  color: #111827;
}

.service-card p {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.6rem;
}

.service-list {
  list-style: none;
  margin-bottom: 0.7rem;
}

.service-list li {
  font-size: 0.82rem;
  color: #6b7280;
}

/* ===== ABOUT / TABS ===== */
.about-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-intro {
  color: #4b5563;
  margin: 0.7rem 0 1rem;
}

.tabs {
  background: #fdf2f8;
  border-radius: 1rem;
  padding: 0.8rem;
  border: 1px solid #fecaca;
}

.tab-buttons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.tab-btn {
  flex: 1;
  border-radius: 999px;
  border: none;
  padding: 0.45rem;
  font-size: 0.8rem;
  cursor: pointer;
  background: transparent;
  color: #be185d;
  border: 1px solid transparent;
}

.tab-btn.active {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #ffffff;
  border-color: transparent;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: #1e3a8a;
}

.tab-content p {
  font-size: 0.86rem;
  color: #4b5563;
  margin-bottom: 0.7rem;
}

.about-right img {
  border-radius: 1.2rem;
  box-shadow: 0 16px 30px rgba(190, 24, 93, 0.35);
  border: 3px solid #f9a8d4;
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card h3 {
  margin-bottom: 0.3rem;
  color: #111827;
}

.project-card p {
  font-size: 0.85rem;
  color: #4b5563;
  margin-bottom: 0.6rem;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
}

/* ===== CONTACT ===== */
.contact-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.contact-left h2 {
  color: #1e3a8a;
}

.contact-left p {
  color: #4b5563;
  margin: 0.5rem 0 1rem;
}

.contact-buttons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.contact-details p {
  font-size: 0.85rem;
  color: #374151;
}

/* FORM */
.contact-form {
  background: #fdf2f8;
  padding: 1.2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  border: 1px solid #f9a8d4;
}

.form-group {
  margin-bottom: 0.8rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border-radius: 0.6rem;
  border: 1px solid #fecaca;
  font-size: 0.85rem;
  outline: none;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ec4899;
  box-shadow: 0 0 0 1px #f9a8d4;
}

.form-note {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 99;
}

.float-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
  border: none;
}

.float-btn.call {
  background: #1e3a8a;
  color: #ffffff;
}

.float-btn.whatsapp {
  background: #25D366;   /* WhatsApp green */
  color: #ffffff;
  border-radius: 999px;
  border: 2px solid #ffffff;
}

/* ===== FOOTER ===== */
.footer {
  background: radial-gradient(circle at top, #1e3a8a, #020617);
  color: #e5e7eb;
  padding: 1.2rem 0;
  margin-top: 2rem;
}

.footer-container {
  text-align: center;
  font-size: 0.8rem;
}

.footer-small {
  color: #f9a8d4;
  margin-top: 0.2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-container,
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-image {
    order: -1;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .nav {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
  background: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 0.7rem 0;
    gap: 0.7rem;
    display: none;
    border-bottom: 1px solid #fee2e2;
  }

  .nav.show {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-container {
    gap: 1.8rem;
  }

  .hero-content h2 {
    font-size: 1.6rem;
  }

  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .header {
    position: sticky;
  }
}
/* ===== NAVBAR DROPDOWN ===== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-radius: 8px;
  z-index: 999;
  overflow: hidden;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #f5f7fa;
  color: #0a7cff;
}

/* Hover show dropdown (Desktop) */
.dropdown:hover .dropdown-content {
  display: block;
}
