.elementor-kit-14{--e-global-color-primary:#0693E3;--e-global-color-secondary:#FFFFFF;--e-global-color-text:#555555;--e-global-color-accent:#000000;--e-global-typography-primary-font-family:"Montserrat";--e-global-typography-primary-font-size:20px;--e-global-typography-primary-font-weight:700;--e-global-typography-primary-font-style:normal;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-secondary-font-style:normal;--e-global-typography-text-font-family:"Montserrat";--e-global-typography-text-font-size:18px;--e-global-typography-text-font-weight:400;--e-global-typography-text-font-style:normal;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-14 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.flip-button-inner {
  width: 280px;
  height: 80px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  
}

.flip-button:hover .flip-button-inner {
  transform: rotateY(180deg);
}

.flip-button-front,
.flip-button-back {
  position: absolute;
  width: 300px;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
}

.flip-button-front {
  background-color: #FF670B;
  color: white;
}

.flip-button-back {
  background-color: #333;
  color: #fff;
  transform: rotateY(180deg);
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

.doctor-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.doctor-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.doctor-card h3 {
  margin: 0;
  font-size: 20px;
  color: #0077b6;
}

.doctor-card h4 {
  margin: 5px 0 10px;
  font-weight: 500;
  color: #333;
}

.doctor-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}/* End custom CSS */