:root {
  --teal: #36C2C9;
  --orange: #F15A22;
  --black: #000000;
  --white: #FFFFFF;

  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Roboto', sans-serif;

  --fs-h1: 42px;
  --fs-h2: 32px;
  --fs-h3: 26px;
  --fs-body: 16px;
  --fs-small: 14px;

  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-loose: 1.8;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-secondary);
}
.dental-card{
  width: 300px;
    height: 300px;
      background: #19b4f5;
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  transition: 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.dental-card .icon {
  font-size: 30px;
  margin-bottom: 15px;
  color: #003d66;
  z-index: 100;
}
.icon{
      font-size: 30px;
  margin-bottom: 15px;
  color: #003d66;
  z-index: 100;
}

.dental-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: white;
  z-index: 100;
}

.dental-card p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #ffffff;
  text-align: justify;
  z-index: 100;
}

.read-more {
  font-weight: bold;
  color: white;
  text-decoration: none;
  position: absolute;
  bottom: 20px;
}

.read-more:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .dental-card h3 {
    font-size: 1rem;
  }

  .dental-card p {
    font-size: 0.9rem;
  }
}
.known-section {
  padding: 60px 20px;
  background-color: #fff;
}
.known-section .container{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.content {
  flex: 1;
  min-width: 280px;
}

.content h2 {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 15px;
}

.content .subtitle {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #444;
}

.content p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #555;
}

.request-callback{
  display: inline-block;
  padding: 12px 20px;
  background-color: var(--orange);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.request-callback:hover {
  background-color: #2c84ff;
  color: wheat;
}

/* Right Image */
.image-container {
  flex: 1;
  text-align: center;
  min-width: 280px;
}

.image-container img {
  max-width: 500px;
  height: auto;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .content {
    text-align: center;
  }

  .btn {
    margin: 0 auto;
  }
  .image-container {
  margin-top: 50px;
}
}
.booking-section {
  background: linear-gradient(to bottom, #d8f9f8, #b6f1ec);
  padding: 60px 20px;
  margin-bottom: 100px;
}

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

.booking-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.booking-text {
  flex: 1;
  min-width: 280px;
}

.booking-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--teal);
}

.booking-text h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
   color: var(--teal);
}

.booking-text p {
  color: #555;
  line-height: 1.6;
  max-width: 500px;
}

/* Form Styling */
.booking-form {
  flex: 1;
  min-width: 280px;
}

.booking-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-form select,
.booking-form input {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
}

.booking-form select:focus,
.booking-form input:focus {
  border-color: #00bfa6;
}

/* Button Styling */
.booking-form button {
  background-color: var(--orange);
  color: white;
  padding: 14px;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-form button:hover {
  background-color: #17a589;
}

.phone-icon {
  margin-right: 8px;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .booking-text p {
    margin: 0 auto;
  }
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--teal);
}

.section-header p {
  font-size: 1rem;
  color: #555;
}

/* Review Section Layout */
.review-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

/* Left Side: Company Rating */
.company-rating {
  max-width: 260px;
  text-align: center;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  background: #fafafa;
}

.company-logo {
  width: 60px;
  margin-bottom: 10px;
}

.company-rating h3 {
  margin-bottom: 10px;
}

.company-rating .stars {
  color: #ff9900;
  font-size: 1rem;
  margin: 10px 0;
}

.company-rating .powered {
  color: #555;
  font-size: 0.9rem;
}

.google-text {
  color: #4285f4;
  font-weight: bold;
}

.google-btn {
  background-color: #4285f4;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 10px;
}

.google-btn:hover {
  background-color: #357ae8;
}

/* Right Side: Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  flex: 1;
}

.review-card {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.user-initial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #5a67d8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
}

.review-header h4 {
  font-size: 1rem;
}

.review-time {
  font-size: 0.8rem;
  color: #888;
}

.google-icon {
  width: 18px;
  height: 18px;
}

.review-card .stars {
  color: #ff9900;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .review-content {
    flex-direction: column;
    align-items: center;
  }

  .company-rating {
    max-width: 100%;
  }
}
.known-section .request-callback{
  margin-bottom: 20px;
}