/* Reset & base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; }

/* Top Bar */
#top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #ff8c00, #ff6600);
  color: #fff;
  padding: 6px 20px;
  font-size: 14px;
  position: relative;
  z-index: 100;
}
#top-left, #top-center, #top-right { display: flex; align-items: center; }
#top-left i { margin-right: 6px; }
#top-center a {
  width: 32px; height: 32px; margin: 0 4px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px; color: #fff; text-decoration: none;
}
#fb { background: #3b5998; } #x { background: #1da1f2; }
#yt { background: #ff0000; } #li { background: #0077b5; }
#top-right a { color: #fff; text-decoration: none; margin-right: 20px; }
#search-box { position: relative; }
#search-box input {
  width: 180px; padding: 4px 10px; border: none; border-radius: 2px;
}
#search-box button {
  position: absolute; right: 0; top: 0; bottom: 0;
  background: #c30; border: none; color: #fff; padding: 0 8px;
  border-radius: 0 2px 2px 0; cursor: pointer;
}

/* Main Header */
#main-header {
  display: flex; align-items: center;
  background: #fff; padding: 12px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky; top: 0; z-index: 90;
}
#logo img { height: 60px; }
#main-nav {
  display: flex; margin-left: 40px;
  flex-wrap: wrap; background: transparent;
}
#main-nav a {
  color: #333; text-decoration: none;
  margin-right: 30px; font-size: 15px;
  padding: 6px 0; transition: color 0.2s;
}
#main-nav a:hover { color: #ff6600; }

/* Remove any stray black background */
#main-nav { background-color: transparent; }

/* Responsive */
@media(max-width: 992px) {
  #main-nav { display: none; }
  #search-box input { width: 140px; }
}
@media(max-width: 768px) {
  #top-center { display: none; }
  #top-right a { margin-right: 12px; }
}
@media(max-width: 576px) {
  #search-box { display: none; }
}


/* footer */

/* footer.css */
/* Base reset */
#site-footer, #site-footer * { box-sizing: border-box; margin: 0; padding: 0; }
#site-footer { font-family: Arial, sans-serif; color: #fff; background: #0b1220; position: relative; }

/* Footer content grid */
#footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; padding: 60px 40px; }
#footer-content > div { flex: 1 1 220px; margin: 10px; }

/* Section headings */
#footer-content h3 { font-size: 18px; margin-bottom: 12px; color: #fff; }

/* About column */
#about-footer p { line-height: 1.6; margin-bottom: 16px; }
#read-more-btn {
  display: inline-block; background: #c30; color: #fff; text-decoration: none;
  padding: 10px 18px; font-weight: bold; border-radius: 2px;
}

/* Contact column */
#contact-footer p { margin-bottom: 8px; display: flex; align-items: center; }
#contact-footer i { margin-right: 8px; color: #c30; }
#contact-footer a { color: #c30; text-decoration: none; }
#social-footer { margin-top: 12px; }
#social-footer span { display: block; margin-bottom: 8px; color: #fff; }
.social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; margin-right: 8px;
  background: #fff; color: #333; border-radius: 4px; text-decoration: none;
}
.social-icon.fb { background: #3b5998; color: #fff; }
.social-icon.x  { background: #000; color: #fff; }
.social-icon.yt { background: #ff0000; color: #fff; }
.social-icon.li { background: #0077b5; color: #fff; }

/* Links & Services lists */
#links-footer ul, #services-footer ul { list-style: none; }
#links-footer li, #services-footer li { margin-bottom: 8px; }
#links-footer a, #services-footer a {
  color: #fff; text-decoration: none; display: flex; align-items: center;
  transition: color 0.2s;
}
#links-footer a:hover, #services-footer a:hover { color: #c30; }
#links-footer a::before, #services-footer a::before {
  content: "▶"; display: inline-block; margin-right: 6px; font-size: 12px;
}

/* Footer bottom bar */
#footer-bar {
  background: #c30; padding: 12px 40px; display: flex; justify-content: space-between;
  align-items: center;
}
#footer-bar .heart { color: #fff; margin: 0 4px; }

/* Floating buttons */
#whatsapp-btn, #email-btn {
  position: fixed; left: 20px; width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 24px; z-index: 200;
}
#whatsapp-btn { bottom: 100px; background: #25d366; }
#email-btn    { bottom: 40px; background: #f39c12; }
#scroll-top-btn {
  position: fixed; right: 20px; bottom: 40px;
  width: 50px; height: 50px; background: #c30; color: #fff;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 24px; z-index: 200; text-decoration: none;
  transition: background 0.2s;
}
#scroll-top-btn:hover { background: #a02a1a; }

/* Responsive */
@media(max-width: 768px) {
  #footer-content { flex-direction: column; padding: 40px 20px; }
  #footer-bar { flex-direction: column; text-align: center; }
}



/* --------------------FAQ---------------------- */

/* faq.css */
#faq-section {
  padding: 60px 20px;
  background: #ff7700;
  font-family: Arial, sans-serif;
}
#faq-section .container {
  max-width: 800px;
  margin: 0 auto;
}
#faq-section h2 {
  text-align: center;
  font-size: 32px;
  color: whitesmoke;
  margin-bottom: 16px;
  position: relative;
}
#faq-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #c30;
  margin: 8px auto 32px;
  border-radius: 2px;
}

.accordion .item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion .question {
  width: 100%;
  padding: 16px 20px;
  background: #f9f9f9;
  border: none;
  text-align: left;
  font-size: 18px;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.accordion .question .icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.accordion .answer {
  max-height: 0;
  padding: 0 20px;
  background: #000;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion .answer p {
  margin: 16px 0;
}

/* Open state */
.accordion .item.active .answer {
  max-height: 200px; /* adjust as needed for content length */
  padding: 16px 20px;
}

.accordion .item.active .question .icon {
  transform: rotate(45deg);
}


/* SECTION */

/* Positive Vashikaran Section */
#positive-section {
  background: url('bg-pattern.webp') center/cover no-repeat;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}
#positive-section .wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#positive-section h2 {
  font-size: 32px;
  margin-bottom: 8px;
}
#positive-section h2 span {
  color: #ffa500;
}
#positive-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ffa500;
  margin: 12px auto 24px;
  border-radius: 2px;
}
#positive-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.5;
}

.carousel {
  position: relative;
  overflow: hidden;
}
.carousel .cards {
  display: flex;
  transition: transform 0.4s ease;
}
.carousel .card {
  background: #fff;
  color: #333;
  min-width: 260px;
  margin: 0 10px;
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
}
.carousel .card img {
  width: 100%;
  display: block;
}
.carousel .card h3 {
  padding: 16px 8px;
  font-size: 16px;
}
.carousel .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #c30;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  z-index: 10;
}
.carousel .arrow.left { left: 0; }
.carousel .arrow.right { right: 0; }

.btn-more {
  display: inline-block;
  margin-top: 40px;
  background: #c30;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 2px;
  transition: background 0.3s;
}
.btn-more:hover {
  background: #a02a1a;
}

/* Responsive */
@media(max-width: 992px) {
  .carousel .card { min-width: 220px; }
}
@media(max-width: 768px) {
  #positive-section p { padding: 0 20px; }
  .carousel .card { min-width: 180px; }
}
@media(max-width: 576px) {
  .carousel .arrow { display: none; }
  .carousel .cards { justify-content: center; }
}


/* -------------------banner */

/* Hero Banner Section - Fixed Version */
#hero-banner {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('../img/banner.jpeg') center/cover no-repeat;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* Blurred Overlay */
#hero-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 27, 62, 0.8), rgba(75, 0, 130, 0.7));
  backdrop-filter: blur(2px);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px;
}

#hero-banner .banner-content {
  max-width: 800px;
  z-index: 2;
  width: 100%;
}

#hero-banner .banner-content h1 {
  font-size: 3.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  background: linear-gradient(45deg, #ffa500, #ff6347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#hero-banner .banner-content h2 {
  font-size: 1.8rem !important;
  font-weight: 400 !important;
  margin-bottom: 15px !important;
  color: #ffd700 !important;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

#hero-banner .banner-content p {
  font-size: 1.2rem !important;
  margin-bottom: 40px !important;
  line-height: 1.6 !important;
  opacity: 0.9;
}

/* Search Container - Fixed */
#hero-banner .search-container {
  margin-bottom: 40px !important;
}

#hero-banner .search-box {
  position: relative;
  max-width: 600px !important;
  margin: 0 auto 20px !important;
  width: 100% !important;
}

#hero-banner .search-box input {
  width: 100% !important;
  padding: 16px 60px 16px 20px !important;
  font-size: 16px !important;
  border: 2px solid rgba(255,255,255,0.2) !important;
  border-radius: 50px !important;
  background: rgba(255,255,255,0.1) !important;
  color: #fff !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-sizing: border-box !important;
  min-height: 56px !important;
}

#hero-banner .search-box input::placeholder {
  color: rgba(255,255,255,0.7) !important;
}

#hero-banner .search-box input:focus {
  outline: none !important;
  border-color: #ffa500 !important;
  background: rgba(255,255,255,0.15) !important;
  box-shadow: 0 0 20px rgba(255,165,0,0.3) !important;
}

#hero-banner .search-box button {
  position: absolute !important;
  right: 5px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 50px !important;
  height: 50px !important;
  background: linear-gradient(45deg, #ffa500, #ff6347) !important;
  border: none !important;
  border-radius: 50% !important;
  color: #fff !important;
  font-size: 18px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#hero-banner .search-box button:hover {
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 5px 15px rgba(255,165,0,0.4) !important;
}

/* Quick Links - Fixed */
#hero-banner .quick-links {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 15px !important;
  margin-bottom: 40px !important;
}

#hero-banner .quick-links span {
  font-weight: 600 !important;
  margin-right: 10px !important;
  color: #ffd700 !important;
}

#hero-banner .quick-links a {
  padding: 8px 16px !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 20px !important;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px !important;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

#hero-banner .quick-links a:hover {
  background: rgba(255,165,0,0.2) !important;
  border-color: #ffa500 !important;
  transform: translateY(-2px) !important;
}

/* CTA Buttons - Fixed */
#hero-banner .cta-buttons {
  display: flex !important;
  justify-content: center !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
  margin-top: 40px !important;
}

#hero-banner .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 15px 30px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-radius: 50px !important;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  min-height: 50px !important;
  min-width: 180px !important;
  box-sizing: border-box !important;
}

#hero-banner .btn.primary {
  background: linear-gradient(45deg, #ffa500, #ff6347) !important;
  color: #fff !important;
  border: 2px solid transparent !important;
}

#hero-banner .btn.primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(255,165,0,0.4) !important;
}

#hero-banner .btn.secondary {
  background: rgba(255,255,255,0.1) !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
}

#hero-banner .btn.secondary:hover {
  background: rgba(255,255,255,0.2) !important;
  border-color: #fff !important;
  transform: translateY(-3px) !important;
}

#hero-banner .btn.secondary i {
  margin-right: 8px !important;
  font-size: 16px !important;
}

/* Responsive Design - Fixed */
@media (max-width: 768px) {
  #hero-banner .banner-content h1 {
    font-size: 2.5rem !important;
  }
  
  #hero-banner .banner-content h2 {
    font-size: 1.4rem !important;
  }
  
  #hero-banner .banner-content p {
    font-size: 1rem !important;
  }
  
  #hero-banner .search-box input {
    padding: 14px 50px 14px 16px !important;
    font-size: 14px !important;
    min-height: 48px !important;
  }
  
  #hero-banner .search-box button {
    width: 44px !important;
    height: 44px !important;
    font-size: 16px !important;
  }
  
  #hero-banner .quick-links {
    justify-content: center !important;
  }
  
  #hero-banner .cta-buttons {
    flex-direction: column !important;
    align-items: center !important;
  }
  
  #hero-banner .btn {
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
    min-height: 48px !important;
  }
}

@media (max-width: 480px) {
  #hero-banner {
    height: 90vh !important;
  }
  
  #hero-banner .banner-content h1 {
    font-size: 2rem !important;
  }
  
  #hero-banner .banner-content h2 {
    font-size: 1.2rem !important;
  }
  
  #hero-banner .quick-links a {
    font-size: 12px !important;
    padding: 6px 12px !important;
  }
  
  #hero-banner .btn {
    max-width: 250px !important;
    padding: 12px 24px !important;
    font-size: 15px !important;
  }
}

/* award */

/* Awards & Recognition Section */
#awards-section {
  padding: 80px 20px;
  background: #ff7700;
  font-family: Arial, sans-serif;
  position: relative;
  overflow: hidden;
}

#awards-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('generated_image:2') center/cover no-repeat;
  opacity: 0.05;
  z-index: 1;
}

#awards-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 16px;
  font-weight: 700;
}

.section-header h2 span {
  color: #ffa500;
  background: linear-gradient(45deg, #ffa500, #ff6347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #ffa500, #ff6347);
  margin: 20px auto;
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Awards Grid */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.award-item {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.award-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, #ffa500, #ff6347);
  transition: left 0.3s ease;
}

.award-item:hover::before {
  left: 0;
}

.award-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Award Image */
.award-image {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(45deg, #ffa500, #ff6347);
  padding: 4px;
}

.award-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}

.award-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,165,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.award-item:hover .award-overlay {
  opacity: 1;
}

.award-overlay i {
  font-size: 2rem;
  color: #fff;
}

/* Award Content */
.award-content h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 12px;
  font-weight: 600;
}

.award-content p {
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.award-year {
  display: inline-block;
  background: linear-gradient(45deg, #ffa500, #ff6347);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Statistics Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffa500;
  margin-bottom: 8px;
  background: linear-gradient(45deg, #ffa500, #ff6347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
  #awards-section {
    padding: 60px 20px;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }
  
  .award-item {
    padding: 24px;
  }
  
  .award-image {
    width: 100px;
    height: 100px;
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 20px;
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .stats-row {
    grid-template-columns: 1fr;
  }
  
  .award-content h3 {
    font-size: 1.2rem;
  }
  
  .award-content p {
    font-size: 0.9rem;
  }
}


/* Footer above */


/* CTA Banner Section */
#cta-banner {
  background: linear-gradient(135deg, #c8102e 0%, #ff6b47 50%, #ffa726 100%);
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 200px;
  font-family: Arial, sans-serif;
}

.banner-container {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  height: 100%;
}

/* Ganesha Image */
.ganesha-image {
  flex: 0 0 300px;
  position: relative;
  z-index: 2;
}

.ganesha-image img {
  width: 100%;
  height: auto;
  max-width: 280px;
  display: block;
  margin-left: -20px;
}

/* Banner Content */
.banner-content {
  flex: 1;
  padding: 40px 60px 40px 20px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.banner-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-content p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 24px;
  opacity: 0.95;
  max-width: 600px;
}

/* Contact Info */
.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.phone-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  letter-spacing: 1px;
}

.or-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 10px;
}

.contact-btn {
  display: inline-block;
  padding: 12px 28px;
  background: rgba(255,255,255,0.2);
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-btn:hover {
  background: #fff;
  color: #c8102e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .banner-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .ganesha-image {
    flex: none;
    margin-bottom: 20px;
  }
  
  .ganesha-image img {
    max-width: 200px;
    margin-left: 0;
  }
  
  .banner-content {
    padding: 20px;
    text-align: center;
  }
  
  .banner-content h2 {
    font-size: 1.8rem;
  }
  
  .banner-content p {
    font-size: 1rem;
    max-width: none;
  }
  
  .contact-info {
    justify-content: center;
    gap: 15px;
  }
  
  .phone-number {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  #cta-banner {
    min-height: auto;
  }
  
  .banner-content h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  
  .banner-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 12px;
  }
  
  .phone-number {
    font-size: 1.2rem;
  }
  
  .or-text {
    font-size: 1rem;
    margin: 0;
  }
  
  .contact-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .banner-content {
    padding: 15px;
  }
  
  .banner-content h2 {
    font-size: 1.3rem;
    line-height: 1.3;
  }
  
  .banner-content p {
    font-size: 0.9rem;
  }
  
  .phone-number {
    font-size: 1.1rem;
  }
  
  .contact-btn {
    width: 100%;
    max-width: 200px;
  }
}

/* Animation on scroll */
@keyframes slideInFromLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.ganesha-image {
  animation: slideInFromLeft 0.8s ease-out;
}

.banner-content {
  animation: slideInFromRight 0.8s ease-out;
}

/* button inner page */

/* City Slider Section Styles */
.city-slider-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #c8102e 0%, #ff6b47 50%, #ffa726 100%);
  position: relative;
  overflow: hidden;
}

.city-slider-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.5;
}

.city-slider-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.section-header p {
  font-size: 2.1rem;
  color: #f0f0f0;
  margin: 0;
  margin-left: 270px;
}

.city-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.city-slider-container {
  overflow: hidden;
  flex: 1;
  border-radius: 15px;
}

.city-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}

.city-card {
  min-width: calc(25% - 15px);
  background: #ffffff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.city-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.city-card:hover::before {
  left: 100%;
}

.city-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.city-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.city-card:hover .city-icon {
  transform: rotate(360deg);
}

.city-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.city-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.city-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

.city-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.city-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
  color: #ffffff;
}

.slider-btn {
  background: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.slider-btn:hover {
  background: #f0f0f0;
  transform: scale(1.1);
}

.slider-btn i {
  font-size: 1.2rem;
  color: #667eea;
}

.slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.slider-btn:disabled:hover {
  transform: none;
  background: #ffffff;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ffffff;
  width: 30px;
  border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .city-card {
    min-width: calc(33.333% - 14px);
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .city-card {
    min-width: calc(50% - 10px);
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  
  .slider-btn i {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .city-slider-wrapper {
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .city-slider-section {
    padding: 40px 0;
  }
  
  .city-card {
    min-width: 100%;
  }
  
  .city-slider {
    gap: 15px;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .city-card {
    padding: 25px 15px;
  }
  
  .city-icon {
    width: 60px;
    height: 60px;
  }
  
  .city-icon i {
    font-size: 1.5rem;
  }
  
  .slider-btn {
    width: 35px;
    height: 35px;
  }
}


/* button inner page end */
