/* ==== MAIN FIX FOR RIGHT SPACE ==== */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* हर element screen से बाहर ना जाए */
* {
  max-width: 100%;
}


/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #131438;
  color: #fff;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
header {
  background: #131438;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #ff2c55;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

nav a:hover {
  color: #ff2c55;
}

/* MOBILE MENU */
.menu-icon {
  display: none;
  font-size: 20px;
  cursor: pointer;
}

/* BUTTON */
.btn {
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
}

.btn-red {
  background: #008000;
  color: #fff;
}

/* HERO VIDEO */
.hero {
  height: 80vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ABOUT */
.about-section {
  padding: 40px 0;
  text-align: center;
}

/* PROFILE CARDS */
.profile-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.profile-card {
  background: #3b495a85;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.profile-card:hover {
  transform: translateY(-5px);
}

.profile-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.profile-info {
  padding: 15px;
}

.profile-info h3 {
  margin-bottom: 5px;
}

.details {
  font-size: 13px;
  color: #fff;
}

.desc {
  font-size: 14px;
  margin: 10px 0;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 10px;
}

.btn-whatsapp {
  background: green;
  color: #fff;
  padding: 6px 10px;
  text-decoration: none;
  border-radius: 5px;
}

.btn-call {
  background: #ff2c55;
  color: #fff;
  padding: 6px 10px;
  text-decoration: none;
  border-radius: 5px;
}

/* GALLERY */
.gallery-section {
  padding: 40px 0;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 15px;
}

.gallery-item {
  position: relative;
}

.gallery-item img {
  width: 100%;
  border-radius: 10px;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  width: 100%;
  text-align: center;
  padding: 5px;
  border-radius: 0 0 10px 10px;
}

/* PRICING */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #fff;
  padding: 10px;
  text-align: center;
}

.pricing-table th {
  background: #ff2c55;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-box {
  background: #3b495a85;
  padding: 20px;
  border-radius: 10px;
}

/* FAQ */
.faq-item {
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  padding: 10px;
  background: #222;
  color: #fff;
  border: none;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 10px;
  background: #111;
}

.faq-item.active .faq-answer {
  display: block;
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

.review-card {
  background: #3b495a85;
  padding: 20px;
  border-radius: 10px;
}

/* CONTACT */
#contact {
  text-align: center;
  padding: 40px 0;
}

.big-whatsapp-btn {
  display: inline-block;
  background: green;
  padding: 12px 20px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
}

/* FOOTER */
footer {
  background: #3b495a85;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
  }

  nav.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  body {
    font-size: 14px;
  }

  /* NAV FIX */
  .nav-container {
    flex-wrap: wrap;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #000;
    padding: 10px 0;
  }

  nav a {
    padding: 10px;
    border-top: 1px solid #222;
  }

  nav.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  /* HERO FIX */
  .hero {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 20px;
  }

  .hero-content p {
    font-size: 14px;
  }

  /* ABOUT */
  .about-section {
    padding: 20px 10px;
  }

  .about-section h1 {
    font-size: 18px;
  }

  /* CARDS FIX */
  .profile-cards {
    grid-template-columns: 1fr;
  }

  .profile-card img {
    height: 600px;
  }

  .buttons {
    flex-direction: column;
  }

  .buttons a {
    text-align: center;
    width: 100%;
  }

  /* GALLERY FIX */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img {
    height: 350px;
    object-fit: cover;
  }

  /* SERVICES */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* PRICING TABLE SCROLL */
  .pricing-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* REVIEWS */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* CONTACT */
  .big-whatsapp-btn {
    width: 100%;
    display: block;
  }
}
/* ===== FAQ PREMIUM DESIGN ===== */
.faq-section {
  padding: 40px 15px;
}

.faq-accordion {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  background: #3b495a85;
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.faq-item.active {
  box-shadow: 0 0 10px rgba(255,44,85,0.4);
}

.faq-question {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  background: #3b495a85;
  color: #fff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #111;
  transition: max-height 0.4s ease;
  padding: 0 15px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px;
}
/* ===== REVIEWS PREMIUM DESIGN ===== */
.reviews-section {
  padding: 40px 15px;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  margin-top: 20px;
}

.review-card {
  background: #3b495a85;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255,44,85,0.4);
}

/* QUOTE ICON */
.review-card::before {
  content: "“";
  font-size: 60px;
  position: absolute;
  top: 10px;
  left: 15px;
  color: rgba(255,255,255,0.05);
}

.stars {
  color: gold;
  margin-bottom: 10px;
  font-size: 16px;
}

.review-text {
  font-size: 14px;
  margin-bottom: 15px;
  color:  #fff;
}

.reviewer strong {
  color: #fff;
}

.reviewer span {
  font-size: 12px;
  color: #fff;
}
h2 {
  font-size: 22px;
  margin-bottom: 10px;
  position: relative;
}

h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #ff2c55;
  display: block;
  margin: 8px auto;
  border-radius: 5px;
}



