/* ===================================
   Shaad Aesthetics - Modern Landing Page
   Custom CSS with Animations & Effects
   =================================== */

/* CSS Variables for consistent theming */
:root {
  --primary-color: #008080; /* Teal */
  --secondary-color: #20b2aa; /* Light Sea Green */
  --accent-color: #00ced1; /* Dark Turquoise */
  --light-blue: #e0f7fa; /* Light Blue Background */
  --white: #ffffff;
  --dark-text: #333333;
  --light-text: #666666;
  --shadow: 0 4px 15px rgba(0, 128, 128, 0.15);
  --shadow-hover: 0 8px 30px rgba(0, 128, 128, 0.25);
  --transition: all 0.3s ease-in-out;
}

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

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

/* ===================================
   Navigation Bar
   =================================== */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
  background: transparent;
}

.landing-nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.landing-nav .navbar-brand img {
  width: 100px;
  height: auto;
}

.landing-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.landing-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 8px 15px;
  transition: var(--transition);
}

.landing-nav.scrolled .nav-link {
  color: var(--dark-text);
}

.landing-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.landing-nav .nav-link:hover::after {
  width: 80%;
}

.landing-nav .nav-link:hover {
  color: var(--accent-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: var(--transition);
}

.landing-nav.scrolled .menu-toggle span {
  background: var(--dark-text);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(0, 128, 128, 0.9), rgba(32, 178, 170, 0.85)),
    url("../images/dental.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Hero Contact Form */
.hero-form-container {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

.hero-form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--dark-text);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  transition: var(--transition);
  background: #f9f9f9;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.1);
}

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

.security-check {
  display: flex;
  align-items: center;
  gap: 15px;
}

.security-check label {
  white-space: nowrap;
  margin-bottom: 0;
}

.security-check input {
  width: 80px;
}

.btn-submit {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 128, 128, 0.4);
}

/* ===================================
   Section Common Styles
   =================================== */
.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 15px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--light-text);
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-title {
  position: relative;
  display: inline-block;
}

.section-header .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

/* Background Colors */
.bg-light {
  background: var(--light-blue);
}

.bg-white {
  background: var(--white);
}

/* ===================================
   Services Section
   =================================== */
.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 128, 128, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

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

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--light-blue),
    rgba(0, 206, 209, 0.2)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: var(--transition);
}

.service-icon i {
  font-size: 35px;
  color: var(--primary-color);
}

.service-card:hover .service-icon {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.service-description {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.7;
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose-section {
  background: #f8fbff;
}

.section-title {
  font-weight: 700;
  font-size: 32px;
  color: #043359;
}

.section-subtitle {
  color: #6c757d;
  max-width: 600px;
  margin: auto;
}

.benefit-card {
  background: #ffffff;
  padding: 35px 25px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #043359, #0d6efd);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.4s;
}

.benefit-card:hover .benefit-icon {
  transform: rotate(10deg) scale(1.1);
}

.benefit-card h6 {
  font-weight: 600;
  color: #222;
  margin-bottom: 0;
}

.why-choose-conclusion p {
  max-width: 750px;
  margin: auto;
  color: #555;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
  background: var(--white);
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin: 15px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonial-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
}

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

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.video-overlay:hover {
  background: rgba(0, 128, 128, 0.5);
}

.play-button {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.play-button i {
  font-size: 30px;
  color: var(--primary-color);
  margin-left: 5px;
}

.video-overlay:hover .play-button {
  transform: scale(1.1);
}

.testimonial-content {
  padding: 25px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark-text);
  font-size: 1.1rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--light-text);
}

/* ===================================
   Contact Form Section
   =================================== */
.contact-section {
  background: linear-gradient(
    135deg,
    var(--light-blue) 0%,
    rgba(0, 206, 209, 0.1) 100%
  );
}

.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 25px;
  padding: 50px;
  box-shadow: var(--shadow);
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-text);
  text-align: center;
  margin-bottom: 40px;
}

/* ===================================
   Footer
   =================================== */
.landing-footer {
  background: #1a1a2e;
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-widget h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.footer-widget p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-links a i {
  font-size: 12px;
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 3px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-bottom a {
  color: var(--accent-color);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* AOS Custom Overrides */
[data-aos] {
  transition-duration: 0.8s;
}

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-section {
    padding: 150px 0 60px;
  }

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

  .hero-form-container {
    margin-top: 40px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu .nav-link {
    color: var(--dark-text);
  }

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

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

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

  .section {
    padding: 60px 0;
  }

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

  .benefits-list li {
    padding: 15px 20px;
  }

  .contact-form-container {
    padding: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

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

  .hero-form-container {
    padding: 25px;
  }

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

  .btn-submit {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* Scroll Animation Classes */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Button Hover Effects */
.btn-primary-custom {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 128, 128, 0.4);
  color: var(--white);
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: none;
  /* Hidden by default, shown via JavaScript on scroll */
}

.scroll-to-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 128, 128, 0.3);
  transition: var(--transition);
}

.scroll-to-top a:hover {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--accent-color)
  );
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 128, 128, 0.4);
}

.scroll-to-top i {
  font-size: 20px;
  line-height: 1;
}

/* Scroll to Top - Responsive Styles */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
  }

  .scroll-to-top a {
    width: 45px;
    height: 45px;
  }

  .scroll-to-top i {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .scroll-to-top {
    bottom: 15px;
    left: 15px;
  }

  .scroll-to-top a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .scroll-to-top i {
    font-size: 16px;
  }
}

/* ===================================
   Dental Team Section - Modern & Professional
   =================================== */
.dental-team-section {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.dental-team-section .team-overlay {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(240, 248, 248, 0.95) 100%
  );
  padding: 80px 0;
  position: relative;
}

.dental-team-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.dental-team-section .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.dental-team-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.dental-team-section .section-subtitle {
  font-size: 18px;
  color: #666;
  margin-top: 20px;
  font-weight: 500;
}

.dental-team-section .section-description {
  max-width: 850px;
  margin: 30px auto 0;
  line-height: 28px;
  color: #555;
  font-size: 16px;
}

/* Team Card Styles */
.dental-team-section .team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 128, 128, 0.1);
  position: relative;
}

.dental-team-section .team-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 128, 128, 0.2);
  border-color: var(--primary-color);
}

/* Team Image Container */
.dental-team-section .team-image-container {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: linear-gradient(135deg, #f0f8f8 0%, #e8f4f4 100%);
}

.dental-team-section .team-image-container img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dental-team-section .team-card:hover .team-image-container img {
  transform: scale(1.15);
}

/* Image Overlay */
.dental-team-section .team-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  /* width: 100%; */
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(0, 128, 128, 0.85) 100%
  );
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 25px;
}

.dental-team-section .team-card:hover .team-image-overlay {
  opacity: 1;
}

/* Social Icons */
.dental-team-section .team-social-links {
  display: flex;
  gap: 12px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.dental-team-section .team-card:hover .team-social-links {
  transform: translateY(0);
  opacity: 1;
}

.dental-team-section .team-social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dental-team-section .team-social-links a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 8px 25px rgba(0, 128, 128, 0.4);
}

/* Team Info */
.dental-team-section .team-info {
  padding: 25px 2px;
  text-align: center;
  background: #fff;
  position: relative;
}

.dental-team-section .team-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.dental-team-section .team-designation {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.dental-team-section .team-name {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.dental-team-section .team-card:hover .team-name {
  color: var(--primary-color);
}

/* Keyframe Animations */
@keyframes teamFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes teamPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 128, 128, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(0, 128, 128, 0);
  }
}

.dental-team-section .team-card {
  animation: teamFadeInUp 0.8s ease forwards;
  opacity: 0;
}

.dental-team-section .team-card:nth-child(1) {
  animation-delay: 0.1s;
}

.dental-team-section .team-card:nth-child(2) {
  animation-delay: 0.2s;
}

.dental-team-section .team-card:nth-child(3) {
  animation-delay: 0.3s;
}

.dental-team-section .team-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .dental-team-section {
    padding: 80px 0;
  }

  .dental-team-section .team-overlay {
    padding: 60px 0;
  }

  .dental-team-section .section-title {
    font-size: 32px;
  }

  .dental-team-section .team-image-container {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .dental-team-section {
    padding: 60px 0;
  }

  .dental-team-section .team-overlay {
    padding: 50px 0;
  }

  .dental-team-section .section-title {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .dental-team-section .section-subtitle {
    font-size: 15px;
  }

  .dental-team-section .section-description {
    font-size: 14px;
    line-height: 24px;
  }

  .dental-team-section .team-image-container {
    height: 220px;
  }

  .dental-team-section .team-info {
    padding: 20px 15px;
  }

  .dental-team-section .team-name {
    font-size: 18px;
  }

  .dental-team-section .team-designation {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .dental-team-section .team-image-container {
    height: 200px;
  }

  .dental-team-section .team-card {
    margin-bottom: 20px;
  }
}
