@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  text-transform: capitalize;
}

:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Barlow", sans-serif;
  --nav-font: "Inter", sans-serif;
}

#chat-popup {
  position: fixed;
  bottom: 90px; /* above WhatsApp icon */
  right: 20px;
  width: 300px;
  background: #00bcd4;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: none; /* hidden initially */
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
}

#chat-popup .chat-header {
  background: #0097a7;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#chat-popup .chat-header h4 {
  margin: 0;
  font-size: 16px;
}

#chat-popup .chat-header #close-chat {
  cursor: pointer;
  font-size: 20px;
}

#chat-popup .chat-body {
  padding: 10px;
  background: #e0f7fa;
  color: #000;
  font-size: 14px;
  min-height: 60px;
}

#chat-popup .chat-footer {
  display: flex;
  border-top: 1px solid #ccc;
}

#chat-popup input {
  flex: 1;
  padding: 8px 10px;
  border: none;
  outline: none;
  font-size: 14px;
}

#chat-popup button {
  background: #0097a7;
  color: #fff;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  transition: 0.3s;
}

#chat-popup button:hover {
  background: #007070;
}

/* Responsive */
@media (max-width: 500px) {
  #chat-popup {
    width: 90%;
    right: 5%;
  }
}
#home,
#services,
#about {
  scroll-margin-top: 120px;
}

#dentist {
  scroll-margin-top: 210px;
}

#appointment {
  scroll-margin-top: 121px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

body {
  max-width: 100%;
}

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.aling {
  padding: 0px 60px;
}

.fixed {
  position: fixed;
  bottom: 30px;
  right: 20px;
  text-align: center;
  z-index: 2222222222222222200000000;
}
.fixed img {
  width: 50px;
  transition: 0.5s ease-in-out;
}
.fixed p {
  font-weight: 700;
  color: #000;
  text-align: center;
  font-family: var(--default-font);
}

:root {
  /* Primary */
  --primary-skyblue: #3BAFDA;
  --primary-navy: #1F3A93;
  /* Neutrals */
  --white: #FFFFFF;
  --light-gray: #F7F9FB;
  /* Accent */
  --mint-green: #28b4c7;
  --soft-orange: #FFB88C;
  /* Optional text colors */
  --text-dark: #222222;
  --text-light: #666666;
}

nav .logo img {
  width: 80px;
  margin-top: 10px;
}
nav {
  display: flex;
  z-index: 555555555555;
  background-color: var(--mint-green);
  align-items: center;
  padding: 30px 120px;
  height: 30px;
  justify-content: space-between;
}
nav .name {
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
nav .name p {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.list ul {
  display: flex;
  gap: 20px;
  list-style-type: none;
}
.list ul li a {
  color: var(--light-gray);
  text-decoration: none;
  background-color: transparent;
  text-align: center;
  border: 1px solid #ffffff;
  padding: 10px 25px;
  transition: 0.5s ease-in-out;
  align-content: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.list ul li a:hover {
  background-color: #0097a7;
  cursor: pointer;
}

nav .logo {
  display: flex;
  align-items: center;
}
nav .logo img {
  animation: tran 2s ease-in-out infinite;
}

@keyframes tran {
  0% {
    margin-bottom: 10px;
  }
  50% {
    margin-bottom: 0px;
  }
  100% {
    margin-bottom: 10px;
  }
}
.bars {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  position: absolute;
  right: 40px;
  display: none;
  cursor: pointer;
}

.xmark {
  cursor: pointer;
  display: none;
  position: absolute !important;
  top: 10px;
  z-index: 4444;
  font-size: 25px;
  font-weight: 900;
  color: #fff;
}

@media (max-width: 1278px) {
  nav .logo img {
    margin-left: -55px;
  }
  .xmark {
    display: block;
  }
  .bars {
    display: block;
  }
  .list {
    flex-direction: column;
    display: flex;
    top: 90px;
    text-align: center;
    background-color: var(--mint-green);
    justify-content: center;
    align-content: center;
    width: 40%;
    border-radius: 0px 20px 20px 0px;
    position: absolute;
    left: 0px;
    height: 53vh;
    border: 2px solid #fff;
    padding: 30px;
    display: none;
  }
  .list ul {
    flex-direction: column;
    justify-content: center;
    line-height: 2;
  }
  .list ul li > a {
    font-weight: 600;
    border-radius: 10px;
    color: #fff;
  }
  .list ul li > a:hover {
    background-color: #172b70;
  }
  .list .xmark {
    position: relative;
    left: 85%;
  }
}
@media (max-width: 500px) {
  .list .xmark {
    position: relative;
    top: 2px;
  }
  .list {
    height: 52vh;
  }
  .list ul {
    align-items: center;
    position: relative;
    top: 2px;
    left: 0px;
  }
  .list ul li a {
    padding: 10px 20px;
  }
  nav .logo img {
    margin-left: -60px;
  }
}
@media (max-width: 537px) {
  .list {
    width: 90% !important;
  }
}
@media (max-width: 500px) {
  nav .logo img {
    margin-left: -60px;
  }
}
@media (max-width: 535px) {
  nav .logo img {
    width: 80px;
    margin-left: -80px;
  }
}
@media (max-width: 561px) {
  nav .name h1 {
    font-size: 20px;
  }
  nav .name p {
    text-align: center;
  }
}
@media (max-width: 438px) {
  nav .name h1 {
    font-size: 20px;
  }
  nav .name p {
    text-align: center;
  }
  nav .logo img {
    margin-left: -100px;
  }
}
@media (max-width: 364px) {
  .name {
    position: relative;
    left: -70px;
  }
}
@media (max-width: 330px) {
  .name {
    position: relative;
    left: -90px;
  }
}
@media (max-width: 420px) {
  nav .logo img {
    padding: 0px;
    width: 60px;
  }
  nav .bars {
    right: 10px;
  }
  nav .name {
    position: relative;
    right: 50px;
  }
  nav .name h1 {
    text-align: center;
    font-size: 17px;
  }
  nav .name p {
    width: 250px;
    font-size: 16px;
  }
  nav .name {
    margin-left: 20px;
  }
}
@media (max-width: 389px) {
  .name {
    position: relative;
    right: 50px;
  }
  .name h1 {
    position: relative;
    right: 28px;
  }
  .name p {
    width: 200px;
    text-align: start;
  }
}
.hero-modern {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6)), url(img/indoor-photo-wide-horizontal-shot-600nw-2703923663.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.hero-content {
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

.hero-text {
  min-width: 300px;
  padding: 20px;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.2;
  color: white;
}

.hero-text .highlight {
  color: #00bcd4;
}

.hero-text p {
  color: white;
  width: 600px;
  max-width: 100%;
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 30px;
}

.btn-hero {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1rem;
  background: #00bcd4;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background: #0097a7;
  transform: translateY(-4px);
}

@media (max-width: 1024px) {
  .hero-modern {
    background-position: center right;
    height: 80vh;
    padding: 10px 60px;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .hero-text p {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .hero-modern {
    background-position: center right;
    height: 55vh;
  }
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    padding-right: 300px;
    width: 90%;
    font-size: 1rem;
    line-height: 1.5;
  }
  .btn-hero {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .hero-modern {
    background-position: center right;
    height: 55vh;
    padding: 20px 20px;
  }
  .hero-text h1 {
    font-size: 1.9rem;
  }
  .hero-text p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .btn-hero {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}
@media (max-width: 378px) {
  .hero-modern {
    background-position: center right;
    height: 55vh;
    padding: 20px 20px;
  }
  .hero-text h1 {
    font-size: 1.9rem;
  }
  .hero-text p {
    font-size: 11px;
    width: 90%;
    max-width: 300px;
    line-height: 1.5;
  }
  .hero-text {
    margin-left: -10px;
  }
  .btn-hero {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}
@media (max-width: 332px) {
  .hero-text {
    margin-left: -20px;
  }
}
.umb {
  line-height: 2;
  margin: 5px 0px;
  position: relative;
  top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.umb h1 {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 35px;
}
.umb h1 span {
  color: var(--mint-green);
}
.umb p {
  color: var(--text-light);
}
.umb img {
  position: absolute;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 80px 100px;
}
.services .service-box {
  flex: 1 1 300px;
  max-width: 320px;
  background: #fff;
  border: 1px solid #eee;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.services .service-box:hover {
  transform: translateY(-5px);
  border-color: #4dcfe0;
}
.services .service-box .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #4dcfe0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 15px auto;
  color: #fff;
}
.services .service-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  font-family: var(--default-font);
  margin-bottom: 10px;
}
.services .service-box p {
  font-size: 15px;
  color: #777;
  line-height: 1.6;
}
@media (max-width: 500px) {
  .services .service-box {
    padding: 20px;
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .umb h1 {
    font-size: 28px;
  }
  .umb p {
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  .umb {
    margin: 100px 15px;
    top: 20px;
  }
  .umb h1 {
    font-size: 22px;
    line-height: 1.4;
  }
  .umb p {
    font-size: 14px;
  }
  .umb img {
    max-width: 80%;
  }
}
@media (max-width: 597px) {
  .umb {
    margin: 60px 10px;
    top: 10px;
  }
  .umb h1 {
    font-size: 20px;
    line-height: 1.4;
  }
  .umb p {
    font-size: 13px;
  }
  .umb img {
    max-width: 70%;
  }
  .services {
    padding: 20px 15px;
    gap: 15px;
  }
  .services .service-box {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 18px 12px;
  }
  .services .service-box .icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
  .services .service-box .icon img {
    width: 60%;
  }
  .services .service-box h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .services .service-box p {
    font-size: 13px;
    line-height: 1.4;
  }
}
.about {
  display: flex;
}

.left-about {
  padding-left: 40px;
}
.left-about h1 {
  color: #333;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}
.left-about .i {
  margin-bottom: 10px;
  gap: 20px;
  align-items: center;
  display: flex;
  margin: 50px 10px;
}
.left-about .i div p {
  line-height: 1.6;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #4e4e4e;
}
.left-about .i div h2 {
  margin-bottom: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #4e4e4e;
  font-size: 20px;
}
.left-about .i:hover i {
  border: 1px solid #28C7A9;
  background-color: rgba(40, 199, 170, 0.5019607843);
}
.left-about .i i {
  color: #414141;
  border: 1px solid #222222;
  padding: 15px 18px;
  border-radius: 50%;
  font-size: 30px;
  transition: 0.5s ease-in-out;
}

@media (max-width: 1182px) {
  .about {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .left-about {
    padding-left: 0;
  }
  .left-about h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .left-about .i {
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
  }
  .left-about .i div h2 {
    font-size: 18px;
  }
  .left-about .i div p {
    font-size: 14px;
  }
  .left-about .i i {
    margin-bottom: 15px;
  }
  .right-about {
    margin-top: 30px;
  }
  .right-about img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
}
@media (max-width: 600px) {
  .left-about h1 {
    font-size: 22px;
    line-height: 1.4;
  }
  .left-about .i div h2 {
    font-size: 16px;
  }
  .left-about .i div p {
    font-size: 13px;
  }
  .left-about .i i {
    font-size: 25px;
    padding: 12px 14px;
  }
}
.contact {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
  padding: 10px 20px;
}
.contact h1 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: var(--nav-font);
}
.contact form {
  background: var(--mint-green);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
}
.contact form h1 {
  text-align: center;
  font-family: var(--heading-font);
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--green);
}
.contact form input::-moz-placeholder {
  text-transform: capitalize;
}
.contact form input::placeholder {
  text-transform: capitalize;
}
.contact form .input {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.contact form .input p {
  margin-bottom: 8px;
  font-size: 14px;
  font-family: var(--nav-font);
  font-weight: 500;
  color: #333;
  text-transform: capitalize;
}
.contact form .input input,
.contact form .input textarea,
.contact form .input select {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--default-font);
  outline: none;
  transition: 0.3s ease;
}
.contact form .input input:focus,
.contact form .input textarea:focus,
.contact form .input select:focus {
  border-color: var(--primary-navy);
  box-shadow: 0 0 5px rgba(0, 128, 0, 0.3);
}
.contact form .input textarea {
  resize: none;
  height: 120px;
}
.contact form .btn {
  text-align: center;
}
.contact form .btn button {
  padding: 14px 30px;
  border: none;
  background-color: var(--primary-navy);
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  font-family: var(--nav-font);
  cursor: pointer;
  transition: 0.3s ease;
}
.contact form .btn button:hover {
  background-color: var(--primary-navy);
}

@media (max-width: 720px) {
  form select {
    width: 600px;
    max-width: 100%;
    font-size: 13px;
    padding: 10px 12px;
  }
}
@media (max-width: 500px) {
  .contact form .input {
    margin-bottom: 5px;
  }
}
form pre {
  color: rgb(255, 255, 255);
  font-family: var(--default-font);
  text-align: center;
  padding: 10px 10px;
  margin-top: 10px;
  display: none;
  background-color: red;
}

form select {
  width: 600px;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--default-font);
  outline: none;
  transition: 0.3s ease;
  background-color: #fff;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
form select:focus {
  border-color: var(--primary-navy);
  box-shadow: 0 0 5px rgba(0, 128, 0, 0.3);
}
form {
  /* optional: add a dropdown arrow */
}
form select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23333' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .contact {
    padding: 30px 15px;
  }
  .contact form {
    padding: 30px 20px;
  }
  .contact form h1 {
    font-size: 22px;
  }
  .contact form .input p {
    font-size: 13px;
  }
  .contact form input,
  .contact form textarea {
    font-size: 13px;
    padding: 10px 12px;
  }
  .contact form .btn button {
    font-size: 14px;
    padding: 12px 25px;
  }
}
@media (max-width: 680px) {
  .contact {
    padding: 10px 30px;
  }
  .contact form {
    padding: 25px 15px;
  }
  .contact form h1 {
    font-size: 20px;
  }
  .contact form .btn button {
    width: 100%;
  }
}
.card {
  margin: 0 auto;
  width: 320px;
}

.time {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  background-color: var(--light-gray);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.time .timing {
  text-align: center;
}
.time .timing h1 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--primary-navy);
}
.time .timing h1 span {
  color: var(--mint-green);
}
.time .timing .card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  width: 420px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.time .timing .card:hover {
  transform: translateY(-5px);
}
.time .timing .card h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--primary-skyblue);
}
.time .timing .card p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .time {
    padding: 40px 10px;
  }
  .timing .card {
    margin: 20px;
    width: 100%;
    max-width: 320px;
  }
}
.p {
  display: flex;
  justify-content: center;
}

@media (max-width: 400px) {
  .p {
    flex-direction: column;
  }
  .p span {
    display: none;
  }
}
@media (max-width: 399px) {
  .time {
    padding: 20px 8px; /* tighter padding for small screens */
  }
  .timing .card {
    width: 100%;
    max-width: 220px; /* nice fit for ~399px screen */
    padding: 18px 12px;
  }
  .timing .card h2 {
    font-size: 17px;
  }
  .timing .card p {
    font-size: 14px; /* readable size on small screens */
  }
  .p {
    flex-wrap: wrap; /* keeps flex but allows wrapping */
    justify-content: center;
    gap: 5px; /* small spacing between times */
  }
}
@media (max-width: 400px) {
  .time {
    padding: 30px 10px;
  }
  .timing .card {
    width: 100%;
    max-width: 335px;
    padding: 20px 15px;
  }
  .timing .card h2 {
    font-size: 18px;
  }
  .timing .card p {
    font-size: 100px;
  }
}
@media (max-width: 786px) {
  .time .timing h1 {
    font-size: 25px;
  }
}
@media (max-width: 415px) {
  .time .timing h1 {
    font-size: 20px;
  }
}
.down {
  margin-bottom: 40px;
}

.dental-services {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 3rem 60px;
  background-color: #fff;
}
.dental-services .service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  padding: 10px;
}
.dental-services .service-card:hover {
  transform: translateY(-5px);
}
.dental-services .service-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.dental-services .service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.dental-services .service-card p {
  font-size: 17px;
  color: #666;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

@media (max-width: 668px) {
  .service-card {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .dental-services {
    padding: 2rem 20px;
    gap: 1rem;
  }
}
.dental-care {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: #f9fdfd;
}
.dental-care .content {
  flex: 1;
  max-width: 500px;
}
.dental-care .content h2 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #222;
  margin-left: 20px;
}
.dental-care .content p {
  margin-left: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}
.dental-care .content ul {
  list-style: none;
  justify-content: center;
  padding-left: 0;
}
.dental-care .content ul li {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  text-align: start;
}
.dental-care .content ul li::before {
  content: "🔵";
  padding-right: 10px;
  color: #00bcd4;
  font-size: 0.8rem;
}

@media (max-width: 819px) {
  .dental-care img {
    display: none;
  }
}
@media (max-width: 500px) {
  .dental-care div h2 {
    font-size: 25px !important;
  }
}
@media (max-width: 423px) {
  .dental-care div {
    text-align: justify;
  }
  .dental-care div h2 {
    text-align: cer;
    font-size: 25px !important;
  }
}
@media (max-width: 380px) {
  .dental-care div h2 {
    font-size: 25px !important;
  }
}
footer {
  background-color: var(--primary-navy);
  padding: 20px 100px;
  justify-content: space-between;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
footer .foo:nth-of-type(1) {
  width: 400px;
}
footer .foo:nth-of-type(1) p {
  margin-top: 0px;
  line-height: 1.6;
  color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
footer .foo {
  margin-top: 0px;
}
footer .foo ul {
  line-height: 1.7;
  list-style-type: none;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
footer .foo ul li a {
  color: #fff;
  text-decoration: none;
}
footer .foo ul h2 {
  color: #f7f7f7;
}
footer .foo .logo img {
  width: 60px;
}

/* 📱 Responsive footer */
@media (max-width: 1024px) {
  footer {
    padding: 20px 50px;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px;
  }
  .foo {
    width: 100% !important;
    margin-top: 30px;
  }
  .foo ul {
    padding-left: 0;
  }
}
@media (max-width: 480px) {
  footer {
    text-align: center;
    align-items: center;
  }
  .foo {
    margin: 20px 0;
  }
  .foo ul h2 {
    font-size: 18px;
  }
  .foo ul li {
    font-size: 14px;
  }
  .foo:nth-of-type(1) {
    width: 100% !important;
  }
  .foo:nth-of-type(1) p {
    font-size: 14px;
  }
}
.foo ul p span {
  font-weight: 500;
}
.foo ul p {
  color: #fff;
}
.foo ul p a {
  color: #fff;
  text-decoration: none;
}
.foo ul p a:hover {
  color: red;
  text-decoration: underline;
}

@media (max-width: 361px) {
  .e {
    position: relative;
    left: -20px;
  }
}
@media (max-width: 346px) {
  .e {
    position: relative;
    left: -30px;
  }
}
.sec {
  width: 350px;
}

.mf {
  background-color: var(--text-dark);
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 10px 10px;
  font-size: 18px;
  text-align: center;
}

.mf {
  width: 100%;
  background-color: var(--text-dark);
  color: #fff;
  text-align: center;
  padding: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.mf p a {
  color: #fff;
  text-decoration: none;
  margin: 0;
}
.mf p a span {
  color: var(--mint-green);
  font-weight: 600;
  cursor: pointer;
}
.mf p a span:hover {
  text-decoration: underline;
}
@media (max-width: 500px) {
  .mf {
    font-size: 12px;
    padding: 15px;
  }
}/*# sourceMappingURL=style.css.map */