:root {
  --primary: #0D6EFD;
  --secondary: #20C997;
  --accent: #FFC107;
  --white: #FFFFFF;
  --light: #F8F9FA;
  --dark: #212529;
  --text: #5c6670;
  --heading: #15233b;
  --border: #e8edf5;
  --shadow-sm: 0 8px 25px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 20px 45px rgba(16, 24, 40, 0.12);
  --shadow-lg: 0 25px 60px rgba(13, 110, 253, 0.18);
  --radius: 18px;
  --radius-lg: 28px;
  --transition: all 0.35s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.brand-title,
.section-title h2,
.hero-title {
  font-family: 'Poppins', sans-serif;
  color: var(--heading);
  font-weight: 700;
}

p {
  line-height: 1.8;
  margin-bottom: 0;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

.section-padding {
  padding: 100px 0;
}

.bg-light {
  background-color: #f8fbff !important;
}

.btn {
  border-radius: 50px;
  font-weight: 600;
  padding: 12px 24px;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #0050c8);
  border: none;
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(13, 110, 253, 0.3);
}

.btn-outline-primary {
  border: 1.5px solid var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.section-title {
  max-width: 760px;
  margin: 0 auto;
}

.section-title .section-tag {
  display: inline-block;
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title p {
  font-size: 1.05rem;
}

/* Topbar */
.topbar {
  background: linear-gradient(135deg, #0d2b57, #0D6EFD);
  color: #dce8ff;
  font-size: 14px;
}

.topbar i {
  color: #fff;
}

.topbar a {
  color: #fff;
}

/* Navbar */
.main-navbar {
  padding: 14px 0;
  transition: var(--transition);
  z-index: 999;
}

.logo-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef5ff, #d8e9ff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-title {
  font-size: 1.2rem;
  color: var(--heading);
}

.brand-subtitle {
  color: var(--primary);
  font-weight: 600;
}

.navbar-nav .nav-link {
  color: var(--heading);
  font-weight: 600;
  margin: 0 8px;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 16px);
}

.btn-nav {
  padding: 11px 18px;
  font-size: 14px;
}

/* Hero */
.hero-section {
  background:
    linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(32, 201, 151, 0.08)),
    linear-gradient(180deg, #ffffff, #f6fbff);
  position: relative;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  background: rgba(13, 110, 253, 0.12);
  top: -80px;
  left: -80px;
}

.hero-shape-2 {
  width: 350px;
  height: 350px;
  background: rgba(32, 201, 151, 0.12);
  bottom: -120px;
  right: -80px;
}

.hero-content,
.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  font-weight: 700;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 0;
}

.hero-title span {
  color: var(--primary);
}

.hero-text {
  font-size: 1.08rem;
  max-width: 95%;
}

.hero-feature-card {
  display: flex;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.hero-feature-card i {
  font-size: 1.5rem;
  color: var(--secondary);
}

.hero-feature-card h6 {
  font-weight: 700;
}

.hero-feature-card p {
  font-size: 14px;
}

.hero-btn {
  min-width: 180px;
}

.stat-box {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.stat-box h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.stat-box p {
  font-weight: 600;
  color: var(--heading);
}

.hero-image-wrapper {
  padding: 30px;
}

.hero-image-card {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-main-image {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: floatY 3.2s ease-in-out infinite;
}

.floating-card i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
}

.floating-card h6 {
  margin-bottom: 2px;
  font-weight: 700;
}

.floating-card p {
  font-size: 13px;
}

.floating-card-1 {
  top: 60px;
  left: -20px;
}

.floating-card-2 {
  right: -10px;
  top: 40%;
  animation-delay: 0.8s;
}

.floating-card-3 {
  left: 20px;
  bottom: 30px;
  animation-delay: 1.3s;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Emergency strip */
.emergency-strip {
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.emergency-strip .container {
  background: linear-gradient(135deg, #0d6efd, #0d4fc0);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 30px;
}

.emergency-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: #fff;
}

.emergency-item .icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.emergency-item .icon i {
  font-size: 1.4rem;
}

.emergency-item h6 {
  color: #fff;
  margin-bottom: 6px;
  font-weight: 700;
}

/* About */
.about-images {
  position: relative;
  padding-right: 30px;
}

.about-main-image img {
  box-shadow: var(--shadow-md);
  min-height: 560px;
  object-fit: cover;
}

.about-small-card {
  position: absolute;
  right: 0;
  bottom: 40px;
  background: #fff;
  border-radius: 22px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow-md);
  max-width: 280px;
}

.about-small-card i {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.15);
  color: #d69a00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.about-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.about-info-card .icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.about-info-card h5 {
  margin-bottom: 10px;
}

/* Services */
.service-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(13, 110, 253, 0.06);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.service-image {
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-icon {
  position: absolute;
  right: 20px;
  bottom: -25px;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), #0053cf);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 12px 25px rgba(13, 110, 253, 0.28);
}

.service-content {
  padding: 35px 24px 24px;
}

.service-content h5 {
  margin-bottom: 12px;
}

.read-more-btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
}

.read-more-btn:hover {
  gap: 12px;
  color: var(--secondary);
}

/* Why choose */
.why-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.why-card .icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.12), rgba(32, 201, 151, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.6rem;
}

/* Doctors */
.doctor-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}

.doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.doctor-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.doctor-content {
  padding: 26px;
}

.doctor-role {
  display: block;
  color: var(--primary);
  font-weight: 600;
  margin: 8px 0 16px;
}

.doctor-meta {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doctor-meta li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.doctor-meta i {
  color: var(--secondary);
  margin-top: 3px;
}

.doctor-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.doctor-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1f7ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.doctor-socials a:hover {
  background: var(--primary);
  color: #fff;
}

/* Process */
.process-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.process-number {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1rem;
  font-weight: 800;
  color: rgba(13, 110, 253, 0.18);
}

.process-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

/* Gallery */
.gallery-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 110, 253, 0.05), rgba(13, 110, 253, 0.75));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: var(--transition);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.clinic-gallery-carousel .carousel-item {
  padding: 10px 0 0;
}

/* Pricing */
.pricing-card {
  background: #fff;
  border-radius: 28px;
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  background: linear-gradient(180deg, #ffffff, #f3f8ff);
  border: 2px solid rgba(13, 110, 253, 0.2);
  transform: scale(1.02);
}

.pricing-top {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-badge {
  display: inline-block;
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 14px;
}

.pricing-top h3 {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.pricing-list li {
  padding: 12px 0;
  border-bottom: 1px dashed #e5edf8;
  display: flex;
  gap: 10px;
}

.pricing-list i {
  color: var(--secondary);
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border: 1px solid var(--border);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-top img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  color: #ffb400;
}

.testimonial-card p {
  font-style: italic;
}

/* Video */
.video-wrapper {
  max-width: 950px;
  margin: 0 auto;
}

/* FAQ */
.custom-accordion .accordion-item {
  border: none;
  margin-bottom: 16px;
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.custom-accordion .accordion-button {
  font-weight: 700;
  padding: 20px 24px;
  background: #fff;
  color: var(--heading);
  box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: rgba(13, 110, 253, 0.06);
  color: var(--primary);
}

.custom-accordion .accordion-body {
  padding: 0 24px 24px;
  background: #fff;
}

/* Appointment */
.appointment-section {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.appointment-info {
  display: grid;
  gap: 16px;
}

.appointment-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.appointment-info-card i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.appointment-form-card {
  background: #fff;
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.form-control,
.form-select {
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid #dbe6f2;
  padding: 12px 16px;
  box-shadow: none !important;
}

textarea.form-control {
  min-height: 140px;
  resize: none;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
}

/* Map */
.map-placeholder {
  min-height: 520px;
  background:
    linear-gradient(rgba(13, 110, 253, 0.55), rgba(13, 110, 253, 0.55)),
    url('https://images.unsplash.com/photo-1529257414771-1960b7bea640?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.map-overlay-content {
  background: rgba(255,255,255,0.95);
  max-width: 700px;
  padding: 36px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

/* Contact */
.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.contact-card .icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.12), rgba(32, 201, 151, 0.12));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

/* Footer */
.footer-section {
  background: #0e1b31;
  color: #c5d1e6;
  padding: 90px 0 30px;
}

.footer-section p,
.footer-section li,
.footer-section small {
  color: #c5d1e6;
}

.footer-logo {
  width: 58px;
  height: 58px;
}

.footer-widget h5 {
  color: #fff;
  margin-bottom: 20px;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 12px;
}

.footer-widget ul li a {
  color: #c5d1e6;
}

.footer-widget ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 4px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-socials a:hover {
  background: var(--primary);
}

.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 35px 0 25px;
}

/* Floating buttons */
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.fab:hover {
  transform: translateY(-4px) scale(1.04);
  color: #fff;
}

.fab-whatsapp { background: #25D366; }
.fab-call { background: var(--primary); }
.fab-book { background: #ff9800; }
.fab-top { background: #0e1b31; }

#scrollTopBtn {
  opacity: 0;
  visibility: hidden;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

/* Gallery modal */
.gallery-modal-content {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.gallery-close-btn {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 10;
  background: #fff;
  border-radius: 50%;
  opacity: 1;
  padding: 10px;
}

/* Toast */
.toast-container-custom {
  z-index: 1100;
}

/* Reveal animations */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-active {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.about-small-card{
  transition:all .35s ease !important;
  cursor:pointer;
  border-radius:16px;
}

.about-small-card:hover{
  transform:translateY(-8px) scale(1.02) !important;
  box-shadow:0 18px 40px rgba(13,110,253,.16) !important;
}

.about-small-card i,
.about-small-card .hero-year-title{
  transition:all .35s ease;
}

.about-small-card:hover i{
  transform:scale(1.15) rotate(8deg);

}

.about-small-card:hover .hero-year-title{
  
  transform:scale(1.05);
}
.about-info-card{
  transition:all .35s ease !important;
  cursor:pointer;
  border-radius:18px;
}

.about-info-card:hover{
  transform:translateY(-10px) scale(1.02) !important;
  box-shadow:0 20px 42px rgba(13,110,253,.16) !important;
}

.about-info-card .icon,
.about-info-card h5{
  transition:all .35s ease;
}

.about-info-card:hover .icon{
  transform:scale(1.15) rotate(8deg);
  color:#0D6EFD;
}

.about-info-card:hover h5{
  color:#0D6EFD;
}
/* =========================
   FAQ SECTION
========================= */
.faq-card{
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(13, 110, 253, 0.08);
  border: 1px solid rgba(13, 110, 253, 0.08);
}

.faq-accordion{
  display: flex;
  flex-direction: column;
  gap: 16px; /* ye questions ke beech ka gap hai */
}

.faq-item{
  border: 0 !important;
  border-radius: 18px !important;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(33, 37, 41, 0.06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.faq-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 110, 253, 0.12);
}

.faq-item .accordion-button{
  background: #ffffff;
  color: #212529;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.2rem 1.25rem;
  border: 0;
  box-shadow: none !important;
}

.faq-item .accordion-button:not(.collapsed){
  background: linear-gradient(135deg, rgba(13,110,253,0.08), rgba(32,201,151,0.08));
  color: #0d6efd;
}

.faq-item .accordion-button:focus{
  box-shadow: none !important;
  border: 0 !important;
}

.faq-item .accordion-button::after{
  transform: scale(1.05);
}

.faq-item .accordion-body{
  padding: 0 1.25rem 1.25rem;
  color: #5c6670;
  line-height: 1.75;
  background: #fff;
}

/* Bootstrap accordion default line remove */
.faq-accordion .accordion-item:first-of-type,
.faq-accordion .accordion-item:last-of-type{
  border-radius: 18px !important;
}

/* Open item thoda highlight */
.faq-item:has(.accordion-button:not(.collapsed)){
  box-shadow: 0 20px 45px rgba(13, 110, 253, 0.14);
  transform: translateY(-2px);
}
/* =========================
   MAP SECTION FINAL
========================= */
.map-section{
  position: relative;
  background: linear-gradient(180deg, #f8fbff 0%, #eef7ff 100%);
  overflow: hidden;
}

.map-card{
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(13, 110, 253, 0.12);
  border: 1px solid rgba(13, 110, 253, 0.08);
  transition: transform .45s ease, box-shadow .45s ease;
}

.map-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 85px rgba(13, 110, 253, 0.16);
}

.map-card-top{
  padding: 28px 28px 22px;
  background:
    linear-gradient(135deg, rgba(13,110,253,0.08), rgba(32,201,151,0.10));
  border-bottom: 1px solid rgba(13, 110, 253, 0.08);
}

.map-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  color: #0d6efd;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.08);
  margin-bottom: 22px;
}

.map-badge i{
  font-size: 1rem;
}

.map-info-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.map-info-item{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(13, 110, 253, 0.08);
  border-radius: 18px;
  padding: 16px 16px;
  transition: transform .35s ease, box-shadow .35s ease;
}

.map-info-item:hover{
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(13, 110, 253, 0.12);
}

.map-info-item i{
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13,110,253,0.12), rgba(32,201,151,0.14));
  color: #0d6efd;
  font-size: 1.1rem;
}

.map-info-item h6{
  margin-bottom: 4px;
  font-weight: 700;
  color: #212529;
}

.map-info-item p{
  margin: 0;
  font-size: 0.95rem;
  color: #5f6b7a;
  line-height: 1.6;
}

.map-frame{
  width: 100%;
  height: 480px; /* rectangle size */
  position: relative;
  overflow: hidden;
}

.map-frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Tablet */
@media (max-width: 991.98px){
  .map-info-grid{
    grid-template-columns: 1fr;
  }

  .map-frame{
    height: 400px;
  }
}

/* Mobile */
@media (max-width: 575.98px){
  .map-card{
    border-radius: 20px;
  }

  .map-card-top{
    padding: 20px 16px 18px;
  }

  .map-badge{
    padding: 9px 14px;
    font-size: 0.92rem;
  }

  .map-info-item{
    padding: 14px;
    border-radius: 16px;
  }

  .map-info-item i{
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .map-frame{
    height: 320px;
  }
}
.navbar .nav-link{
  text-transform: uppercas;
}