/* Reset & Fonts */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #111;
  color: #fff;
}

/* === HEADER STYLING === */
.site-header {
  background: radial-gradient(#1a0f0f, #000);
  padding: 10px 20px;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.header-wrapper {
  display: flex;

  align-items: center;
  flex-wrap: nowrap;
  position: relative;
}

.icon-group {
  display: flex;
  gap: 10px;
}

.icon {
  width: 100px;
  height: auto;
}

.logo-text {
  text-align: center;
  flex-grow: 1;

 
}

.logo-text .tagline {
  margin: 0;
font-family: 'Elephant', serif;
 
  font-size: 18px;
}

.logo-title {
  font-size: 24px;
  font-family: imprint-MT shadow;
  color: #ff007f;
  text-align: center;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
  position: absolute;
  top: 15px;
  right: 15px;
}

/* === NAV MENU === */
.main-menu {
  background: #f0f0f0;
}

.main-menu ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 10px;
  margin: 0;
  gap: 20px;
}

.main-menu a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  padding: 8px 15px;
  transition: all 0.2s ease;
}

.main-menu a:hover {
  background: #ddd;
  border-radius: 4px;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
  .header-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .icon-group {
    justify-content: center;
    flex-wrap: wrap;
  }

  .logo-text {
    margin: 10px 0;
  }

  .hamburger {
    display: block;
  }

  .main-menu {
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .main-menu.show {
    display: flex;
  }

  .main-menu ul {
    flex-direction: column;
    gap: 10px;
  }
}


.banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 450px; /* optional: limit height */
}
.text-box-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 40px 20px;
  background-color: #e9e6ce;
}

.text-box {
  background-color: #fff;
  color: #333;
  padding: 20px;
  margin: 15px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  width: 300px;
  max-width: 100%;
  text-align: center;
  transition: transform 0.3s ease;
}

.text-box:hover {
  transform: translateY(-5px);
}

.text-box h3 {
  color: #ff3c00;
  margin-bottom: 10px;
}
.intro-text {
  background: #4c5439;
  color: #f5f5f5;
  padding: 30px 10px;
  text-align: center;
  
}

.intro-text .container {
  max-width: 1100px;
  margin: 0 auto;
}

.intro-text h2 {
  font-size: 28px;
  margin-bottom: 5px;
  color: #0d0d0d;
}

.intro-text p {
  font-size: 17px;
  line-height: 1.6;
 margin: 0 0 0px 0;
}
.model-profiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  background-color: #f6f4f5;
  padding: 40px 20px;
}
.profile-box {
  background: #0084e5;
  border: 2px solid #fff;
  padding: 10px;
  flex: 1 1 calc(22% - 20px); /* wider boxes: now 4.5 per row approx */
  max-width: calc(22% - 20px);
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 420px; /* slightly taller */
  box-sizing: border-box;
}

.profile-box h3 {
  color: white;
  margin-bottom: 10px;
  font-size: 16px;
}

.profile-box img {
  width: 100%;
  height: 300px; /* increased height */
  object-fit: cover; /* important to make image fill frame properly */
  margin: 10px 0; /* small top/bottom gap */
  border: 2px solid white;
}

.profile-box p {
  color: white;
  font-weight: bold;
  margin: 0;
}

/* ✅ 2 per row on mobile */
@media (max-width: 768px) {
  .profile-box {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
.info-section {
  background-color: #3b525b;
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.info-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.info-sidebar {
  flex: 1 1 10px;
  background-color: #06ee35;
  padding: 20px;
  border-radius: 8px;
}

.info-sidebar button {
  display: block;
  width: 100%;
  background-color: #4c4843;
  color: white;
  border: none;
  padding: 12px;
  margin-bottom: 12px;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
  font-size: 14px;
}

.info-sidebar button i {
  margin-right: 8px;
}

.info-text {
  flex: 1 1 650px;
}

.info-text h2 {
  color: #ffb534;
  font-size: 22px;
  margin-bottom: 20px;
}

.info-text h2 span {
  color: #fff;
}

.info-text p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.highlight {
  color: #39a1ff;
}

/* Responsive: Stack on small devices */
@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
  }

  .info-sidebar, .info-text {
    flex: 1 1 100%;
  }
}
.site-footer {
  background-color: #000;
  text-align: center;
  padding: 20px 40px;
  font-family: Arial, sans-serif;
}

.footer-top-border {
  height: 3px;
  background: linear-gradient(to right, yellow, transparent, yellow);
  margin-bottom: 10px;
}

.footer-links {
	  margin-top: 25px;
  margin-bottom: 25px;
}

.footer-links a {
  color: #ccc;
  margin: 0 12px;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  color: #c49a3c;
  font-size: 14px;
}
.image-profiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.profile-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  background: #fff;
  transition: transform 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
}

.profile-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.profile-info {
  padding: 15px;
}

.profile-info .stars {
  color: #000;
  font-size: 14px;
  margin-bottom: 5px;
}

.profile-info h3 {
  margin: 5px 0;
  font-size: 16px;
   color: #000;
}

.profile-info p {
  color: #000;
  font-weight: bold;
  margin: 0;
}
.rate-list {
background: url('file:///D:/All-Project-File/Misssapna/missspanalucknowdesign/image/cg-banner.jpg') no-repeat center center/cover;
  position: relative;
  padding: 10px 20px;
  color: #fff;
}

.rate-list::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 1;
}

.rate-list-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.rate-list h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ffcc00;
}

.rate-list table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(255, 255, 255, 0.05);
  font-size: 16px;
}

.rate-list th,
.rate-list td {
  padding: 15px;
  border: 1px solid #ffcc00;
}

.rate-list th {
  background-color: rgba(255, 204, 0, 0.1);
  color: #ffcc00;
}

.rate-list tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.03);
}
.faq-testimonials-section {
  background: linear-gradient(to right, #2b0a3d, #470d1f); /* Dark purple to maroon */
  background: url('file:///D:/All-Project-File/Misssapna/missspanalucknowdesign/image/croppedhead.png') no-repeat center center / cover;
  color: #ffffff;
  padding: 20px 10px;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  align-items: flex-start;
}

.faq-box, .testimonial-box {
  flex: 1 1 45%;
}

.faq-box h2,
.testimonial-box h2 {
  color: #ffc107; /* Soft golden yellow */
  margin-bottom: 20px;
}

.faq-item {
  background-color: rgba(255, 255, 255, 0.07);
  color: #e0e0e0;
  padding: 5px 5px;
  border-radius: 20px;
  margin-bottom: 5px;
  border-left: 4px solid #ffc107;
}

.faq-item h3{
  padding: 5px 5px;
  margin-bottom: -5px;
   margin-top: 5px;

}

.testimonial-box blockquote {

  border-left: 4px solid #ffc107;
  padding-left: 15px;
  margin-bottom: 20px;
  color: #f5f5f5;
}

.testimonial-box em {
  color: #dddddd;
  font-style: italic;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}
.hindi-description li{
   
    padding: 7px 10px 7px 25px;
   
    border-radius: 5px;
   
}
.custom-table-section {
  padding: 40px 20px;
  background-color: #edf5f6;
  overflow-x: auto;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.custom-table th {
  background: linear-gradient(to bottom, #00c600, #006600);
  color: white;
  padding: 12px;
  font-size: 18px;
  letter-spacing: 1px;
}

.custom-table td {
  padding: 12px;
  border: 1px solid white;
  text-align: center;
}

.custom-table tr:nth-child(even) {
  background-color: #111;
}

.custom-table tr:nth-child(odd) {
  background-color: #1a1a1a;
}
.tag-cloud-section {
  padding: 30px 12px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.tag-heading {
  font-size: 20px;
  margin-bottom: 18px;
  color: #333;
}

.tag-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
 
}

.tag-container a {
  text-decoration: none;
  padding: 8px 14px;
  font-size: 14px;
  color: #fff;
  background-color: #007BFF; /* Default blue */
  border-radius: 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Color Variations */
.tag-container a:nth-child(4n) { background-color: #ffc107; color: #000; }
.tag-container a:nth-child(5n) { background-color: #28a745; }
.tag-container a:nth-child(6n) { background-color: #dc3545; }
.tag-container a:nth-child(7n) { background-color: #17a2b8; }
.tag-container a:nth-child(8n) { background-color: #6f42c1; }
.tag-container a:nth-child(9n) { background-color: #fd7e14; }

.tag-container a:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
/* =========================================
   Varanasi Explore Section
   ========================================= */

.varanasi-explore-section {
  width: 100%;
  padding: 35px 15px;
  background: #271b1b;
}

.varanasi-explore-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 35px;
  background: #f3f4fd;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.varanasi-explore-container h2 {
  margin: 0 0 18px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  color: #377b68;
}

.varanasi-explore-container p {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.75;
  color: #222222;
  text-align: left;
}

/* Benefits Grid */

.varanasi-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px 18px;
  margin: 12px 0 14px;
}

.varanasi-benefit {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  background: #f8f8f8;
  border-radius: 4px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.4;
  color: #222222;
}

.varanasi-benefit span {
  margin-right: 6px;
  color: #88767c;
  font-size: 17px;
  font-weight: 700;
}


/* =========================================
   Mobile
   ========================================= */

@media (max-width: 768px) {

  .varanasi-explore-section {
    padding: 20px 10px;
  }

  .varanasi-explore-container {
    padding: 18px 15px;
  }

  .varanasi-explore-container h2 {
    font-size: 21px;
  }

  .varanasi-explore-container p {
    font-size: 15px;
    line-height: 1.7;
  }

  .varanasi-benefits-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .varanasi-benefit {
    font-size: 14px;
  }
}