/* =====================================================
   SECTION START: JAIPUR HERO (THEME MATCH)
===================================================== */

.jaipur-hero-theme {
  position: relative;
  padding: 140px 20px 100px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;   /* 👈 Horizontal Center */
}

.jaipur-hero-theme .hero-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;            /* 👈 Extra Safety */
  text-align: center;
}

@media (max-width: 768px) {
  .jaipur-hero-theme {
    padding: 100px 20px 70px;
  }
}

/* Background Image */
.jaipur-hero-theme .hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/slider1.png') center/cover no-repeat;
  z-index: 0;
}

/* Same Overlay Style as Homepage */
.jaipur-hero-theme .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Content */
.jaipur-hero-theme .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #fff;
}

.jaipur-hero-theme h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.jaipur-hero-theme .hero-subheading {
  font-size: 18px;
  margin-bottom: 35px;
  color: #ddd;
}

/* Reusing same district-btn style from homepage */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {

  .jaipur-hero-theme {
    height: 80vh;
  }

  .jaipur-hero-theme h1 {
    font-size: 26px;
  }

  .jaipur-hero-theme .hero-subheading {
    font-size: 14px;
  }

}

/* =====================================================
   SECTION END: JAIPUR HERO (THEME MATCH)
===================================================== */

/* =========================================================
   SECTION START: ABOUT SERVICES – JAIPUR (WHITE THEME)
========================================================= */

.jaipur-about-theme {
  padding: 120px 20px;
  background: #ffffff;
  color: #333;
}

/* ===============================
   HEADER AREA
=============================== */

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header h2 {
  font-size: 38px;
  font-weight: 800;          /* Extra Bold */
  margin-bottom: 15px;
  color: #111;
}

.about-subtitle {
  color: #ff6a00;            /* Orange Accent */
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.5px;
}

/* ===============================
   CONTENT GRID
=============================== */

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
  font-size: 16px;
}

.about-text strong {
  color: #ff6a00;
  font-weight: 600;
}

/* ===============================
   FEATURE CARDS (LIGHT STYLE)
=============================== */

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.feature-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #111;
}

.feature-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  background: #ffffff;
}

/* =========================================================
   RESPONSIVE START: ABOUT SERVICES – JAIPUR
========================================================= */

/* Tablet */
@media (max-width: 992px) {

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

/* Mobile */
@media (max-width: 768px) {

  .jaipur-about-theme {
    padding: 80px 15px;
  }

  .about-header h2 {
    font-size: 24px;
  }

  .about-subtitle {
    font-size: 14px;
  }

  .about-text p {
    font-size: 14px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 22px;
  }

}

/* Small Mobile */
@media (max-width: 480px) {

  .about-header h2 {
    font-size: 20px;
  }

  .about-text p {
    font-size: 13px;
  }

}

/* =========================================================
   FEATURE CARDS – HOVER EFFECT UPGRADE
========================================================= */

.feature-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  cursor: pointer;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #111;
  transition: 0.3s ease;
}

.feature-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  transition: 0.3s ease;
}

/* 🔥 Hover Effect */

.feature-card:hover {
  transform: translateY(-10px);              /* Move Up */
  background: linear-gradient(145deg, #ff6a00, #ff8c00);
  box-shadow: 0 15px 35px rgba(255,106,0,0.25);
}

.feature-card:hover h3,
.feature-card:hover p {
  color: #ffffff;
}


/* =========================================================
   SECTION END: ABOUT SERVICES – JAIPUR
========================================================= */


/* =========================================================
   SECTION START: OUR DIGITAL MARKETING SERVICES – JAIPUR
========================================================= */

.jaipur-services-section {
  padding: 120px 20px;
  background: #f9f9f9;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

.services-subtitle {
  color: #ff6a00;
  font-weight: 600;
}

.service-block {
  max-width: 900px;
  margin: 0 auto 60px;
}

.service-block h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #111;
  font-weight: 700;
}

.service-block p {
  line-height: 1.8;
  color: #555;
  font-size: 16px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

  .jaipur-services-section {
    padding: 80px 15px;
  }

  .services-header h2 {
    font-size: 24px;
  }

  .service-block h3 {
    font-size: 18px;
  }

  .service-block p {
    font-size: 14px;
  }

}

/* =========================================================
   SECTION END: OUR DIGITAL MARKETING SERVICES – JAIPUR
========================================================= */

/* =========================================================
   SECTION START: WHY CHOOSE TALK2MARKET – JAIPUR
========================================================= */

.why-choose-jaipur {
  padding: 120px 20px;
  background: #ffffff;
}

.why-header {
  text-align: center;
  margin-bottom: 70px;
}

.why-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

.why-subtitle {
  color: #ff6a00;
  font-weight: 600;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: #f8f8f8;
  padding: 35px;
  border-radius: 12px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: center;
  cursor: pointer;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #111;
}

.why-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Hover Effect */
.why-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(145deg, #ff6a00, #ff8c00);
  box-shadow: 0 15px 35px rgba(255,106,0,0.25);
}

.why-card:hover h3,
.why-card:hover p {
  color: #ffffff;
}

/* =========================================================
   RESPONSIVE START
========================================================= */

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-choose-jaipur {
    padding: 80px 15px;
  }

  .why-header h2 {
    font-size: 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SECTION END: WHY CHOOSE TALK2MARKET – JAIPUR
========================================================= */


/* =========================================================
   SECTION START: AREAS WE SERVE – JAIPUR
========================================================= */

.jaipur-areas-section {
  padding: 120px 20px;
  background: #ffffff;
}

.areas-header {
  text-align: center;
  margin-bottom: 60px;
}

.areas-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

.areas-subtitle {
  color: #ff6a00;
  font-weight: 600;
}

.jaipur-areas-section .district-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.jaipur-areas-section .district-grid a {
  background: #f8f8f8;
  padding: 14px 10px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.jaipur-areas-section .district-grid a:hover {
  background: linear-gradient(145deg, #ff6a00, #ff8c00);
  color: #fff;
  transform: translateY(-5px);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 992px) {
  .jaipur-areas-section .district-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .jaipur-areas-section {
    padding: 80px 15px;
  }

  .jaipur-areas-section .district-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .areas-header h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .jaipur-areas-section .district-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SECTION END: AREAS WE SERVE – JAIPUR
========================================================= */


/* =========================================================
   SECTION START: JAIPUR CASE STUDY / RESULTS
========================================================= */

.jaipur-case-study {
  padding: 120px 20px;
  background: #f9f9f9;
}

.case-header {
  text-align: center;
  margin-bottom: 60px;
}

.case-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

.case-subtitle {
  color: #ff6a00;
  font-weight: 600;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.case-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #111;
}

.case-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.case-results {
  list-style: none;
  padding: 0;
}

.case-results li {
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
}

.case-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Growth Stats */

.growth-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-box {
  background: #ffffff;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.stat-box h3 {
  font-size: 28px;
  color: #ff6a00;
  margin-bottom: 10px;
}

.stat-box p {
  color: #666;
}

.stat-box:hover {
  transform: translateY(-6px);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 992px) {
  .case-grid {
    grid-template-columns: 1fr;
  }

  .growth-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .jaipur-case-study {
    padding: 80px 15px;
  }

  .case-header h2 {
    font-size: 24px;
  }

  .growth-stats {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SECTION END: JAIPUR CASE STUDY / RESULTS
========================================================= */


/* =========================================================
   SECTION START: FAQ – JAIPUR
========================================================= */

.jaipur-faq-section {
  padding: 120px 20px;
  background: #ffffff;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111;
}

.faq-subtitle {
  color: #ff6a00;
  font-weight: 600;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  padding: 18px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0 18px;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 18px;
}

/* =========================================================
   SECTION END: FAQ – JAIPUR
========================================================= */

/* =========================================================
   SECTION START: STRONG LOCAL CTA – JAIPUR
========================================================= */

.jaipur-cta-section {
  padding: 120px 20px;
  background: linear-gradient(180deg, #ffffff, #f8f8f8);
}

.jaipur-cta-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* CTA Text Area */

.cta-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
}

.cta-content h3 {
  color: #ff6a00;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-call-btn,
.cta-whatsapp-btn {
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-call-btn {
  background: #111;
  color: #fff;
}

.cta-call-btn:hover {
  background: #333;
}

.cta-whatsapp-btn {
  background: #25D366;
  color: #fff;
}

.cta-whatsapp-btn:hover {
  background: #1ebe5b;
}

/* Contact Form */

.cta-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6a00;
}

.cta-submit-btn {
  width: 100%;
  padding: 14px;
  background: #ff6a00;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-submit-btn:hover {
  background: #e65c00;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 992px) {

  .jaipur-cta-section .container {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {

  .jaipur-cta-section {
    padding: 80px 15px;
  }

  .cta-content h2 {
    font-size: 24px;
  }

}

/* Disable textarea resize */
textarea {
  resize: none;
}

/* Terms link orange */
.terms-box a {
  color: #ff6a00;
  font-weight: 600;
  text-decoration: none;
}

.terms-box a:hover {
  text-decoration: underline;
}
/* ===============================
   CONTACT BOX HOVER ORANGE FIX
=============================== */

.contact-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-card h3 {
  transition: color 0.3s ease;
}

.contact-card i {
  transition: color 0.3s ease;
}

.contact-card:hover h3 {
  color: #ff6a00 !important;
}

.contact-card:hover i {
  color: #ff6a00 !important;
}

/* =========================================================
   SECTION END: STRONG LOCAL CTA – JAIPUR
========================================================= */

