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

:root {
  --primary-color: #007b9a;
  --secondary-color: #00acc1;
  --accent-color: #ff6f00;
  --dark-blue: #0d47a1;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --text-dark: #263238;
  --text-light: #546e7a;
  --gradient-1: linear-gradient(135deg, #1e88e5 0%, #007b9a 100%);
  --gradient-2: linear-gradient(135deg, #007b9a 0%, #007b9a 100%);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);

  --primary-color: #007b9a;
  --accent-color: #ff6f00;
  --primary-gradient: linear-gradient(135deg, #007b9a 0%, #00a8cc 100%);
  --secondary-gradient: linear-gradient(135deg, #ff6f00 0%, #ff8f3d 100%);
  --overlay-dark: rgba(0, 123, 154, 0.75);
}

body {
  font-family: "Kumbh Sans", sans-serif !important;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* service-banner Section */

[data-overlay-dark]:before {
  background: transparent;
}

.appointment-section {
  background: url(https://www.apollodentalcoimbatore.in/assets/img/service-banner.jpg);
}

.appointment-content {
  /* max-width: 540px; */
  margin-top: 70px;
  padding-bottom: 0px;
  padding: 20px;
  border-radius: 12px;
  background: #112134;
}

.service-banner {
  background: var(--gradient-1);
  color: var(--white);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-banner::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="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,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.3;
}

.service-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}

.service-banner .subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.95;
  animation: fadeInUp 1s ease 0.3s both;
}

.service-banner-tagline {
  font-size: 1.1rem;
  font-style: italic;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.6s both;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

html {
  scroll-behavior: smooth;
}

/* Services Grid */
.services-section {
  padding: 80px 20px;
  background: var(--light-bg);
}

.our-comp-head {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
  font-size: 33px;
  color: #de7029;
  font-weight: 700;
}

.our-comp-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-1);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  /* margin-bottom: 60px; */
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 25px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #e1702c;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 0rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* margin-bottom: 20px; */
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
}

.service-list {
  list-style: none;
  margin-top: 15px;
}

.service-list li {
  padding: 8px 0;
  color: var(--text-light);
  position: relative;
  padding-left: 25px;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Why Choose Section */
.why-choose {
  padding: 80px 20px;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: var(--light-bg);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-details p {
  color: #fff;
}

.feature-item h4 {
  font-size: 1.2rem;
  color: #de7029;
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  background: var(--primary-color);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  color: #fff;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--white);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.captions p,
.captions h1 {
  text-align: left;
}

.captions {
  height: 650px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .service-banner h1 {
    font-size: 2rem;
  }

  .service-banner .subtitle {
    font-size: 1.1rem;
  }

  .our-comp-head {
    font-size: 2rem;
  }

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

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

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

@media (max-width: 480px) {
  .service-banner {
    padding: 60px 20px 50px;
  }

  .service-banner h1 {
    font-size: 1.6rem;
  }

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

  .services-section,
  .why-choose,
  .cta-section {
    padding: 50px 20px;
  }
}

/* Hero Section */
.hero-video-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #007b9a 0%, #007b9a 50%);
  overflow: hidden;
}

/* Animated Background Elements */
.bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  top: 10%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  animation-delay: 0s;
}

.shape-2 {
  top: 60%;
  right: 15%;
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-delay: 2s;
}

.shape-3 {
  bottom: 20%;
  left: 20%;
  width: 60px;
  height: 60px;
  background: white;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: 4s;
}

.shape-4 {
  top: 30%;
  right: 25%;
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-30px) rotate(120deg);
  }

  66% {
    transform: translateY(30px) rotate(240deg);
  }
}

/* Dental Icons Floating */
.dental-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.dental-icon {
  position: absolute;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.15);
  animation: floatIcon 15s infinite ease-in-out;
}

.dental-icon:nth-child(1) {
  top: 15%;
  left: 12%;
  animation-delay: 0s;
}

.dental-icon:nth-child(2) {
  top: 70%;
  right: 10%;
  animation-delay: 2s;
}

.dental-icon:nth-child(3) {
  bottom: 15%;
  left: 25%;
  animation-delay: 4s;
}

.dental-icon:nth-child(4) {
  top: 40%;
  right: 20%;
  animation-delay: 1s;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Content Container */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
}

/* Visit Clinic Badge */
.clinic-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: 50px;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: fadeInDown 1s ease;
}

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

/* Main Heading */
.hero-heading {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 25px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-heading span {
  color: #da7232;
}

/* Subheading */
.hero-subheading {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeInUp 1s ease 0.6s both;
}

/* Play Button */
.play-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: white;
  color: #007b9a;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.9s both;
  border: none;
  cursor: pointer;
}

.play-video-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  color: #007b9a;
  text-decoration: none;
}

.play-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #007b9a 0%, #00a8cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.play-video-btn:hover .play-icon {
  transform: scale(1.1);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 154, 0.7);
  }

  50% {
    box-shadow: 0 0 0 20px rgba(0, 123, 154, 0);
  }
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 40%);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.video-modal.active {
  display: flex;
}

.video-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background: black;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.4s ease;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.close-modal {
  position: absolute;
  top: 0px;
  right: 0;
  background: #ff6f00;
  color: white;
  width: 35px;
  z-index: 999;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid white;
  font-weight: bold;
}

.close-modal:hover {
  transform: rotate(90deg) scale(1.1);
  background: #007b9a;
  box-shadow: 0 5px 20px rgba(255, 111, 0, 0.5);
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-heading {
    font-size: 3rem;
  }

  .hero-subheading {
    font-size: 1.3rem;
  }

  .dental-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-subheading {
    font-size: 1.1rem;
  }

  .play-video-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .play-icon {
    width: 45px;
    height: 45px;
  }

  .clinic-badge {
    font-size: 0.8rem;
    padding: 8px 20px;
  }

  .video-container {
    width: 95%;
  }

  .close-modal {
    width: 40px;
    height: 40px;
    top: -45px;
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .hero-video-section {
    min-height: 80vh;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .hero-subheading {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .play-video-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
    gap: 10px;
  }

  .play-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .shape-1,
  .shape-2,
  .shape-3,
  .shape-4 {
    display: none;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "💬";
  position: absolute;
  font-size: 15rem;
  opacity: 0.05;
  top: -50px;
  right: -50px;
  transform: rotate(-15deg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

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

.section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Testimonial Card */
.testimonial-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  position: relative;
}

.testimonial-content {
  display: flex;
  flex-wrap: wrap;
}

.testimonial-image {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-image img {
  transform: scale(1.1);
}

.rating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary-color);
  color: white;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 123, 154, 0.4);
}

.rating-score {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.rating-text {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 10px;
}

.rating-stars {
  color: #ffc107;
  font-size: 1.2rem;
}

.testimonial-text {
  flex: 0 0 60%;
  padding: 50px 40px;
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 30px;
}

.testimonial-quote {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.author-info h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.author-info p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

/* Navigation Arrows */
.testimonial-nav {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 40px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.nav-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.book-appointment-btn {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(255, 111, 0, 0.3);
}

.book-appointment-btn:hover {
  background: #e66300;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 111, 0, 0.4);
  text-decoration: none;
}

/* Contact & Map Section */
.contact-map-section {
  padding: 80px 0;
  background: white;
}

.contact-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, #00a8cc 100%);
  border-radius: 25px;
  padding: 50px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 123, 154, 0.3);
}

.contact-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -150px;
  right: -100px;
}

.contact-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
}

.contact-title span {
  color: var(--accent-color);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-details h6 {
  font-size: 1rem;
  margin-bottom: 5px;
  opacity: 0.9;
  font-weight: 600;
}

.contact-details p {
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.6;
}

.contact-details a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-details a:hover {
  color: var(--accent-color);
}

.appointment-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary-color);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.appointment-btn:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 111, 0, 0.4);
  text-decoration: none;
}

.map-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  height: 100%;
  min-height: 500px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 500px;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-image {
    flex: 0 0 100%;
    height: 350px;
  }

  .testimonial-text {
    flex: 0 0 100%;
    padding: 40px 30px;
  }

  .rating-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
  }

  .contact-card {
    padding: 40px 30px;
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 2.5rem;
  }

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

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

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

  .section-description {
    font-size: 1rem;
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  .quote-icon {
    font-size: 3rem;
  }

  .contact-map-section {
    padding: 60px 0;
  }

  .contact-card {
    padding: 30px 20px;
  }

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

  .map-container {
    min-height: 400px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .testimonial-image {
    height: 300px;
  }

  .testimonial-text {
    padding: 30px 20px;
  }

  .rating-badge {
    padding: 15px 20px;
  }

  .rating-score {
    font-size: 2rem;
  }

  .contact-title {
    font-size: 1.5rem;
  }

  .contact-info-item {
    gap: 15px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .map-container {
    min-height: 350px;
  }
}

/************************************/
/***        05. CTA Box css	      ***/
/************************************/

.cta-box .btn-default {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5em;
  color: #fff;
  background: #1e84b5;
  text-transform: capitalize;
  padding: 14px 50px 14px 20px;
  border-radius: 99px;
  border: none;
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-default:hover {
  background-color: #fff;
  color: #0e384c;
}

.btn-default:hover:before {
  transform: translate(-10px, -50%) rotate(45deg);
  background-size: 10px auto;
}

.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  background-image: url(https://www.apollodentalcoimbatore.in/assets/img/arrow-blue.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px auto;
  transform: translate(-10px, -50%);
  transition: all 0.4s ease-in-out;
}

.cta-box {
  background-color: #0e384c;
  padding: 50px 0;
}

.cta-box-item {
  display: flex;
  align-items: center;
  border-right: 1px solid #1e84b5;
  margin-right: 15px;
  padding-right: 15px;
}

.cta-box .col-lg-4:nth-child(2) .cta-box-item {
  border: none;
  padding-right: 0;
  margin-right: 0;
}

.cta-box-item .icon-box {
  margin-right: 20px;
}

.cta-box-item .icon-box img {
  max-width: 40px;
}

.cta-box-content {
  width: calc(100% - 60px);
}

.cta-box-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 10px;
}

.cta-box-content p {
  color: #fff;
  margin: 0;
}

.cta-box-btn {
  text-align: right;
}
a.tel-link:hover {
    color: #1e84b5;
}
a.tel-link {
    color: #fff;
    text-decoration: underline;
}