/* ****************************************************



             HEADER ALL .html




******************************************* */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Arial', sans-serif;
}

header {
  width: 100%;
  position: relative;
  z-index: 100;
  background: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.top-bar {
  background: linear-gradient(135deg, #850a07, #850a07 );
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.contact-info span:hover {
  transform: translateY(-2px);
}

.social-icons {
  display: flex;
  gap: 1.2rem;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.top-right-buttons {
  display: flex;
  gap: 1rem;
}

.appointment-btn {
  background: white;
  color: #850a07;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.appointment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background: #f8f8f8;
}

.logo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: white;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 70px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.logo h1 {
  font-size: 2.2rem;
  color: #850a07;
  margin: 0;
  letter-spacing: 1px;
}

.logo p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

.logo .since {
  font-size: 0.8rem;
  color: #666;
}

#mainNav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

#mainNav .nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #850a07;
  transition: width 0.3s ease;
}

#mainNav .nav-link:hover {
  color: #850a07;
}

#mainNav .nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #850a07;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.3s ease;
  z-index: 1001;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

.close-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  transition: transform 0.3s ease;
  z-index: 1002;
}

.close-menu:hover {
  transform: rotate(90deg);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .top-bar {
    padding: 0.8rem 1rem;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
  }

  .contact-info {
    order: 2;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .social-icons {
    order: 1;
  }

  .top-right-buttons {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .logo-nav {
    padding: 1rem;
  }

  .logo img {
    height: 60px;
  }

  .logo h1 {
    font-size: 1.8rem;
  }

  .logo p {
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: block;
  }

  #mainNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #850a07;
    flex-direction: column;
    padding: 4rem 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  #mainNav.active {
    right: 0;
  }

  #mainNav .nav-link {
    color: white;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  #mainNav .nav-link::after {
    background: white;
  }

  #mainNav .nav-link:hover {
    color: white;
  }

  .close-menu {
    display: block;
  }
}

@media (max-width: 480px) {
  .top-bar {
    padding: 0.6rem;
  }

  .contact-info span {
    font-size: 0.85rem;
  }

  .social-icons a {
    font-size: 1.3rem;
  }

  .logo-nav {
    padding: 0.8rem;
  }

  .logo img {
    height: 50px;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .logo p {
    font-size: 0.8rem;
  }

  #mainNav {
    width: 100%;
    max-width: none;
  }

  .appointment-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/***************************************************************************************



About Section Styles 



*******************************************************************************************/
.about-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-text h2 {
  color: #850a07;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #850a07;
}

.about-text .lead {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-description {
  margin-bottom: 3rem;
}

.about-description p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.services-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-category {
  margin-top: 2rem;
}

.service-category h3 {
  color: #850a07;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.service-category h3 i {
  font-size: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(133, 10, 7, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #850a07;
}

.service-card i {
  font-size: 2.5rem;
  color: #850a07;
  margin-bottom: 1rem;
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 5px;
}

.service-card h4 {
  color: #333;
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}

.service-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-card:hover h4,
.service-card:hover p {
  text-decoration: none;
}

/* Responsive Styles for About Section */
@media (max-width: 768px) {
  .about-section {
    padding: 3rem 1rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text .lead {
    font-size: 1.1rem;
  }

  .about-description p {
    font-size: 1rem;
  }

  .service-category h3 {
    font-size: 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card i {
    font-size: 2rem;
  }

  .service-card h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 2rem 1rem;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .service-category h3 {
    font-size: 1.3rem;
  }

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

  .service-card {
    padding: 1.2rem;
  }
}











/*******************************************************************************************8



Doctors Section Styles 



**********************************************************************************************/
.doctors-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
  text-align: center;
}

.doctors-section h2 {
  color: #850a07;
  font-size: 3rem;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.doctors-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #850a07;
  border-radius: 2px;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  justify-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.doctor-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  max-width: 320px;
  width: 100%;
  border: 1px solid rgba(133, 10, 7, 0.1);
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.doctor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(133, 10, 7, 0.05) 0%, rgba(133, 10, 7, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.doctor-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #850a07;
}

.doctor-card:hover::before {
  opacity: 1;
}

.doctor-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid #850a07;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(133, 10, 7, 0.2);
}

.doctor-card:hover img {
  border-color: #850a07;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(133, 10, 7, 0.3);
}

.doctor-card h4 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.doctor-card p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

/* Responsive Styles for Doctors Section */
@media (max-width: 1200px) {
  .doctors-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .doctors-section {
    padding: 4rem 1rem;
  }

  .doctors-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .doctors-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
  }

  .doctor-card {
    height: 420px;
    padding: 1.5rem;
    max-width: 300px;
  }

  .doctor-card img {
    width: 150px;
    height: 150px;
  }

  .doctor-card h4 {
    font-size: 1.3rem;
  }

  .doctor-card p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .doctors-section {
    padding: 3rem 1rem;
  }

  .doctors-section h2 {
    font-size: 2rem;
  }

  .doctors-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .doctor-card {
    height: 400px;
    padding: 1.2rem;
  }

  .doctor-card img {
    width: 130px;
    height: 130px;
  }

  .doctor-card h4 {
    font-size: 1.2rem;
  }
}






/* Media Gallery Section Styles */
.media-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
  contain: content;
}

.media-section h2 {
  color: #850a07;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.media-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #850a07;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px 0;
  contain: layout style paint;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  cursor: pointer;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.gallery-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(133, 10, 7, 0.9), rgba(133, 10, 7, 0.7));
  color: white;
  transition: bottom 0.3s ease;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  bottom: 0;
}

.gallery-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* Optimize animations */
@media (prefers-reduced-motion: reduce) {
  .gallery-item img,
  .gallery-overlay {
    transition: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
}

/* Responsive Styles for Media Gallery */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .media-section {
    padding: 3rem 1rem;
  }

  .media-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
  }

  .gallery-overlay h3 {
    font-size: 1.1rem;
  }

  .gallery-overlay p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .media-section {
    padding: 2rem 1rem;
  }

  .media-section h2 {
    font-size: 1.8rem;
  }

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

  .gallery-item {
    aspect-ratio: 16/9;
  }
}

/* CTA Section Styles */
.cta-section {
  background: linear-gradient(rgba(133, 10, 7, 0.9), rgba(133, 10, 7, 0.9)), url('../image/media1.JPG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  margin: 50px 0;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  color: white;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.9;
  animation: fadeInUp 1s ease;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: fadeIn 1.2s ease;
}

.cta-button {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.cta-primary {
  background: white;
  color: #850a07;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: #f8f8f8;
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-secondary:hover {
  background: white;
  color: #850a07;
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Styles for CTA Section */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 20px;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-content p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 40px 15px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Footer Styles */
footer {
  /* background: linear-gradient(to right, #850a07, lab(26.79% 28.85 29.31)); */
  background: #850a07;
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 50px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: 'BankGothic Md BT', 'Bank Gothic', sans-serif;
}

.footer-brand h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-family: 'BankGothic Md BT', 'Bank Gothic', sans-serif;
}

.footer-brand p {
  color: #e0e0e0;
  margin-bottom: 20px;
}

.social-icons-footer {
  display: flex;
  gap: 15px;
}

.social-icons-footer a {
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.social-icons-footer a:hover {
  transform: translateY(-3px);
  color: gold;
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-newsletter h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #850a07;
}

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

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

.footer-links ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links ul li a:hover {
  color: goldenrod;
  transform: translateX(5px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-item i {
  color: #850a07;
  font-size: 1.2rem;
  margin-top: 3px;
}

.contact-item p {
  color: #e0e0e0;
  margin: 0;
  line-height: 1.5;
}

.emergency-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.emergency-box i {
  font-size: 2rem;
  color: #850a07;
}

.emergency-info p {
  margin: 0;
  color: #e0e0e0;
}

.emergency-number {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  display: block;
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #e0e0e0;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand h3 {
    font-size: 2rem;
  }

  .social-icons-footer {
    justify-content: center;
  }

  .footer-links h4::after,
  .footer-contact h4::after,
  .footer-newsletter h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links ul li a {
    justify-content: center;
  }

  .contact-item {
    justify-content: center;
  }

  .emergency-box {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 40px 0 20px;
  }

  .footer-brand h3 {
    font-size: 1.8rem;
  }

  .emergency-box {
    flex-direction: column;
    text-align: center;
  }
}

/* Google Reviews Section Styles */
.google-reviews-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.reviews-title {
  text-align: center;
  color: #850a07;
  font-size: 2.5rem;
  margin-bottom: 40px;
  position: relative;
  font-weight: 700;
}

.reviews-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #850a07;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

.google-reviews {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.reviews-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.see-video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #850a07;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(133, 10, 7, 0.2);
}

.see-video-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(133, 10, 7, 0.3);
  background: #9a0c08;
}

.reviews-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  text-align: center;
}

.stat-item {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #850a07;
  margin-bottom: 10px;
  font-family: 'BankGothic Md BT', 'Bank Gothic', sans-serif;
}

.stat-label {
  color: #666;
  font-size: 1.1rem;
  font-weight: 500;
}

.leave-review-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #850a07;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #850a07;
  transition: all 0.3s ease;
}

.leave-review-link:hover {
  background: #850a07;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Styles for Google Reviews Section */
@media (max-width: 992px) {
  .reviews-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .google-reviews-section {
    padding: 60px 20px;
  }

  .reviews-title {
    font-size: 2rem;
  }

  .google-reviews {
    padding: 30px;
  }

  .reviews-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .stat-item {
    padding: 15px;
  }

  .stat-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .google-reviews-section {
    padding: 40px 15px;
  }

  .reviews-title {
    font-size: 1.8rem;
  }

  .google-reviews {
    padding: 20px;
  }

  .reviews-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-item {
    padding: 15px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .see-video-link,
  .leave-review-link {
    width: 100%;
    justify-content: center;
  }
}

/* Advanced Technologies Section Styles */
.technologies-section {
  padding: 6rem 2rem;
  background: #fefefe; /* A slightly warmer off-white */
  text-align: center;
}

.technologies-section h2 {
  color: #850a07;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  font-weight: 600;
}

.technologies-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #850a07;
  border-radius: 2px;
}

.technologies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.technology-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(133, 10, 7, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 300px; /* Adjust minimum height as needed */
  border: 1px solid transparent;
}

.technology-item:hover,
.technology-item:active {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(133, 10, 7, 0.2);
  border-color: #850a07;
}

.technology-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.technology-item:hover img,
.technology-item:active img {
  transform: scale(1.05);
}

.technology-item p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 500;
}

/* Responsive Styles for Advanced Technologies Section */
@media (max-width: 992px) {
  .technologies-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }

  .technology-item {
    min-height: 280px;
    padding: 1.2rem;
  }

  .technologies-section h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .technologies-section {
    padding: 4rem 1rem;
  }

  .technologies-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .technologies-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }

  .technology-item {
    min-height: 250px;
    padding: 1rem;
  }

  .technology-item p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .technologies-section {
    padding: 3rem 1rem;
  }

  .technologies-section h2 {
    font-size: 1.8rem;
  }

  .technologies-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .technology-item {
    min-height: auto;
  }
}

/* Service Modal Styles */
.service-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow-y: auto;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  width: 80%;
  max-width: 800px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #000;
}

.service-detail {
  padding: 20px 0;
}

.service-detail h2 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 28px;
}

.service-detail p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #444;
}

.service-features {
  margin: 25px 0;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.service-features h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.service-features ul {
  list-style-type: none;
  padding: 0;
}

.service-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.service-features li:before {
  content: "✓";
  color: #27ae60;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.service-cta {
  margin-top: 30px;
  text-align: center;
}

.service-cta .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #850a07;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 600;
  border: 2px solid #850a07;
}

.service-cta .btn:hover {
  background-color: white;
  color: #850a07;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(133, 10, 7, 0.2);
}

/* Responsive styles for modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
    padding: 20px;
  }
}

/* Fullscreen Slider Styles */
.fullscreen-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  transform: scale(1.1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.slider-img.active {
  opacity: 1;
  transform: scale(1);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
  z-index: 10;
}

.slider-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
  background: #850a07;
  transform: scale(1.2);
  border-color: #850a07;
}

.slider-dot:hover {
  background: #850a07;
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .fullscreen-slider {
    height: 60vh;
  }
  
  .slider-img {
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: none;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .fullscreen-slider {
    height: 50vh;
  }
  
  .slider-img {
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: none;
    width: 100%;
    height: 100%;
  }
}

/* Why Choose Us Section Styles */
.why-choose-us {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
  text-align: center;
}

.why-choose-us h2 {
  color: #850a07;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.why-choose-us h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #850a07;
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(133, 10, 7, 0.1);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #850a07;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: #850a07;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: #9a0c08;
}

.feature-card h3 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Styles for Why Choose Us Section */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
  }

  .feature-icon i {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 4rem 1rem;
  }

  .why-choose-us h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .feature-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .why-choose-us {
    padding: 3rem 1rem;
  }

  .why-choose-us h2 {
    font-size: 1.8rem;
  }

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

  .feature-card {
    padding: 1.2rem;
  }
}






























/* 

****************************************************************************************************




EMPANELMENT PAGE 




********************************************************************************************************** */




/* Empanelment Section Styles */
.empanelment-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}


.empanelment-title {
  font-size: 2.5rem;
  color: #850a07;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.empanelment-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #850a07;
}


.empanelment-desc {
  text-align: center;
  color: #666;
  font-size: 1.1rem; 
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.empanelment-categories {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.category {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.category:hover {
  transform: translateY(-5px);
}

.category h2 {
  color: #850a07;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.category h2::after {
  content: ''; 
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%); 
  width: 60px; 
  height: 2px;  
  background: #850a07; 
}

.logo-grid {  
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.logo-card {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  border: 1px solid #eee;
}

.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-color: #850a07;
}

.logo-wrapper {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  padding: 10px;
}

.logo-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-card:hover .logo-wrapper img {
  transform: scale(1.1);
}

.logo-card span {
  display: block;
  color: #333;
  font-weight: 500;
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
}

/* Empanelment Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
}

.modal-content {
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  padding: 40px;
  width: 90%;
  max-width: 800px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
  animation: slideIn 0.3s ease;
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.modal-header img {
  max-width: 250px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.modal-header h2 {
  color: #850a07;
  margin: 15px 0;
  font-size: 28px;
  font-weight: 600;
}

.modal-body {
  color: #444;
  line-height: 1.8;
  font-size: 16px;
  padding: 0 20px;
  max-height: 60vh;
  overflow-y: auto;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 32px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
  z-index: 1001;
}

.close-btn:hover {
  color: #850a07;
  background: #eee;
  transform: rotate(90deg);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
    padding: 30px;
  }
  
  .modal-header img {
    max-width: 200px;
  }
  
  .modal-header h2 {
    font-size: 24px;
  }

  .modal-body {
    font-size: 15px;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    margin: 5% auto;
    padding: 20px;
  }
  
  .modal-header img {
    max-width: 150px;
  }
  
  .modal-header h2 {
    font-size: 20px;
  }

  .close-btn {
    right: 15px;
    top: 15px;
    font-size: 28px;
    width: 40px;
    height: 40px;
  }
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.modal-header img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.modal-header h2 {
  margin: 0;
  color: #333;
  font-size: 24px;
}

.modal-body {
  color: #666;
  line-height: 1.6;
}

.modal-actions {
  margin-top: 20px;
  text-align: right;
}

.remove-btn {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s;
}

.remove-btn:hover {
  background-color: #c82333;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #333;
}

/* Make logo cards clickable */
.logo-card {
  cursor: pointer;
  transition: transform 0.3s;
}

.logo-card:hover {
  transform: translateY(-5px);
}





/* 
 <a href="https://wa.me/919877242893" class="whatsapp-btn" target="_blank">
    <i class="fab fa-whatsapp"></i> */            

/* WhatsApp Button Styles */
.whatsapp-btn {                                                      
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  background-color: #128C7E;
  color: white;
}

/* Responsive styles for WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 30px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .whatsapp-btn {
    width: 45px;
    height: 45px;
    font-size: 25px;
    bottom: 15px;
    right: 15px;
  }
}





/* Community Services Section */
.community-services {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
  position: relative;
}

.community-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #850a07;
}

.community-services h2 {
  text-align: center;
  color: #850a07;
  margin-bottom: 60px;
  font-size: 2.8rem;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.community-services h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #850a07;
  border-radius: 2px;
}

.community-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.community-services .service-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(133, 10, 7, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(133, 10, 7, 0.1);
}

.community-services .service-card.highlight {
  border-top: 5px solid #850a07;
}

.community-services .service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(133, 10, 7, 0.15);
}

.community-services .service-icon {
  width: 80px;
  height: 80px;
  background: #850a07;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.community-services .service-card:hover .service-icon {
  transform: scale(1.1);
  background: #850a07;
}

.community-services .service-icon i {
  font-size: 35px;
  color: white;
}

.community-services .service-card h3 {
  color: #850a07;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.community-services .service-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #850a07;
  border-radius: 2px;
}

.community-services .service-card p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.community-services .service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff5f5;
  padding: 20px;
  border-radius: 10px;
}

.community-services .service-features li {
  padding: 12px 0;
  color: #333;
  position: relative;
  padding-left: 35px;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(133, 10, 7, 0.1);
}

.community-services .service-features li:last-child {
  border-bottom: none;
}

.community-services .service-features li::before {
  content: '✓';
  color: #850a07;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .community-services {
    padding: 70px 0;
  }

  .community-services h2 {
    font-size: 2.4rem;
  }

  .community-services .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .community-services {
    padding: 50px 0;
  }

  .community-services h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .community-services .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .community-services .service-card {
    padding: 30px 20px;
  }

  .community-services .service-icon {
    width: 70px;
    height: 70px;
  }

  .community-services .service-icon i {
    font-size: 30px;
  }

  .community-services .service-card h3 {
    font-size: 1.6rem;
  }

  .community-services .service-features {
    padding: 15px;
  }

  .community-services .service-features li {
    padding: 10px 0 10px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .empanelment-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .empanelment-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

/* === Doctors Slider Styles === */
.doctors-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 40px 0 0 0;
}
.doctor-arrow {
  background: #850a07;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px #0002;
}
.doctor-arrow:active,
.doctor-arrow:focus {
  outline: none;
  background: #b13a1a;
  transform: scale(0.95);
}
.doctor-arrow-left {
  margin-right: 10px;
}
.doctor-arrow-right {
  margin-left: 10px;
}
.doctors-slider {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  gap: 24px;
  width: 100%;
  max-width: 950px;
}
.doctor-card {
  min-width: 280px;
  max-width: 320px;
  flex: 0 0 30%;
  margin: 0 8px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px #0001;
  padding: 24px 16px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.doctor-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 3px solid #850a07;
}
.doctor-card h4 {
  margin: 0;
  color: #850a07;
  font-size: 1.2rem;
  font-weight: bold;
}
.doctor-card p {
  font-size: 0.98rem;
  color: #444;
  margin: 8px 0 0 0;
}
@media (max-width: 900px) {
  .doctors-slider {
    max-width: 98vw;
  }
  .doctor-card {
    min-width: 220px;
    max-width: 260px;
    flex: 0 0 45%;
    padding: 18px 8px;
  }
}
@media (max-width: 600px) {
  .doctors-slider {
    max-width: 98vw;
    gap: 12px;
  }
  .doctor-card {
    min-width: 90vw;
    max-width: 90vw;
    flex: 0 0 90vw;
    padding: 14px 4px;
    font-size: 15px;
  }
  .doctor-arrow {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

/* Show grid on desktop/tablet, hide on mobile */
.doctors-grid { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.doctors-slider-mobile { display: none; }

@media (max-width: 600px) {
  .doctors-grid { display: none !important; }
  .doctors-slider-mobile { display: block !important; }
}

/* Doctors Slider Responsive Styles */
.doctors-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.doctor-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px #0002;
  padding: 32px 18px 28px 18px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 280px;
  max-width: 320px;
  flex: 1 1 280px;
  margin: 0 12px 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.doctor-card img {
  width: 160px;
  height: 160px;
  border-radius: 16px;
  object-fit: contain;
  margin-bottom: 18px;
  background: #f8f8f8;
  box-shadow: 0 2px 8px #0001;
}
.doctor-card h4 {
  margin: 0 0 8px 0;
  color: #4b2994;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.doctor-designation {
  display: block;
  color: #f5b700;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
.doctor-profile-btn {
  background: #6c4bb6;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 28px;
  font-size: 1.08rem;
  font-weight: 600;
  margin-top: auto;
  cursor: pointer;
  box-shadow: 0 2px 8px #0001;
  transition: background 0.2s, transform 0.2s;
}
.doctor-profile-btn:hover {
  background: #4b2994;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
  .doctor-card {
    min-width: 220px;
    max-width: 260px;
    flex: 1 1 220px;
    padding: 18px 8px 18px 8px;
  }
  .doctor-card img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 600px) {
  .doctors-slider {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .doctor-card {
    min-width: 85vw;
    max-width: 85vw;
    flex: 0 0 85vw;
    scroll-snap-align: start;
    padding: 14px 4px 18px 4px;
    font-size: 15px;
  }
  .doctor-card img {
    width: 90vw;
    max-width: 180px;
    height: 120px;
  }
  .doctors-slider::-webkit-scrollbar {
    display: none;
  }
  .doctors-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

