* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

nav ul {
  display: flex;
  gap: 3px;
  list-style: none;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

#bar {
  display: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  margin-right: 8px;
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 34px;
  cursor: pointer;
  margin-right: 10px;
  line-height: 1;
}

@media screen and (max-width: 850px) {
  .menu-btn {
    display: block;
  }
}
nav ul.active {
  display: flex;
}
html,
body {
  width: 100%;
  overflow-x: hidden;
}
body {
  
  font-family: Arial, sans-serif;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(3, 111, 119);
  color: white;
  position: fixed;
  width: 100%;
  top: 0%;
  z-index: 100;
  height: 80px;
}
ul {
  display: flex;
}
ul li {
  list-style: none;
}
ul li a {
  text-decoration: none;
  font-size: 20px;
  color: white;
  margin-inline: 22px;
}
ul li a:hover {
  color: black;
}
.logo {
  margin-top: 5px;
  width: 110px;
  height: 110px;

  img {
    width: inherit;
    height: inherit;
  }
}
#con {
  display: flex;
  padding: 5px;
  margin-left: auto;
  margin-right: 15px;
  border-radius: 15px;
  background: linear-gradient(135deg, #46949b, #27a2bb);
  animation: con 1.5s ease-in-out infinite;

  a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    /* margin-inline: 22px; */
    letter-spacing: 0.5px;
  }
  a:hover {
    color: black;
  }
}
@keyframes con {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}


.main {
  width: 100vw;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  margin-top: 80px;
  background-color: rgb(3, 111, 119);
  color: white;
  padding: 33px;
  overflow: hidden;
}
.main img {
  width: min(740px, 90vw);
  height: auto;
  aspect-ratio: 740 / 520;
  object-fit: contain;
  
 
}
.main h1 {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: 800;
  font-size: 50px;
}
.mainText {
  margin-top: 43px;
}
.mainText p {
  margin-top: 22px;
  margin-bottom: 40px;
  b {
    letter-spacing: 2px;
  }
}
.mainText a {
  text-decoration: none;
  font-size: 20px;
  color: white;
  margin-inline: 22px;
}
.btns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.mainText button,
.form button {
  background: linear-gradient(135deg, #46949b, #27a2bb);

  color: white;

  padding: 5px 5px;
  margin-top: 70px;
  border: none;

  border-radius: 10px;

  font-size: 22px;

  font-weight: 600;

  cursor: pointer;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);

  transition: all 0.3s ease;
}

.mainText button:hover,
.form button:hover {
  background: linear-gradient(135deg, #00c6d7, #007991);

  color: white;

  transform: translateY(-3px);

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.offerBox {
  width: 100%;
  background: linear-gradient(135deg, #007991, #78d7e8);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.box {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60px;
  background: #20a2b9;
  color: rgb(221, 36, 36);
  font-size: 16px;
  font-weight: bold;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offerTrackBox {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding-left: 70px;
}

.offerTrack {
  display: inline-block;
  white-space: nowrap;
  color: white;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  animation: offerMove 18s linear infinite;
  will-change: transform;
}

.offerTrack span {
  display: inline-block;
  margin-right: 45px;
  cursor: pointer;
}

@keyframes offerMove {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 600px) {
  .offerTrackBox {
    padding-left: 65px;
  }

  .offerTrack {
    font-size: 13px;
    animation-duration: 14s;
  }

  .box {
    width: 58px;
    font-size: 14px;
  }
}
.head {
  text-align: center;
  padding: 80px;
}

.serviceCard {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 55px;
}

.serviceCard .card {
  width: 30%;
  border: 1px solid black;
  padding: 5px;
  margin-top: 22px;
  text-align: center;
  box-sizing: border-box;
  border-radius: 20px;
   box-shadow: 0 10px 28px rgba(53, 65, 94, 0.5);
}

.serviceCard .card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

/* Mobile View */
@media (max-width: 768px) {
  .serviceCard .card {
    width: 48%;
  }
}
.doctor {
  width: 800px;
  height: 340px;
  position: relative;
  margin: auto;
  overflow: hidden;
}

.team {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  color: white;
  text-align: center;
  transition: all 1s ease;
}
.team img {
  width: 300px;
  height: 300px;
  margin-inline: 20px;
}
.blogs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.blogs .blogCard {
  width: 300px;
  background-color: rgb(0, 99, 99);
  text-align: center;
  color: white;
  margin-inline: 22px;
  border-radius: 20px;
  margin-top: 22px;
  padding: 22px;
}
.blogCard video {
  width: 100%;
}

.form {
  width: 400px;
  margin: auto;
  padding: 22px;
  background-color: white;
  text-align: center;
  border-radius: 30px;
   box-shadow: 0 18px 45px rgba(15, 23, 42, 0.5);
}
.form input {
  width: 90%;
  font-size: 20px;
  padding: 11px;
  margin-top: 5px;
  outline: none;
  border-radius: 12px;
}
.form label {
  display: block;
  text-align: left;
  width: 90%;
  margin: 12px auto 0;
  font-weight: 400;
}
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background: linear-gradient(135deg, #0f172a, #134e4a);
  color: white;
  padding: 60px;
  margin-top: 66px;
}
.footer p {
  margin-top: 15px;
}
.text a {
  color: white;
  text-decoration: none;
}

.detailCard {
  width: 400px;
  padding: 32px;
  background-color: lightblue;
  text-align: center;
  position: fixed;
  top: 5%;
  left: 50%;
  right: 50%;
  transform: translate(-50%, 40%);
}
.detailCard p {
  margin-top: 22px;
  margin-bottom: 2px;
}
.detailCard h2 {
  margin-top: 22px;
}
.close-btn {
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  color: white;
  font-size: 24px;
  padding: 6px 12px;
  border: none;
  cursor: pointer;
  line-height: 1;
}
#contact {
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}
.contBox1 {
  display: flex;

}
.cont {
  width: 200px;
  height: 200px;
  word-wrap: normal;

  background-color: #f4f1f1;
  border: 2px solid #e6e8ef;
  border-radius: 10px;
  h4 {
    color: #183e6a;
  }
}




.para {
  color: #969191;
}
.para a {
  text-decoration: none;
  color: #969191;
}

.para a:hover,
.social a:hover {
  color: blue;
}

.icon {
  width: 55px;
  height: 50px;
  background-color: #285b96;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto 10px;
  border-radius: 10px;
}

.sticker {
  font-size: 28px;
  line-height: 1;
}
.social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 15px;
}

.social-svg {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-svg svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.social-svg.youtube {
  color: #ff0000;
}

.social-svg.instagram {
  color: #e4405f;
}

.social-svg.facebook {
  color: #1877f2;
}

.social-svg.whatsapp {
  color: #25d366;
}

.dev-whatsapp {
  width: 25px;
  height: 25px;
  vertical-align: middle;
  margin-left: 5px;
}
.reviews-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f1f7ff 100%);
}

.reviews-section .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.reviews-title {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-title span ,
.blue
{
  display: inline-block;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.1);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 14px;
}

.reviews-title h2 {
  font-size: 34px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 14px;
}

.reviews-title p {
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Feedback Form */
.feedback-box {
  max-width: 760px;
  margin: 0 auto 45px;
  padding: 32px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.5);
  border: 1px solid #e5e7eb;
}

.feedback-box h3 {
  text-align: center;
  font-size: 25px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 22px;
}

#feedbackForm input,
#feedbackForm select,
#feedbackForm textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  font-size: 15px;
  outline: none;
  border: 0.5px solid ;
}
#appointment button{
  width: 80%;
  border: none;
  padding: 15px;
  margin-top: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #46949b, #27a2bb);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
 
}
#feedbackForm textarea {
  min-height: 110px;
  resize: vertical;
}

#feedbackForm button

{
  width: 60%;
  border: none;
  padding: 15px;
  
  border-radius: 999px;
  background: linear-gradient(135deg, #46949b, #27a2bb);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-left: 15%;
}

#feedbackForm button:hover {
  transform: translateY(-2px);
}

/* Slider */
.reviews-slider-wrapper {
  position: relative;
}

.reviews-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 4px 25px;
  scrollbar-width: none;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 270px;
  max-width: 270px;
  background: #ffffff;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px rgba(53, 65, 94, 0.18);
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(53, 65, 94, 0.28);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.profile-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6efd, #14b8a6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}

.review-card h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
}

.stars {
  color: #fbbc05;
  font-size: 16px;
  letter-spacing: 1px;
}

.review-card p {
  color: #475569;
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0;
}

.review-arrow {
  position: absolute;
  right: -10px;
  top: 42%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #0f172a;
  font-size: 36px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
  transition: 0.3s ease;
}

.review-arrow:hover {
  background: #27a2bb;
  color: #ffffff;
}

/* Bottom Action */
.reviews-action {
  max-width: 780px;
  margin: 50px auto 0;
  padding: 34px;
  text-align: center;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
  border: 1px solid #e5e7eb;
}

.reviews-action h3 {
  font-size: 26px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
}

.reviews-action p {
  color: #64748b;
  margin: 0 auto 24px;
  line-height: 1.7;
  max-width: 620px;
}

.review-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-review {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-review.primary {
  background: linear-gradient(135deg, #46949b, #27a2bb);
  color: #ffffff;
}

.btn-review.secondary {
  background: #f8fafc;
  color: #46949b;
  border: 2px solid rgba(13, 110, 253, 0.25);
}

.btn-review:hover {
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .reviews-section {
    padding: 70px 0;
  }

  .reviews-title h2 {
    font-size: 28px;
  }

  .feedback-box {
    padding: 24px 18px;
  }

  .review-card {
    min-width: 85%;
    max-width: 85%;
  }

  .review-arrow {
    right: 5px;
  }

  .reviews-action {
    padding: 26px 20px;
  }

  .reviews-action h3 {
    font-size: 22px;
  }
}
.faq-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, 0.10), transparent 35%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: 80px;
  background: rgba(13, 110, 253, 0.08);
  border-radius: 50%;
}

.faq-section::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -60px;
  bottom: 70px;
  background: rgba(20, 184, 166, 0.10);
  border-radius: 50%;
}

.faq-section .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title span

{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d6efd;
  background: #ffffff;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 13px;
  box-shadow: 0 8px 22px rgba(13, 110, 253, 0.12);
  border: 1px solid rgba(13, 110, 253, 0.14);
}

.section-title h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.18;
  letter-spacing: -0.8px;
}

.section-title p {
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.8;
}

.faq-wrapper {
  max-width: 950px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  padding: 30px;
  border-radius: 30px;
  box-shadow:
    0 24px 70px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(12px);
}

.faq-item {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border-radius: 20px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055);
  transition: all 0.32s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
  border-color: rgba(13, 110, 253, 0.30);
}

.faq-item.active {
  border-color: rgba(13, 110, 253, 0.50);
  box-shadow: 0 18px 45px rgba(13, 110, 253, 0.14);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 28px;
  font-size: 17.2px;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  line-height: 1.5;
}

.faq-question span {
  min-width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.12), rgba(20, 184, 166, 0.12));
  color: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 500;
  transition: all 0.32s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.faq-answer p {
  padding: 0 28px 26px;
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.85;
}

.faq-item.active .faq-answer {
  max-height: 340px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #0d6efd, #14b8a6);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(13, 110, 253, 0.25);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 70px 0;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .faq-wrapper {
    padding: 18px;
    border-radius: 24px;
  }

  .faq-question {
    font-size: 16px;
    padding: 20px;
  }

  .faq-answer p {
    padding: 0 20px 22px;
    font-size: 15.5px;
  }
}

@media (max-width: 480px) {
  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 15px;
  }

  .faq-question span {
    min-width: 34px;
    height: 34px;
    font-size: 23px;
    border-radius: 12px;
  }
}
/* ---------Login Page------------- */

.main form {
  width: 30%;
  height: 420px;
  max-width: 400px;

  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.main input,
.main select {
  height: 80px;

  padding: 15px;
}
.main button {
  background: linear-gradient(135deg, #46949b, #9fe0ed);

  color: white;

  padding: 15px 35px;
  margin-top: 3px;
  border: none;

  border-radius: 15px;

  font-size: 22px;

  font-weight: 600;

  cursor: pointer;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);

  transition: all 0.3s ease;
}
.main button:hover {
  background: linear-gradient(135deg, #00c6d7, #007991);

  color: white;

  transform: translateY(-5px);

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 1100px) {
  .main {
    display: block;
    text-align: center;
  }
  .para,
  .para a {
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

@media screen and (max-width: 920px) {
  .doctor {
    width: 90%;
  }
  .doctor img {
    width: 200px;
  }
  .main img {
    width: 500px;
  }
  #map {
    margin: 0;
  }
}

@media screen and (max-width: 780px) {
  .team img {
    margin-inline: 5px;
    width: 200px;
    height: 200px;
  }
  .serviceCard .card {
    width: 48%;
  }
  .contBox1 {
    display: grid;
    gap: 3px;
    
  }
  .cont {
    width: 160px;
    height: 180px;
  }
  .para,
  .para a {
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

@media screen and (max-width: 580px) {
  .team img {
    margin-inline: 2px;
    width: 30%;
    height: 100px;
  }
  .main img {
    width: 90%;
  }
  .form {
    width: 80%;
  }
  .para a {
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .head {
    padding: 40px 10px;
  }

  .serviceCard {
    justify-content: center;
    gap: 12px;
  }

  .serviceCard .card {
    width: calc(50% - 10px);
  }

  

  .serviceCard .card p {
    font-size: 14px;
  }
  .logo {
    margin-top: 5px;
    width: 90px;
    height: 90px;

    img {
      width: inherit;
      height: inherit;
    }
  }
  .detailCard {
    width: 300px;
  }
  .head {
    padding: 40px 10px;
  }

  .serviceCard {
    justify-content: center;
    gap: 12px;
  }

  .serviceCard .card {
    width: calc(50% - 10px);
  }

  .serviceCard .card img {
    height: 140px;
    object-fit: cover;
  }

  .serviceCard .card p {
    font-size: 14px;
  }
  #con a {
    margin-inline: 1px;
  }
}
@media screen and (max-width: 480px) {
  .para,
  .para a {
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .serviceCard .card {
    width: 48%;
    margin-inline: 0px;
  }
  .head {
    padding: 40px 10px;
  }

  .serviceCard {
    justify-content: center;
    gap: 12px;
  }

  .serviceCard .card {
    width: calc(50% - 10px);
  }

  .serviceCard .card img {
    height: 140px;
    object-fit: cover;
  }

  .serviceCard .card p {
    font-size: 14px;
  }
  #con a {
    margin-inline: 10px;
  }
}


/* MOBILE */

@media screen and (max-width: 850px) {
  #bar {
    display: block;
  }
  .main {
    display: block;
    text-align: center;
  }
  nav ul {
    display: none;

    position: absolute;
    top: 80px;
    left: 0;

    width: 100%;
    
    background-color: teal;

    flex-direction: column;
    text-align: center;

    padding: 20px;

    li{
      margin-bottom: 7px;
    }
  }

  nav ul.show {
    display: flex;
  }
}
.status-responsive {
  width: 130px;
  max-width: 100%;
  font-size: 14px;
  padding: 4px 8px;
  margin: auto;
}

.delete-responsive {
  font-size: 14px;
  padding: 4px 10px;
  white-space: wrap;
}

@media screen and (max-width: 576px) {
  .status-responsive {
    width: 105px;
    font-size: 12px;
    padding: 3px 6px;
  }

  .delete-responsive {
    font-size: 12px;
    padding: 3px 7px;
  }

  .delete-text {
    display: grid;
  }
  .head {
    padding: 40px 10px;
  }

  .serviceCard {
    justify-content: center;
    gap: 12px;
  }

  .serviceCard .card {
    width: calc(50% - 10px);
  }

  .serviceCard .card img {
    height: 140px;
    object-fit: cover;
  }

  .serviceCard .card p {
    font-size: 14px;
  }
  #con a {
    margin-inline: 15px;
  }
}
.social-svg.whatsapp {
  color: #25d366;
}

.clinic-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 30px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: transparent;
  border: none;
  box-shadow: none;
  animation: whatsappFloat 2.4s ease-in-out infinite;
}

.clinic-whatsapp svg {
  width: 54px;
  height: 54px;
  color: #25d366;
}

@keyframes whatsappFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.clinic-whatsapp:hover {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.08);
}

@media (max-width: 576px) {
  .clinic-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .clinic-whatsapp svg {
    width: 42px;
    height: 42px;
  }
}