@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #37b7c3;
  --primary-100: #fff;
  --primary-200: #ebf4f6;
  --primary-500: #faf5f3;
  --primary-600: #088395;
  --primary-800: #071952;
  --primary-900: #000;
  --text-color-900: #071012;
  --text-color-500: #6a8085;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

/* GENERAL CSS START */
ol,
ul {
  margin: 0 !important;
  padding: 0 !important;
}

a {
  text-decoration: none !important;
  color: black;
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: auto !important;
}

li {
  list-style: none;
}

section {
  padding: 60px 0;
}

img {
  max-width: 100%;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "" !important;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "" !important;
}

.default-img {
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
  position: relative;
}

.swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  /* ortadaki beyaz noktanın boyutu */
  height: 10px;
  background: #fff;
  /* beyaz renk */
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 20px)
  ) !important;
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 20px)
  ) !important;
}

/* GENERAL CSS END */

/* CONTENT WRAPPER START */

.content-wrapper {
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
}

.content-wrapper ul,
.content-wrapper ol {
  padding-left: 40px !important;
  margin-bottom: 20px !important;
}

.content-wrapper ul li {
  list-style: unset;
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.content-wrapper ol li {
  list-style: disc;
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.content-wrapper p + h2,
.contnet-wrapper p + h3,
.content-wrapper p + h4,
.content-wrapper p + h5,
.content-wrapper p + h6 {
  margin-bottom: 20px;
}

.content-wrapper img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  margin: 20px 0;
}

/* CONTENT WRAPPER END */

/* HEADER START */

header {
  background-color: white;
}

.header-top {
  text-align: center;
  padding: 5px 0;
  background-color: #004950;
  color: var(--primary-100);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(90deg, #37b7c3, #6ad1e3, #37b7c3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  letter-spacing: 1px;
}

.logo span:first-child {
  font-style: italic;
  font-size: 32px;
  font-weight: thin;
}

.logo span:last-child {
  font-style: italic;
  font-size: 22px;
  font-weight: bold;
}

.logo img {
  width: 155px;
}

/* DESKTOP HEADER TOP START */

.desktop-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.desktop-header-top .left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.desktop-header-top .left .phone,
.desktop-header-top .left .email {
  display: flex;
  align-items: center;
  gap: 10px;
}

.desktop-header-top .left .phone i,
.desktop-header-top .left .email i {
  font-size: 27px;
  color: var(--primary-color);
}

.desktop-header-top .left .right-column {
  display: flex;
  flex-direction: column;
  color: var(--primary-900);
  font-size: 14px;
  font-weight: 600;
}

.desktop-header-top .left .right-column .gray-text {
  color: gray;
  font-weight: normal;
}

.desktop-header-top .right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  font-size: 27px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 8px;
  padding: 0 3px;
  transition: all 0.3s ease;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--primary-100);
}

/* DESKTOP HEADER TOP END */

/* DESKTOP HEADER BOTTOM START */

.desktop-header-bottom {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  background-color: #f3f3f385;
  border-top: 1px solid gainsboro;
}

.desktop-header-bottom.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.desktop-header-bottom nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-header-bottom nav ul li a {
  text-transform: capitalize;
  color: var(--primary-900);
  position: relative;
}

.desktop-header-bottom nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--primary-900);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.desktop-header-bottom nav ul .dropdown a::before {
  bottom: 40px;
}

.desktop-header-bottom nav ul li a:hover::before {
  width: 100%;
}

.dropdown-content .dropdown-items li a::before {
  bottom: -5px !important;
}

/* DESKTOP HEADER BOTTOM END */

/* HEADER DROPDOWN START */
.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown a {
  padding-bottom: 50px;
}

@media (max-width: 992px) {
  .dropdown a {
    padding-bottom: 0px !important;
  }
}

.dropdown-content {
  width: 970px;
  border-top: 5px solid var(--primary-500);
  position: absolute;
  background: white;
  margin: 0 auto;
  left: -245px;
  right: 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 9;
  pointer-events: none;
  top: 40px;
  transform: scaleY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: top;
  opacity: 0;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
}

@media (max-width: 992px) {
  .dropdown-content {
    border: none;
    position: static;
    width: 100%;
    left: 0px;
    box-shadow: none;
    opacity: 1;
    transform: scaleY(1);
  }
}

.dropdown-items {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0 !important;
  width: 100%;
  padding: 30px !important;
}

@media (max-width: 992px) {
  .dropdown-items {
    grid-template-columns: repeat(1, 1fr) !important;
    padding: 0 !important;
  }
}

.dropdown-content .dropdown-items li {
  display: block;
  padding: 10px;
  width: 100%;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .dropdown-content .dropdown-items li {
    padding: 10px 0;
  }
}

.dropdown-content .dropdown-items li a {
  color: black !important;
  padding-bottom: 0;
  font-weight: 300;
}

.dropdown:hover .dropdown-content {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: all;
}

.dropdown-img {
  width: 75%;
  padding: 30px;
}

.dropdown-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media (max-width: 992px) {
  .dropdown-img {
    display: none;
  }
}

.dropdown-icon i {
  transition: all 0.3s ease;
  font-size: 12px;
}

@media (min-width: 992px) {
  .dropdown:hover .dropdown-icon i {
    color: var(--primary-900);
    transform: rotate(180deg);
    transition: transform 0.3s ease, color 0.3s ease;
  }
}

/* mobile için open class ekliyoruz */
.dropdown-icon i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.dropdown.open .dropdown-icon i {
  transform: rotate(180deg);
  color: var(--primary-500);
}

/* HEADER DROPDOWN END */

/* MOBILE HEADER START */

.mobile-header .logo {
  align-items: flex-start;
  transform: translateX(0);
}

@media (min-width: 992px) {
  .mobile-header {
    display: none;
  }
}

@media (max-width: 992px) {
  .desktop-header {
    display: none;
  }
}

.mobile-header {
  transition: all 0.3s ease;
  padding: 0 10px;
  position: sticky;
  top: 0;
  z-index: 5;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.mobile-top {
  padding:5px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hamburger {
  display: block;
  cursor: pointer;
  position: relative;
}

.hamburger::after {
  content: "MENÜ";
  position: absolute;
  left: -50px;
  top: 50%;
  color: var(--primary-color);
  transform: translateY(-50%);
}

.hamburger .bar {
  display: block;
  margin: 5px 0;
  height: 3px;
  width: 30px;
  border-radius: 10px;
  background-color: var(--primary-color);
  transition: 0.3s ease;
  position: relative;
  z-index: 13;
}

@media (min-width: 430px) {
  .hamburger.active .bar {
    background-color: white;
  }
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-wrapper {
  background-color: white;
  width: 50%;
  height: 100vh;
  padding: 15px 30px;
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 12;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: scroll;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.header-wrapper.active {
  left: 0;
}

@media (max-width: 768px) {
  .header-wrapper {
    width: 75%;
  }
}

@media (max-width: 430px) {
  .header-wrapper {
    width: 100%;
  }
}

.overlay {
  position: fixed;
  left: 0;
  width: 100vw;
  height: 120vh;
  background-color: rgba(0, 0, 0, 0.9) !important;
  z-index: 3;
  display: none;
  pointer-events: none;
  bottom: 0;
}

.overlay.active {
  display: block;
  pointer-events: all;
}

.mobile-header nav ul li {
  padding: 10px 0;
}

.mobile-header nav ul li a {
  color: black;
  display: block;
}

.mobile-header .dropdown-icon i {
  font-size: 27px;
}

@media (max-width: 992px) {
  .menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .dropdown-content {
    display: none;
  }

  .dropdown-content.open {
    display: block;
  }
}

/* MOBILE HEADER END */

/* HEADER END*/

/* HERO START */

.hero {
  padding: 0;
}

.hero-item {
  position: relative;
}

.hero-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.hero-content-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 36px;
  font-weight: 900;
  color: var(--primary-color);
}

.hero-content-desc {
  padding: 0 80px;
  color: var(--text-color-500);
  font-size: 20px;
}

.hero-content-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.hero-content-btn a {
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 20px;
}

.hero-content-btn .contact {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.hero-content-btn .contact:hover {
  background-color: var(--primary-color);
  color: var(--primary-200);
}

.hero-content-btn .appointment {
  color: var(--primary-200);
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.hero-content-btn .appointment:hover {
  color: var(--primary-color);
  background-color: transparent;
}

@media (min-width: 992px) {
  .desktop-hero {
    display: block;
  }

  .mobile-hero {
    display: none;
  }
}

@media (max-width: 992px) {
  .mobile-hero {
    display: block;
  }

  .desktop-hero {
    display: none;
  }
}

.mobile-hero img {
  width: 100%;
  max-width: 100%;
}

.scroll-indicator {
  position: relative;
  width: 120px;
  height: 120px;
  margin: auto;
  cursor: pointer;
  /* tıklanabilir imleç */
  transform: translateY(-75px);
  z-index: 2;
  border-radius: 50%;
  background-color: var(--primary-100);
}

.circle-text {
  width: 100%;
  height: 100%;
  animation: rotateText 10s linear infinite;
  /* yazıyı döndürme */
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Mouse ikonu */
.mouse-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 40px;
  border: 2px solid #000;
  border-radius: 14px;
  transform: translate(-50%, -50%);
}

.mouse-icon::after {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  background: #000;
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(6px);
  }

  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

.heroSlider .swiper-horizontal > .swiper-pagination-bullets,
.heroSlider .swiper-pagination-bullets.swiper-pagination-horizontal,
.heroSlider .swiper-pagination-custom,
.heroSlider .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 100px) !important;
}

/* HERO END */

/* ABOUT SECTION START */

.about {
  padding: 0px 0px 60px 0;
}

.about-left {
  position: relative;
}

.about-left .main-img {
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}

.about-left::after {
  content: "";
  position: absolute;
  left: -40px;
  top: -30px;
  width: 400px;
  height: 400px;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  background-color: var(--primary-color);
  z-index: -1;
}

@media (max-width: 768px) {
  .about-left::after {
    width: 100%;
  }
}

.about-left .absolute-img {
  position: absolute;
  left: -50px;
  bottom: 0;
}

.about-top {
  padding: 30px 60px;
  transform: rotate(90deg);
  position: absolute;
  top: -35px;
  right: 65px;
  background-color: var(--primary-color);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

@media (max-width: 768px) {
  .about-top {
    top: -100px;
    right: 0px;
  }
}

.about-top-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: rotate(270deg);
  color: var(--primary-100);
}

.about-top-text .year {
  font-size: 32px;
  font-weight: 600;
}

.about-top-text span {
  font-size: 20px;
}

.about-right {
  padding: 0px 30px;
}

.about-right .about-title {
  color: var(--primary-color);
}

.about-right .section-title {
  display: flex;
  flex-direction: column;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 30px;
}

.about-right .section-title span:last-child {
  color: var(--primary-color);
  position: relative;
}

.about-right .section-title span:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 5px;
  border-radius: 30px;
  width: 40%;
  background: linear-gradient(to right, #37b7c3, #ffffff);
}

.about-right-list .list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 8px;
  height: 90%;
  padding: 5px 10px;
}

.about-right-list .list-item i {
  font-size: 27px;
  color: var(--primary-color);
}

/* ABOUT SECTION END */

/* SERVICES SECTION START */

.services {
  background-color: var(--primary-500);
  position: relative;
}

.services .left-img {
  position: absolute;
  left: 0;
  top: 0;
}

.services .right-img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.services .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 60px;
}

.services .section-title span:first-child {
  color: var(--primary-600);
}

.services .section-title span:last-child {
  font-size: 32px;
  padding: 30px 60px;
  color: var(--text-color-500);
  border-radius: 30px;
  border-bottom: 3px solid var(--primary-color);
}

.services-box {
  margin-bottom: 20px;
  display: block;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.services-box:hover {
  transform: translateY(-10px);
}

@media (max-width: 992px) {
  .services-box {
    padding: 0px 20px;
  }

  .services-box:hover {
    transform: translateY(0);
  }
}

.services-box img {
  border-radius: 28px;
  width: 100%;
}

.services-box .services-box-bottom {
  background-color: var(--primary-100);
  position: relative;
  z-index: 2;
  top: -30px;
  padding: 20px 30px;
  margin: 0 20px;
  border-radius: 28px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-bottom: 5px solid var(--primary-color);
}

.services-box .services-box-title {
  color: var(--primary-900);
  font-size: 16px;
  font-weight: 500;
}

.services-box .services-box-desc {
  font-size: 14px;
  color: var(--text-color-500);
}

/* SERVICES SECTION END */

/* COMMENTS SECTION START */

.comments .container {
  position: relative;
}

.absolute-bottom-right,
.absolute-bottom-left,
.absolute-top-right,
.absolute-top-left {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 50%;
  z-index: 3;
  animation: floatUpDown 4s ease-in-out infinite alternate;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
    /* Yavaşça yukarı çık */
  }
}

.absolute-bottom-right {
  position: absolute;
  bottom: 0;
  right: 30px;
  animation-delay: 0s;
}

.absolute-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  animation-delay: 1s;
}

.absolute-top-right {
  position: absolute;
  right: 0;
  top: 0;
  animation-delay: 2s;
}

.absolute-top-left {
  position: absolute;
  left: 30px;
  top: 0;
  animation-delay: 3s;
}

@media (max-width: 768px) {
  .absolute-top-left {
    position: static;
    margin-bottom: 15px;
  }
}

.comments .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comments .section-title span:first-child {
  color: var(--primary-600);
}

.comments .section-title span:last-child {
  font-size: 32px;
  padding: 30px 60px;
  color: var(--text-color-500);
  border-radius: 30px;
  border-bottom: 3px solid var(--primary-color);
}

.commentSlider {
  padding: 120px 0 !important;
  position: relative;
  overflow: visible;
  /* pseudo-element taşması için */
}

/* Sol taraf sis efekti */
.swiper.commentSlider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  /* sis genişliği */
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
  z-index: 10;
}

/* Sağ taraf sis efekti */
.swiper.commentSlider::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  /* sis genişliği */
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
  z-index: 10;
}

.swiper.commentSlider .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 0px);
}

.comment-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
  background-color: var(--primary-200);
  border-radius: 28px;
  border-bottom: 5px solid var(--primary-color);
}

.comment-box-top {
  font-size: 24px;
  font-weight: 600;
}

.comment-box-desc {
  color: var(--text-color-500);
}

.comment-box-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comment-box-bottom .comment-bottom-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-box-bottom .comment-bottom-left img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.comment-box-bottom .comment-bottom-left .comment-bottom-title {
  display: flex;
  flex-direction: column;
}

.comment-box-bottom
  .comment-bottom-left
  .comment-bottom-title
  span:first-child {
  font-weight: 600;
}

.comment-box-bottom .comment-bottom-left .comment-bottom-title span:last-child {
  font-size: 14px;
  color: var(--text-color-500);
}

.comment-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.comment-modal-content {
  background-color: var(--primary-200);
  border-radius: 10px;
  border-bottom: 10px solid var(--primary-color);
  margin: 5% auto;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-50px);
  opacity: 0;
  transition: all 0.4s ease;
}

.comment-modal.show .comment-modal-content {
  transform: translateY(0);
  opacity: 1;
}

.comment-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.comment-modal #modalTitle {
  font-size: 22px;
  font-weight: 600;
}

.comment-modal-content p {
  line-height: 1.6;
  font-size: 14px;
  color: var(--text-color-500);
  margin-top: 10px;
}

.comment-modal .modal-header {
  gap: 20px;
  justify-content: flex-start;
  padding: 16px 0;
}

.comment-modal .modal-header img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* COMMENTS SECTION END */

/* BLOG SECTION START */

.blog {
  background-color: var(--primary-500);
  position: relative;
  overflow: hidden;
}

.blog .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.blog .section-title span:first-child {
  color: var(--primary-600);
}

.blog .section-title span:last-child {
  font-size: 32px;
  padding: 30px 60px;
  color: var(--text-color-500);
  border-radius: 30px;
  border-bottom: 3px solid var(--primary-color);
}

.blog .absolute-left {
  position: absolute;
  top: -5%;
  left: 0;
  width: 25%;
}

.blog .absolute-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25%;
}

.blogSlider {
  padding: 80px 0 !important;
}

.blogSlider .swiper-pagination-bullet {
  background: var(--primary-100);
}

.blog-box {
  color: var(--primary-900);
}

.blog-box img {
  width: 100%;
  border-radius: 28px;
}

.blog-box:hover {
  color: var(--primary-900);
}

.blog-box .blog-box-bottom {
  background-color: var(--primary-200);
  position: relative;
  z-index: 2;
  top: -50px;
  padding: 20px 30px;
  margin: 0 20px;
  border-radius: 28px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-bottom: 5px solid var(--primary-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-box .blog-box-bottom .blog-box-title {
  font-size: 16px;
  font-weight: 600;
}

.blog-box .blog-box-bottom .blog-box-desc {
  color: var(--text-color-500);
  font-size: 14px;
}

.blog-box .blog-box-bottom .router {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-box .blog-box-bottom .router {
  font-size: 14px;
  color: var(--text-color-500);
}

.blog-box .blog-box-bottom .router i {
  color: var(--primary-color);
}

/* BLOG SECTION END */

/* CTA START */

.cta {
  padding: 80px;
  color: var(--primary-100);
  position: relative;
}

.cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: #37b7c35e;
  z-index: 2;
}

@media (max-width: 768px) {
  .cta {
    padding: 80px 0;
  }
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  position: relative;
  z-index: 3;
}

.cta-title {
  font-size: 36px;
  font-weight: 600;
}

.cta-desc {
  width: 70%;
  margin: 0 auto;
  font-size: 20px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .cta-desc {
    width: 100%;
  }
}

.btn-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btn-wrapper a {
  padding: 10px 30px;
  color: var(--primary-100);
  text-transform: uppercase;
}

.btn-wrapper .contact-btn {
  background-color: var(--primary-100);
  border: 1px solid var(--primary-100);
  color: var(--primary-color);
}

.btn-wrapper .contact-btn:hover {
  background-color: transparent;
  color: var(--primary-100);
}

.btn-wrapper .appointment-btn {
  border: 1px solid var(--primary-100);
  background-color: transparent;
  color: var(--primary-100);
}

.btn-wrapper .appointment-btn:hover {
  background-color: var(--primary-100);
  color: var(--primary-color);
}

/* CTA END */

/* FOOTER START */

footer {
  padding: 60px 0 0 0;
  background-color: var(--primary-900);
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .footer-wrapper {
    flex-wrap: wrap;
  }
}

.footer-col {
  width: 100%;
}

.footer-col .footer-title {
  color: var(--primary-100);
  margin-bottom: 15px;
}

.footer-list li {
  margin-bottom: 5px;
}

.footer-list li a,
.footer-list li {
  font-size: 14px;
  color: #f9f9f9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--text-color-500);
  padding-top: 30px;
}

.footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-right {
  color: #f9f9f9;
}

/* FOOTER END */

/* BREADCRUMB START */

.breadcrumb-container {
  background-color: var(--primary-color);
  padding: 20px 0;
  text-align: center;
  color: var(--primary-100);
}

.breadcrumb-container .links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.breadcrumb-container .links li {
  position: relative;
}

.breadcrumb-container .links li:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -10px;
}

.breadcrumb-container .links li a {
  color: var(--primary-100);
  font-weight: 600;
}

/* BREADCRUMB END */

/* BLOG DETAIL START */

aside {
  padding: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: sticky;
  top: 35px;
  border-radius: 10px;
}

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

aside .title {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 10px;
}

aside form input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--text-color-500);
}

aside form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--text-color-500);
  resize: none;
}

aside form button {
  padding: 10px;
  text-transform: uppercase;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--primary-100);
  border-radius: 5px;
  transition: all 0.3s ease;
}

aside form button:hover {
  background-color: var(--primary-100);
  color: var(--primary-color);
}

/* BLOG DETAIL END */

/* CONTACT PAGE START */

.contact-page .contact-page-left {
  background-color: var(--primary-500);
  position: relative;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .contact-page .contact-page-left {
    margin-bottom: 30px;
  }
}

.contact-page .contact-page-left .title {
  font-size: 27px;
  color: var(--primary-900);
  margin-bottom: 10px;
}

.contact-page .contact-page-left .contact-absolute {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35%;
}

.contact-page .contact-page-left .contact-left-absolute {
  position: absolute;
  left: 0;
  top: 0;
  width: 35%;
}

.contact-page .contact-page-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .contact-page .contact-page-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.contact-page .contact-page-list li {
  border-radius: 5px;
  width: 100%;
  padding: 20px;
  background-color: var(--primary-200);
  color: var(--primary-900);
}

.contact-page .contact-page-list li a {
  color: var(--primary-900);
  width: 100%;
  display: block;
}

.contact-page .contact-page-list li i,
.contact-page .contact-page-list li a i {
  color: var(--primary-color);
  font-size: 22px;
}

.contact-page .contact-page-right {
  background-color: var(--primary-100);
  padding: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
}

.contact-page-right .title {
  font-size: 27px;
  color: var(--primary-900);
  margin-bottom: 10px;
}

.contact-page-right form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-page-right form input,
.contact-page-right form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--text-color-500);
}

.contact-page-right form textarea {
  resize: none;
}

.contact-page-right form button {
  padding: 10px;
  text-transform: uppercase;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--primary-100);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.contact-page-right form button:hover {
  background-color: var(--primary-100);
  color: var(--primary-color);
}

/* CONTACT PAGE END */

/* WHATSAPP FIXED BUTTON START */

.whatsapp-icon {
  text-align: center;
  display: inline-block;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 3;
}

@media (max-width: 992px) {
  .whatsapp-icon {
    display: none;
  }
}

.whatsapp-modal {
  width: 220px;
  text-align: center;
  background-color: white;
  padding: 10px 20px;
  border-radius: 50px;
  color: black;
  font-size: 18px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
  z-index: 2;
  margin-bottom: 15px;
  animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.whatsapp-modal::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}

.whatsapp-modal b {
  font-size: 18px;
}

.whatsapp-img {
  position: relative;
  display: inline-block;
}

.whatsapp-img img {
  width: 70px;
  border-radius: 50%;
}

.whatsapp-img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 255, 0, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 1.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  70% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/* WHATSAPP FIXED BUTTON END */

/* RECIPE SECTION START */

.recipes {
  overflow: hidden;
}

.recipes .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.recipes .section-title span:first-child {
  color: var(--primary-600);
}

.recipes .section-title span:last-child {
  font-size: 32px;
  padding: 30px 60px;
  color: var(--text-color-500);
  border-radius: 30px;
  border-bottom: 3px solid var(--primary-color);
}

.recipes .absolute-left {
  position: absolute;
  top: -5%;
  left: 0;
  width: 25%;
}

.recipes .absolute-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25%;
}

.recipeSlider {
  padding: 80px 0 !important;
}

.recipeSlider .swiper-pagination-bullet {
  background: var(--primary-900);
}

.recipes-box {
  color: var(--primary-900);
}

.recipes-box img {
  width: 100%;
  border-radius: 28px;
}

.recipes-box:hover {
  color: var(--primary-900);
}

.recipes-box .recipes-box-bottom {
  background-color: var(--primary-200);
  position: relative;
  z-index: 2;
  top: -30px;
  padding: 20px 30px;
  margin: 0 20px;
  border-radius: 28px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-bottom: 5px solid var(--primary-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.recipes-box .recipes-box-bottom .recipes-box-title {
  font-size: 16px;
  font-weight: 600;
}

.recipes-box .recipes-box-bottom .recipes-box-desc {
  color: var(--text-color-500);
  font-size: 14px;
}

.recipes-box .recipes-box-bottom .router {
  display: flex;
  align-items: center;
  gap: 10px;
}

.recipes-box .recipes-box-bottom .router {
  font-size: 14px;
  color: var(--text-color-500);
}

.recipes-box .recipes-box-bottom .router i {
  color: var(--primary-color);
}

/* RECIPE SECTION END */

/* FOOTER STICKY MENU START */

.footer-sticky {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: black;
  position: fixed;
  z-index: 10;
  width: 100%;
  bottom: 0;
  padding: 0 0.5rem 1.15rem 0.5rem;
  border-top-left-radius: 2.15rem;
  border-top-right-radius: 2.15rem;
  border-top: 6px solid var(--primary-900);
}

@media (max-width: 992px) {
  .footer-sticky {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer-sticky .sticky-box {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.footer-sticky .sticky-box .icon {
  height: 48px;
  width: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
}

.footer-sticky .sticky-box .text {
  font-size: 14px;
  color: white;
  text-align: center;
}

@media (max-width: 568px) {
  .footer-sticky .sticky-box .text {
    font-size: 10px;
  }
}

.footer-sticky .top-box .icon::before {
  content: "";
  position: absolute;
  height: 66px;
  width: 66px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0.5;
}

.footer-sticky .top-box .icon::after {
  content: "";
  position: absolute;
  height: 56px;
  width: 56px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0.75;
}

.footer-sticky .sticky-box .icon i {
  font-size: 22px;
  color: white;
}

.footer-sticky .top-box .icon i {
  font-size: 22px;
  color: white;
}

.footer-sticky .top-box {
  -webkit-transform: translateY(-1.5rem);
  transform: translateY(-1.5rem);
}
.footer-sticky .top-box .text {
  -webkit-transform: translateY(1.5rem);
  transform: translateY(1.5rem);
  text-align: center;
}

.footer-sticky .top-box .icon {
  background: var(--primary-900);
  border-radius: 50%;
  position: relative;
}

/* FOOTER STICKY BUTTON END */

/* ABOUT PAGE START */

.about-page-left img {
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width:992px) {
  .about-page-left {
    margin-bottom: 30px;
  }
}

/* ABOUT PAGE END */

/* 404 PAGE START */

@media (max-width:992px) {
  .error-page-left {
    margin-bottom: 30px
  }
}

.error-page-right {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.error-page-right .title {
  font-size: 32px;
  font-weight: 600;
}

.error-page-right a {
  background-color: var(--primary-color);
  color: var(--primary-100);
  padding: 15px 60px;
  border-radius: 60px;
}
.error-page-right a:hover {
  color: var(--primary-100)
}

/* 404 PAGE END */