@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --white: #fff;
  --brand-color: #2f4e97;
  --accent-color: #ff6700;
  --title-color: #353535;
  --text-color: #000000;

  --radius-22: 22px;
  --radius-round: 150px;

  /* --bg-gradient-start: #0b2b68;
  --bg-gradient-end: #153b9b;
  --accent: #f89b1c;
  --text-light: #ffffff;
  --muted: rgba(255,255,255,0.85);
  --container-max: 1100px;
  --space: 18px;
  --radius: 28px;
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  --title-weight: 700;
  --body-weight: 300;
  --focus-ring: 3px; */
}

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

body {
  /* background-color: #c9c9c9; */
  background-image: linear-gradient(to top, var(--brand-color), #c9c9c9);
  font-family: poppins;
}

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

.container {
  width: 1100px;
  margin: auto;
  /* border: 2px solid #000; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.start-section {
  padding: 10px 16px;
  background-color: #f4f4f4;
  border-radius: 0 0 62px 62px;
  margin-bottom: 120px;
}

.section-top {
  background-color: #f4f4f4;
}

section:nth-child(2) {
  /* background-image: linear-gradient(to top, #1b47ac, transparent); */
  margin-bottom: 0;
  padding-bottom: 0;
}

section:nth-child(2) > .container {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

section:nth-child(3) {
  padding-top: 50px;
  border-radius: 62px 62px 0 0;
}

section {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.section-title {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.section-title h2 {
  width: 80%;
  text-align: center;
}

.section-title hr {
  width: 100%;
  border: 1px solid #1f1f5c;
}

.btn-round {
  border-radius: var(--radius-round);
  padding: 8px 16px;
  text-decoration: none;
  border: none;
}

.btn-round.accent-color {
  background-color: var(--accent-color);
  color: var(--white);
}

.swiper span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  /* background: #000; */
  width: 20px;
  height: 8px;
  transition: all 0.3s ease;
  border-radius: 10px;
}

/******** Start Header *********/
header.header {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.17);
  padding: 8px 16px 8px 43px;
  border: none;
  border-radius: 200px;
  position: fixed;
  z-index: 999;
  top: 5%;
  left: 10%;
  backdrop-filter: blur(10px);
}

header.header .left-content {
  display: flex;
  justify-content: space-between;
  gap: 13px;
  align-items: center;
}

header.header .left-content p {
  font-size: 16px;
  color: var(--white);
}

header.header a {
  background-color: var(--white);
  border-radius: var(--radius-round);
  padding: 18px 19px 18px 60px;
  border: none;
  font-size: 20px;
  text-decoration: none;
  color: var(--text-color);
}

header.header a:hover {
  cursor: pointer;
}
/******** End Header *********/

/******* Start top section ** ******/

/*** Start hero section ***/

.hero-section {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(90deg, #264f9f, #100673);
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  padding-left: 173px;
  border-radius: 35px;
  position: relative;
}

.hero-section h1 {
  color: var(--white);
}

.hero-section p {
  color: var(--white);
}

.hero-section hr {
  color: var(--white);
  width: 80%;
}

/*** End hero section ***/

/*** Start Status bar section ***/

.status-bar {
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 100vh;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-110px);
  height: 150px;
  width: 86%;
}

.status-bar .status-item:nth-child(1) {
  background-color: #0bb288;
  border-radius: 20px 0 0 20px;
}
.status-bar .status-item:nth-child(2) {
  background-color: #646569;
}
.status-bar .status-item:nth-child(3) {
  background-color: #af976d;
}
.status-bar .status-item:nth-child(4) {
  background-color: #a16d63;
  border-radius: 0 20px 20px 0;
}

.status-bar .status-item {
  width: 25%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 5px;
}

.status-bar .status-item img {
  width: 50px;
}

.status-bar .status-item h3,
.status-bar .status-item p {
  color: var(--white);
  text-align: center;
}

/*** End Status bar section ***/

/*** Start services section ***/

.services {
  width: 100%;
}

.services ul {
  list-style-type: none;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row-reverse;
  gap: 25px;
}

@media (max-width: 900px) {
  .services ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    flex-direction: unset;
    flex-wrap: unset;
  }
}
@media (max-width: 600px) {
  .footer-contents {
    padding: 4px 0 !important;
  }
  .footer-main-contents {
    padding: 4px 0 !important;
    gap: 8px !important;
  }
  .site-footer__inner {
    flex-direction: column;
    gap: 8px !important;
  }
  .site-footer {
    height: 50px ;
    min-height: 50px !important;
    max-height: 50px !important;
    overflow: hidden !important;
    background-color: inherit !important;
  }
}

.services ul li p {
  text-align: center;
}

/*** End services section ***/

/*** Start about section ***/

.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.about .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about .content h2 {
  position: relative;
}

.about .content h2::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 200px;
  height: 3px;
  background-color: var(--accent-color);
  border: none;
  border-radius: 20px;
}

/*** End about section ***/

/*** start specialty section ***/

.specialty-slider .swiper {
  width: 100%;
  background-color: var(--white);
  padding: 12px;
  border-radius: 32px;
}

.specialty-slider .swiper-slide {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.specialty-slider .swiper-slide img {
  width: 200px;
}

.specialty-slider .swiper-slide .content {
  width: 60%;
}

.specialty-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.specialty-slider a.more-specialty {
  padding: 4px 32px;
  background-color: var(--brand-color);
  color: var(--white);
  text-decoration: none;
  margin-bottom: 32px;
}

.specialty-slider .swiper-button-next::after,
.specialty-slider .swiper-button-prev::after {
  font-size: 30px !important;
}

/*** End specialty section ***/

/******** End top section *********/

/******** Start middle section *********/

/*** Start packages section ***/

.packages {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.packages .content {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: space-between;
}

.package-card {
  width: 100%;
  padding: 20px 20px;
  background-image: linear-gradient(to top, #022558, #0e35ab);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  border-radius: 0 0 16px 16px;
}

.package-card .head {
  display: flex;
  flex-direction: column;
  transform: translateY(-60px);
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}

.package-card .head h4 {
  font-size: 17px;
}

.package-card .head span {
  color: var(--accent-color);
}

.package-card hr {
  width: 100%;
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.package-card .foot {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.package-card .foot ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  list-style: disc;
  color: #ff6700;
}

.package-card .foot a {
  background-color: var(--accent-color);
  margin: auto;
  color: var(--white);
}

/*** End packages section ***/

/*** Start consultation section ***/

.consultation .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.consultation .container p {
  text-align: center;
}

/*** End consultation section ***/

/******** End middle section *********/

/******** start last section *********/

/*** Start paitient experience section ***/

.paitient-experience .swiper {
  width: 100%;
  background-color: #f4f4f4;
}

.paitient-experience .swiper .swiper-slide {
  border: 2px solid #848484;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  flex-direction: column;
}

.paitient-experience h3 {
  font-weight: 400;
  text-align: center;
}

.paitient-experience .swiper .swiper-slide .slide-title ul li {
  display: inline-block;
  list-style: none;
  border-right: 2px solid #363434;
  padding: 0 10px;
}

.paitient-experience .swiper .swiper-slide .slide-title ul li:last-child {
  border: none;
}

.paitient-experience
  .swiper
  span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
  width: 20px;
  height: 8px;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.paitient-experience .swiper-button-prev,
.paitient-experience .swiper-button-next {
  display: NONE;
}

/*** End paitient experience section ***/

/*** Start medical team section ***/

.medical-team {
  width: 100%;
  padding: 37px 50px;
  background-color: #f4f4f4;
  border-radius: 174px;
}
.medical-team .content {
  display: flex;
  flex-direction: row;
  /* border: 2px solid #000; */
  align-items: center;
  justify-content: center;
}

.medical-cards {
  width: 100%;
  /* border: 1px solid #0e35ab; */
  display: flex;
  align-items: center;
  flex-direction: column;
}

.medical-profile {
  width: 150px;
}

.medical-profile img {
  border-radius: 100%;
  transform: translateY(-6.4px);
  width: 100%;
  scale: 1.11;
}

.medical-profile .medical-profile-circle-gold {
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent-color);
  border-top: none;
  border-bottom: none;
  /* border-right: none; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 5px;
}

.medical-profile .medical-profile-circle-gold .medical-profile-circle-blue {
  width: 100%;
  height: 100%;
  border: 3px solid var(--brand-color);
  /* border-right: none; */
  border-radius: 50%;
}

.medical-profile-name {
  width: 100%;
  background-color: #101051;
  border: none;
  border-bottom-left-radius: 100px;
  clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
  padding-left: 40px;
  scale: 0.7;
  transform: translate(30px, -55px);
}

.medical-profile-name h4,
.medical-profile-name p {
  color: var(--white);
}

/*** End medical team section ***/

/*** Start Licenses section ***/

.honors-licenses {
  margin-bottom: 120px;
}

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

.honors-licenses .content .licenses-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.honors-licenses .content .licenses-item img {
  width: 60px;
}

.honors-licenses .content .licenses-item p {
  font-size: 12px;
}

/*** Start Licenses section ***/

/******** End last section *********/

/******** Start footer ********/

footer {
  background-color: #fff;
}

.footer-contents {
  padding: 12px;
  background-color: #f4f4f4;
  border-radius: 60px 60px 0 0;
}

.footer-main-contents {
  background: linear-gradient(90deg, #0b2b68 0%, #153b9b 100%);
  border-radius: 60px 60px 0 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 22px 0;
  gap: 82px;
}

.footer-main-contents img {
  width: 100%;
  height: 300px;
  max-width: 100%;   /* جلوگیری از بزرگ شدن بیش از حد */
}

.site-footer__inner {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 60px;
}

footer h3 {
  color: var(--accent-color);
  font-weight: 700;
}

footer p {
  color: var(--white);
}

footer address {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 22px;
  flex-direction: column;
}

footer address a {
  color: var(--white);
}

footer a.btn-round {
  margin-top: 22px;
}

footer ul li {
  list-style: none;
}

footer ul li a {
  color: var(--white);
  text-decoration: none;
}

/******** End footer ********/














/* =========================
   Responsive styles (tablet & mobile)
   ========================= */
@media (max-width: 991px) {
  /* ظرف کلی سایت */
  .container {
    width: 100%;
    padding-inline: 16px;
  }

  /* هدر (منوی بالایی شیشه‌ای) */
  header.header {
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 0;
    padding: 8px 12px;
  }

  header.header .left-content img {
    height: 32px;
  }

  header.header .left-content p {
    font-size: 12px;
  }

  header.header a {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* سکشن هیرو */
  .hero-section {
    height: auto;
    padding: 60px 16px 24px;
    border-radius: 0 0 24px 24px;
  }

  .hero-section h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-section p {
    max-width: 100%;
    font-size: 14px;
  }

  .hero-section .hero-buttons,
  .hero-section .hero-buttons .btn-round {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* نوار رنگی وضعیت‌ها زیر هیرو */
  .status-bar {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
  }

  .status-bar .status-item {
    width: 100%;
    border-radius: 16px !important;
    flex-direction: row;
    justify-content: flex-start;
  }

  .status-bar .status-item img {
    width: 40px;
    margin-bottom: 0;
    margin-right: 8px;
  }

  /* بخش سرویس‌ها */
  .services ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .services ul li {
    width: calc(50% - 20px);
  }

  /* بخش درب اره ما */
  .about {
    flex-direction: column;
    gap: 24px;
  }

  .about .content,
  .about img {
    width: 100%;
  }

  .about .content h2::after {
    width: 120px;
  }

  /* اسلایدر تخصص‌ها */
  .specialty-slider .swiper-slide {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .specialty-slider .swiper-slide img {
    width: 150px;
  }

  /* پکیج‌ها */
  .packages .content {
    flex-direction: column;
  }

  /* تیم پزشکی */
  .medical-team {
    padding: 32px 16px;
    border-radius: 40px;
  }

  .medical-team .content {
    flex-direction: column;
    gap: 24px;
  }

  .medical-profile {
    width: 120px;
  }

  /* لایسنس‌ها */
  .honors-licenses .content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* فوتر */
  .site-footer__inner {
      flex-direction: column;
      gap: 32px !important;
    }

    .footer-contents,
    .footer-main-contents,
    footer.site-footer {
      border-radius: 0 !important;
    }

    footer.site-footer {
       height: 50px !important;
       min-height: 50px !important;
       max-height: 50px !important;
      overflow: visible !important;
    }

    .section {
      gap: 50px;
    }
  }


/* موبایل‌های خیلی کوچک */
@media (max-width: 768px) {

  .services ul li {
    width: 100%;
  }
}

/* مرکزچین کردن آیتم‌های خدمات فقط در موبایل و تبلت */
@media (max-width: 991px) {
  .services ul.content {
    justify-items: center;
    align-items: center;
  }
  .services ul.content li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
