:root {
  --primary: #fff44f;
  --hover-primary: #f0d000;
  --primary-rgba: rgba(65, 107, 169, 0.64);
  --primary-linear: linear-gradient(
    90deg,
    #416ba9 0%,
    rgba(0, 114, 187, 0) 100%
  );
  --primary-linear-reversed: linear-gradient(
    90deg,
    rgba(0, 114, 187, 0) 0%,
    #416ba9 100%
  );
  --white: #fff;
  --black: #000;
  --hover-on-white: color-mix(
    in srgb,
    var(--primary) 60%,
    var(--black) 40%
  ) !important;
  --youtube-red: #ff0000;
  --transition: all 0.2s ease-in-out;
  --hover-dark: #2f5183;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
  background: var(--primary);
  color: var(--black);
}

::selection {
  background: var(--primary);
  color: var(--black);
}

html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem; /* 16px */
  line-height: 1.5;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul,
ol,
li {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: 1px solid transparent;
}

input:focus {
  outline: none;
  border: 1px solid transparent;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

header .top-bar {
  background-color: var(--primary);
  padding-top: 6px;
  padding-bottom: 6px;
}

header .top-bar .inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

header .top-bar .inner a {
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
}

header .top-bar .inner a:hover {
  color: #1a237e;
}

header .middle {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  transition: var(--transition);
  max-height: 90px;
  overflow: visible;
}

header.scrolled .middle {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

header .middle .right nav ul {
  display: flex;
  align-items: center;
  overflow: visible;
}

header .middle .right nav ul li {
  padding: 0 5px !important;
  font-size: 18px;
  font-weight: 500;
  width: max-content;
  overflow: visible;
}

header .middle .right nav ul li a,
header .bottom nav ul li a {
  transition: var(--transition);
}

header .middle .right nav ul li a:hover,
header .bottom nav ul li a:hover {
  color: color-mix(in srgb, var(--primary) 60%, var(--black) 40%) !important;
}

.border-right-white {
  border-right: 2px solid var(--white);
}

.border-right-black {
  border-right: 2px solid var(--black);
}

.dropdown-icon-white,
.dropdown-icon-black {
  position: relative;
  cursor: pointer;
  overflow: visible;
}

.dropdown-icon-white::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 5px;
  margin: 0 auto;
  width: 1px;
  z-index: 15;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--white);
  transition: var(--transition);
}

.dropdown-icon-black::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 5px;
  margin: 0 auto;
  width: 1px;
  z-index: 15;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--black);
  transition: var(--transition);
}

.dropdown-icon-white .dropdown-menu,
.dropdown-icon-black .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
  z-index: 10000;
  margin-top: 5px;
}

.dropdown-menu ul {
  flex-direction: column;
  align-items: flex-start !important;
}

.dropdown-menu ul li {
  width: 100% !important;
}

.dropdown-icon-white .dropdown-menu {
  border-top: 3px solid var(--primary);
}

.dropdown-icon-black .dropdown-menu {
  border-top: 3px solid var(--primary);
}

.dropdown-icon-white.active .dropdown-menu,
.dropdown-icon-black.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-icon-white.active::after {
  transform: rotate(180deg);
}

.dropdown-icon-black.active::after {
  transform: rotate(180deg);
}

.lang-dropdown .dr-icon {
  transition: var(--transition);
}

.lang-dropdown.active .dr-icon {
  transform: rotate(180deg);
}

.dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.dropdown-menu ul li {
  margin: 0 !important;
  padding: 0 !important;
}

.dropdown-menu ul li a {
  display: block;
  padding: 12px 20px;
  color: var(--black);
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
  border: none !important;
  font-weight: 700;
}

.dropdown-menu ul li a:hover {
  background-color: var(--primary);
  color: var(--black) !important;
  /* font-weight: 500; */
}

header .bottom {
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: var(--white);
  overflow: visible;
}

header .bottom nav ul {
  display: flex;
  color: var(--black);
  align-items: center;
  justify-content: center;
  overflow: visible;
}

header .bottom nav ul li {
  padding: 0 5px !important;
  font-size: 18px;
  font-weight: 500;
  overflow: visible;
}

@media (max-width: 768px) {
  .dropdown-icon-white .dropdown-menu,
  .dropdown-icon-black .dropdown-menu {
    min-width: 180px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
  }

  .dropdown-icon-white.active .dropdown-menu,
  .dropdown-icon-black.active .dropdown-menu {
    transform: translateX(-50%) translateY(0);
  }
}

header li.lang-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  cursor: pointer;
  overflow: visible;
}

.lang-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 120px;
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  border-top: 3px solid var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
  z-index: 10000;
  margin-top: 5px;
}

.lang-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown .dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  flex-direction: column;
  align-items: flex-start !important;
}

.lang-dropdown .dropdown-menu ul li {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.lang-dropdown .dropdown-menu ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: none !important;
}

.lang-dropdown .dropdown-menu ul li a:hover {
  background-color: var(--primary);
  color: var(--black) !important;
  /* font-weight: 500; */
}

.lang-dropdown .dropdown-menu ul li img {
  width: 20px;
  height: 15px;
  object-fit: cover;
}

.temp {
  max-width: 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

header.scrolled .temp {
  max-width: max-content;
  opacity: 1;
  visibility: visible;
}

/*home*/
.home-banner {
  position: relative;
  z-index: 1;
}

.home-banner img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  top: 50%;
  transform: translateY(50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  font-size: 30px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.banner-text .first {
  color: var(--white);
  font-weight: 500;
  background-color: var(--black);
  position: relative;
}

.banner-text .first::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -100%;
  background-color: var(--black);
  bottom: 0;
}

.banner-text .second {
  color: var(--white);
  font-weight: 800;
}

.banner-text .third {
  color: var(--white);
  font-weight: 800;
}

.banner-text .third-span {
  color: var(--primary);
  font-weight: 800;
}

.intro-section {
  padding-top: 36px;
  padding-bottom: 140px;
  display: flex;
  gap: 31px;
}

.intro-section .right {
  flex: 1 1 50%;
  padding-top: 24px;
}

.intro-section .left {
  flex: 1 1 20%;
  position: relative;
}

.intro-section .left img {
  position: relative;
  z-index: 2;
}

.intro-section .left::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -100%;
  transform: translateY(-50%);
  width: 150%;
  height: 50%;
  background-color: var(--primary);
  z-index: 1;
}

.intro-section .right .text {
  /* font-size: 15px; */
  font-weight: 500;
}

.intro-section .right .text span {
  font-weight: 800;
}

.intro-section .right .intro-features {
  padding-top: 18px;
}

.intro-section .right .intro-features .intro-feature {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.intro-section .right .intro-features .intro-feature span {
  display: flex;
  align-items: center;
  min-width: 140px;
  gap: 4px;
  padding: 4px;
  background-color: var(--primary);
  font-size: 15px;
  font-weight: 500;
}

.intro-section .right .intro-features .intro-feature p {
  padding: 4px 4px 4px 8px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

.services-section {
  /* background-image:url('../images/bg.png');
  background-repeat: no-repeat;
  background-position: left; */
  position: relative;
}

.absolute-bg {
  position: absolute;
  left: 0;
}

.services-section .title-wrapper {
  text-align: center;
}

.services-section .title-wrapper h1 {
  margin: 0 auto;
  width: 30%;
  font-weight: 600;
  font-size: 30px;
}

.services-section .services {
  margin: 26px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  row-gap: 32px;
  column-gap: 12px;
}

.services-section .services .service {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  transform: scale(1);
}

.services-section .services .service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  transform: scale(1);
}

.services-section .services .service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.services-section .services .service .service-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(255, 244, 79, 0) 0%, #fff44f 44.68%);
  text-align: center;
  width: 100%;
  padding: 12px 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  z-index: 2;
  transition: all 0.2s ease-in-out;
  transform: translateY(0);
}

.services-section .services .service:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: inherit;
}

.services-section .services .service:hover img {
  transform: scale(1.1);
}

.services-section .services .service:hover::before {
  background: rgba(0, 0, 0, 0.4);
}

.services-section .services .service:hover .service-title {
  background: linear-gradient(180deg, rgba(255, 244, 79, 0.9) 0%, #fff44f 100%);
  transform: translateY(-20px);
  font-size: 20px;
  padding: 16px 12px;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 -4px 12px rgba(255, 244, 79, 0.3);
}

.why-choose-us {
  padding-top: 100px;
  display: flex;
}

.why-choose-us .right {
  flex: 1 1 30%;
  padding-top: 24px;
  position: relative;
}

.why-choose-us .right img {
  position: relative;
  z-index: 2;
}

.why-choose-us .left {
  flex: 1 1 50%;
}

.why-choose-us .right::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -100%;
  transform: translateY(-50%);
  width: 150%;
  height: 50%;
  background-color: var(--primary);
  z-index: 1;
}

.why-choose-us .left .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

.why-choose-us .left .title span {
  font-size: 30px;
  font-weight: 600;
}

.why-choose-us .left .text {
  font-size: 15px;
  text-align: center;
  font-weight: 500;
}

.span-bg {
  background-image: url(../images/span-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.span-bg-header {
  background-image: url(../images/span-bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.customer-satisfaction {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.customer-satisfaction .text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.customer-satisfaction .text h1 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.customer-satisfaction p {
  font-weight: 500;
  width: 60%;
}

.customer-satisfaction p span {
  font-weight: 600;
}

.videos-swiper {
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
  margin-top: 24px;
}

.videos-swiper .swiper-wrapper {
  align-items: stretch;
}

.videos-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card {
  width: 100%;
  height: 350px;
  background-color: #e5e5e5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background-color: #ddd;
}

.video-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 244, 79, 0.9);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.video-card:hover::before {
  opacity: 1;
}

.video-card::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: var(--black);
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.video-card:hover::after {
  opacity: 1;
}

@media (max-width: 576px) {
  .video-card {
    height: 200px;
    font-size: 16px;
  }

  .video-card::before {
    width: 50px;
    height: 50px;
  }

  .video-card::after {
    font-size: 20px;
  }
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.video-overlay.active {
  opacity: 1;
  visibility: visible;
}

.video-overlay-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.video-overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 90%;
  max-width: 1000px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-in-out;
}

.video-overlay.active .video-overlay-content {
  transform: translate(-50%, -50%) scale(1);
}

.video-close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  font-size: 24px;
  font-weight: bold;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.video-close-btn:hover {
  background: #f0d000;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.video-container {
  width: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--black);
}

.video-container video {
  width: 100%;
  height: auto;
  max-height: 70vh;
  display: block;
  outline: none;
}

.video-container video::-webkit-media-controls-panel {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.video-container video::-webkit-media-controls-play-button {
  /* background-color: var(--primary);
  border-radius: 50%; */
}

@media (max-width: 768px) {
  .video-overlay-content {
    width: 95%;
    padding: 15px;
    border-radius: 12px;
  }

  .video-close-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
    top: -12px;
    right: -12px;
  }

  .video-container video {
    max-height: 60vh;
  }
}

@media (max-width: 480px) {
  .video-overlay-content {
    width: 98%;
    padding: 10px;
  }

  .video-container video {
    max-height: 50vh;
  }
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  pointer-events: none;
}

.faq-section {
  padding-bottom: 100px;
}

.faq-section h1 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 36px;
}

.faqs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.faq {
  border-radius: 8.1px;
  background: #eef0f1;
  padding: 12px 0 12px 22px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.faq .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-right: 80px;
}

.faq .header .text {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.faq .header .icon {
  position: absolute;
  right: 0;
  width: 62px;
  height: calc(100% + 24px);
  background-color: var(--primary);
  align-items: center;
  justify-content: center;
  display: flex;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 22% 100%);
  transition: all 0.3s ease-in-out;
}

.faq .header .icon img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease-in-out;
}

.faq.active .header .icon img {
  transform: rotate(45deg);
}

.faq .content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease-in-out;
}

.faq .content-inner {
  padding: 20px 80px 20px 0;
}

.faq .content-inner p {
  margin: 0 0 12px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.faq .content-inner p:last-child {
  margin-bottom: 0;
}

.faq.active {
  background: #e8eaeb;
}

/* Mobile responsive FAQ */
@media (max-width: 768px) {
  .faqs {
    grid-template-columns: 1fr;
  }

  .faq .header {
    padding-right: 70px;
  }

  .faq .header .text {
    font-size: 14px;
  }

  .faq .header .icon {
    width: 50px;
  }

  .faq .content-inner {
    padding: 15px 60px 15px 0;
  }
}

.partners {
  padding-bottom: 100px;
}

.partners .title {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}

.partners .title span {
  font-size: 30px;
  font-weight: 600;
}

.logos {
  background: url("../images/span-bg.svg") no-repeat center/contain;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
}

.appointment-form {
  padding-bottom: 100px;
}

.appointment-form .title {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

.appointment-form .title span {
  font-weight: 600;
}

.appointment-form .inner {
  display: flex;
  gap: 32px;
}

.appointment-form .inner .left {
  flex: 1 1 40%;
}

.appointment-form .inner .left form .field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.appointment-form .inner .left form .field label {
  width: max-content;
  margin-bottom: 10px;
}

.appointment-form .inner .left form .field input,
.appointment-form .inner .left form .field textarea {
  border-radius: 9.621px;
  border: 1px solid #000;
  padding: 16px;
  width: 100%;
}

.appointment-form .inner .left form .button-container {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.appointment-form .inner .left form .button-container button {
  background-color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 8px;
  box-shadow: 0px 3.4px 3.4px 0px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.appointment-form .inner .left form .button-container button:hover {
  background-color: #f0d000;
}

.appointment-form .inner .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 0 48px 0;
  flex: 1 1 60%;
}

.appointment-form .inner .right .text .sec-title {
  font-size: 20px;
  font-weight: 900;
}

.appointment-form .inner .right .contact-us {
  font-size: 18px;
  font-weight: 500;
}

.appointment-form .inner .right .contact-us a {
  color: inherit !important;
}

.appointment-form .inner .right .contact-us span {
  font-weight: 900;
}

.appointment-form.about .inner .left {
  width: 100%;
}

.appointment-form.about .inner .field .relative {
  position: relative;
}

.appointment-form.about .inner .field .button-container {
  position: absolute;
  right: 10px;
  bottom: 18px;
}
.appointment-form.about .left {
  flex: unset;
}

.appointment-form.about form {
  display: flex;
  gap: 24px;
  width: 100%;
}

.appointment-form.about form .sol,
.appointment-form.about form .sag {
  width: 100%;
}

.home-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 35px;
  padding-bottom: 100px;
}

.home-contact .contact-box {
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0px 3px 25.3px 0px rgba(0, 0, 0, 0.25);
  padding: 20px 34px;
  text-align: center;
}

.home-contact .contact-box .section {
  margin-bottom: 20px;
}

.home-contact .contact-box .section .title {
  font-size: 18px;
  font-weight: 600;
}

.home-contact .contact-box .section .text {
  font-size: 16px;
  font-weight: 400;
}

.home-contact .contact-box .phone {
  font-size: 15px;
  font-weight: 600;
  color: inherit !important;
  margin-bottom: 20px;
}

.home-contact .contact-box .phone {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  transition: var(--transition);
}

.home-contact .contact-box .phone:hover {
  color: color-mix(in srgb, var(--primary) 60%, var(--black) 40%) !important;
}

.home-contact .contact-box .button-group {
  display: flex;
  gap: 24px;
  width: 100%;
  margin-top: 20px;
}

.home-contact .contact-box .button-group a {
  width: 100%;
  box-shadow: 0px 3px 25.3px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  color: inherit;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-contact .contact-box .button-group a.primary,
.home-contact .contact-box .button-group a.secondary:hover {
  background-color: var(--primary);
  color: var(--black);
}

.home-contact .contact-box .button-group a.secondary,
.home-contact .contact-box .button-group a.primary:hover {
  background-color: #979797;
  color: var(--white);
}
/* HOME */

/* FOOTER */
footer {
  position: relative;
  background-color: var(--black);
  color: var(--white);
  padding: 80px 0 40px 0;
  margin-top: 60px;
}

.footer-logo {
  padding: 20px 24px;
  background-color: var(--primary);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  z-index: 10;
}

.footer-logo img {
  max-height: 60px;
  width: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-top: 20px;
}

.footer-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}

@media (max-width: 768px) {
  .footer-section ul {
    padding-left: 0 !important;
  }

  .footer-section ul li {
    text-align: center !important;
  }
}

/* Services Section */
.footer-section.services {
  text-align: center;
}

.footer-section.services ul {
  list-style: none;
}

.footer-section.services ul li {
  color: #fff;
  text-align: center;
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 0;
}

.footer-section.services ul li a {
  transition: var(--transition);
}

.footer-section.services ul li a:hover {
  color: var(--primary);
}

/* Description Section */
.footer-section.description {
  text-align: center;
  padding: 0 20px;
  padding-top: 30px;
}

.footer-section.description p {
  color: #fff;
  font-size: 15px;
  line-height: 32.5px; /* 216.667% */
  letter-spacing: 0.75px;
}

/* Addresses Section */
.footer-section.addresses {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.address-box {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.address-box span {
  text-decoration: underline;
}

.address-box h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
  width: 100%;
  margin: 0;
}

.address-icon {
  font-size: 16px;
  margin-top: 2px;
}

.address-box p {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

/* Contact Section */
.footer-contact {
  border-top: 1px solid #333;
  padding-top: 20px;
}

.footer-contact h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--white);
}

.contact-info {
  display: flex;
  gap: 40px;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #ccc;
}

.contact-icon {
  font-size: 16px;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-section.description {
    padding: 0;
  }

  .footer-section.addresses {
    align-items: center;
  }

  .address-box {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .contact-info {
    flex-direction: column;
    gap: 15px;
  }

  footer {
    padding: 60px 0 30px 0;
    margin-top: 40px;
  }

  .footer-logo {
    padding: 15px 20px;
  }

  .footer-logo img {
    max-height: 50px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: 20px;
  }

  .footer-section h3 {
    font-size: 18px;
  }

  .footer-section h4 {
    font-size: 14px;
  }
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  padding: 10px 0;
  font-size: 18px;
  font-weight: 600;
}

.copyright .text {
  display: flex;
  align-items: center;
  margin-left: 12px;
}
/* FOOTER */

.page-banner {
  position: relative;
  border-bottom: 8px solid #fff44f;
}

.page-banner .page-name {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.28);
  font-size: 45px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.page-banner img {
  width: 100vw;
  object-fit: cover;
  height: auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: 68px;
}

.contact-container .item {
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.509px;
}

.contact-container .item p {
  margin-bottom: 30px;
}

.contact-container .item a {
  background-color: var(--primary);
  color: var(--black);
  padding: 16px 32px;
  font-size: 19px;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0px 3px 25.3px 0px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.contact-container .item a:hover {
  background-color: var(--hover-primary);
  /* color: var(--white); */
}

.contact-container .item:not(.big) {
  margin-top: -30px;
}

.contact-container .item.big {
  font-size: 18.944px;
  font-style: normal;
  font-weight: 300;
  line-height: 20.207px;
}

.contact-container .item.big span {
  font-weight: 700;
}

.contact-container .item p span {
  text-decoration: underline;
}

/* İLETİŞİM */
.box-container {
  display: flex;
  gap: 24px;
  padding: 68px 0;
}

.big-box {
  width: 100%;
  height: 400px;
  position: relative;
  background-color: var(--primary);
}

.big-box iframe {
  width: 100%;
  height: 100%;
}

.big-box:nth-of-type(odd) iframe {
  padding-right: 30px;
}

.big-box:nth-of-type(even) iframe {
  padding-left: 30px;
}

.big-box:nth-of-type(odd) .bg {
  background-color: var(--black);
  width: 40px;
  height: 100%;
  /* float: left; */
  position: absolute;
  right: 0;
}

.big-box:nth-of-type(even) .bg {
  background-color: var(--black);
  width: 40px;
  height: 100%;
  /* float: left; */
  position: absolute;
}

.big-box:nth-of-type(odd) .text {
  color: white;
  transform: rotate(-90deg);
  width: max-content;
  transform-origin: center;
  position: absolute;
  right: -23px;
  bottom: 50px;
  font-size: 21px;
  font-weight: 500;
  line-height: 120%;
}

.big-box:nth-of-type(even) .text {
  color: white;
  transform: rotate(-90deg);
  width: max-content;
  transform-origin: center;
  position: absolute;
  left: -23px;
  bottom: 50px;
  font-size: 21px;
  font-weight: 500;
  line-height: 120%;
}

@media (max-width: 768px) {
  .box-container {
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    grid-gap: 48px;
  }

  .contact-container .item:not(.big) {
    margin: 0 !important;
  }
}
/* İLETİŞİM */

/* VİDEOLAR */

.videos-page {
  padding-top: 68px;
  padding-bottom: 68px;
}

.videos-page .page-desc {
  text-align: center;
  font-weight: 600;
}

.videos-page .videos {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  row-gap: 32px;
  column-gap: 12px;
}

.tl-bg {
  position: absolute;
  top: 50%;
}

.br-bg {
  position: absolute;
  bottom: 0;
  right: 0;
}
/* VİDEOLAR */

/* BLOG */
.blog-page {
  padding: 68px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
}

.blog-page .blog {
  color: inherit !important;
  transition: var(--transition);
  border-radius: 12px;
  padding: 20px;
  transform: translateY(0);
  display: block;
}

.blog-page .blog:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 244, 79, 0.08);
}

.blog-image {
  margin: 10px 0;
  position: relative;
}

.span-bg-2 {
  background-image: url(../images/bg-2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.span-bg-2-cover {
  background-image: url(../images/bg-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.blog-image .info {
  width: max-content;
  position: absolute;
  bottom: -4%;
  font-size: 30px;
  font-weight: 275;
  padding: 0px 54px;
  left: -6%;
}

.blog-detail .title {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
}

.blog-detail .desc {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
}

.blog-detail .read-more {
  font-size: 13.636px;
  font-style: normal;
  font-weight: 700;
  display: flex;
  gap: 6px;
  margin-top: 20px;
}

.blog-detay {
  padding: 68px 0;
  display: flex;
  flex-direction: column;
  /* justify-content: center;
  align-items: center; */
}

.blog-detay .detay-image {
  position: relative;
  margin: 0 auto;
}

.blog-detay .detay-image .info {
  width: max-content;
  position: absolute;
  bottom: -4%;
  font-size: 30px;
  font-weight: 275;
  padding: 0px 54px;
  left: -6%;
}

.ic-detay {
  margin: 30px 0;
  text-align: center;
}

.ic-detay .title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ic-detay .text {
  font-weight: 500;
}

.ic-detay .image-container {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.similar-blogs {
  margin: 20px 0;
}

.similar-blogs .title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin: 20px 0;
}

.similar-blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: inherit !important;
  transition: var(--transition);
  border-radius: 8px;
  padding: 15px;
  transform: translateY(0);
}

.similar-blog:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 244, 79, 0.05);
}

.similar-blogs .inner {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.similar-blog-title {
  margin: 10px 0;
  font-size: 15px;
  font-weight: 500;
}

.similar-blog-title span {
  font-weight: 700;
}

@media (max-width: 992px) {
  .blog-page {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-page {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* BLOG */

/* HAKKIMIZDA */
.hakkimizda-container {
  padding: 68px 0;
}

.hakkimizda-container .summary {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hakkimizda-container .summary .left {
  width: 100%;
}

.hakkimizda-container .summary .right {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 29px;
}

.hakkimizda-container .images-from-us {
  margin: 30px 0;
}

.hakkimizda-container .images-from-us .title {
  font-size: 30px;
  font-weight: 700;
  width: max-content;
  margin: 20px 0;
}

.hakkimizda-container .swiper-button-next:after,
.hakkimizda-container .swiper-button-prev:after,
.hizmet-detay .swiper-button-next:after,
.hizmet-detay .swiper-button-prev:after {
  display: none;
}

.hakkimizda-container .service-quality {
  margin: 30px 0;
  background-image: url(../images/hakkimizda-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}

.hakkimizda-container .service-quality .title {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
}

.hakkimizda-container .service-quality .subtitle {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  margin-top: 10px;
}

.qualities {
  margin: 20px !important;
}

.qualities li {
  list-style: auto;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}

.qualities p {
  font-size: 15.916px;
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hakkimizda-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hakkimizda-container .summary {
    flex-direction: column;
  }

  .appointment-form.about form {
    flex-direction: column;
  }

  .intro-section {
    flex-direction: column;
  }
}

@media (max-width: 568px) {
  .why-choose-us {
    flex-direction: column;
  }

  .appointment-form .inner {
    flex-direction: column;
  }

  .home-contact {
    grid-template-columns: 1fr;
  }

  .services-section .title-wrapper h1 {
    width: 100%;
  }

  .faq-section h1 {
    text-align: center;
  }
}
/* HAKKIMIZDA */

.home-socials {
  max-width: 630px;
  width: 100%;
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 20px 16px 40px 16px;
}

.home-socials img {
  max-width: unset;
  width: 60px;
  height: 60px;
}

.instagram.social .social-text {
  background: linear-gradient(90deg, #f271d6 0%, #200d65 100%);
  background-clip: text !important;
  color: transparent;
  text-shadow: none;
}

.whatsapp.social .social-text {
  border-radius: 15.217px;
  background: #51e600;
  box-shadow: 0 4.565px 38.5px 0 rgba(0, 0, 0, 0.25);
  color: var(--white);
  padding: 16px 18px;
  width: 100%;
  white-space: nowrap;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: Poppins;
  font-size: 28.828px;
  font-style: normal;
  font-weight: 600;
  line-height: 30.749px; /* 106.667% */
}

@media (max-width: 992px) {
  header.scrolled .bottom nav ul li {
    font-size: 13px;
  }
}

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

  .sidebar {
    max-width: 280px;
  }

  .sidebar ul li a {
    padding: 14px 20px;
    font-size: 15px;
  }

  .sidebar .accordion-content ul li a {
    padding: 10px 20px 10px 40px;
    font-size: 13px;
  }

  .sidebar .sidebar-lang-dropdown .lang-trigger {
    padding: 14px 20px;
    font-size: 15px;
  }

  .sidebar .sidebar-lang-content ul li a {
    padding: 10px 20px;
    font-size: 13px;
  }

  .home-socials {
    flex-direction: column;
  }

  .toolbar {
    display: block !important;
  }

  .page-banner {
    height: 30vh;
  }

  .page-banner img {
    height: 100%;
  }

  .page-banner .page-name {
    font-size: 20px;
  }
}

.toolbar {
  display: none;
}

/* SIDEBAR */
.overlay {
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  visibility: hidden;
  opacity: 0;
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}

.toolbar {
  background-color: var(--primary);
  padding-top: 8px;
  padding-bottom: 8px;
}

.toolbar img {
  filter: drop-shadow(2px 4px 6px black);
}

.toolbar .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar {
  position: fixed;
  right: 0;
  top: 0;
  background-color: var(--white);
  z-index: 1001;
  max-width: 300px;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: var(--transition);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  padding-top: 80px;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar ul {
  padding: 20px 0;
  margin: 0;
}

.sidebar ul li {
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar ul li:last-child {
  border-bottom: none;
}

.sidebar ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}

.sidebar ul li a:hover {
  background-color: var(--primary);
  color: var(--black);
}

.sidebar .accordion-icon {
  font-size: 14px;
  transition: var(--transition);
  color: #666;
}

.sidebar .accordion.active .accordion-icon {
  color: var(--black);
}

.sidebar .accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  background-color: #f8f9fa;
}

.sidebar .accordion-content ul {
  padding: 0;
  margin: 0;
}

.sidebar .accordion-content ul li {
  border-bottom: none;
  border-top: 1px solid #e9ecef;
}

.sidebar .accordion-content ul li:first-child {
  border-top: none;
}

.sidebar .accordion-content ul li a {
  padding: 12px 24px 12px 48px;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  background-color: transparent;
}

.sidebar .accordion-content ul li a:hover {
  background-color: var(--primary);
  color: var(--black);
}

/* Sidebar Dil Dropdown */
.sidebar .sidebar-lang-dropdown {
  border-top: 2px solid #e9ecef;
  margin-top: 10px;
  padding-top: 10px;
}

.sidebar .sidebar-lang-dropdown .lang-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  background-color: transparent;
}

.sidebar .sidebar-lang-dropdown .lang-trigger:hover {
  background-color: var(--primary);
  color: var(--black);
}

.sidebar .sidebar-lang-dropdown .lang-trigger img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  margin-right: 8px;
}

.sidebar .sidebar-lang-dropdown .lang-trigger span {
  flex: 1;
  margin-left: 8px;
}

.sidebar .sidebar-lang-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  background-color: #f8f9fa;
}

.sidebar .sidebar-lang-content ul {
  padding: 0;
  margin: 0;
}

.sidebar .sidebar-lang-content ul li {
  border-bottom: none;
  border-top: 1px solid #e9ecef;
}

.sidebar .sidebar-lang-content ul li:first-child {
  border-top: none;
}

.sidebar .sidebar-lang-content ul li a {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  background-color: transparent;
  text-decoration: none;
  transition: var(--transition);
}

.sidebar .sidebar-lang-content ul li a:hover,
.sidebar .sidebar-lang-content ul li a.active {
  background-color: var(--primary);
  color: var(--black);
}

.sidebar .sidebar-lang-content ul li a img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  margin-right: 8px;
}

.sidebar .sidebar-lang-content ul li a span {
  flex: 1;
}

#hamburger {
  position: relative;
  z-index: 1002;
  transition: var(--transition);
}

/* SIDEBAR */

.no-scroll {
  overflow: hidden;
  height: 100%;
}

/* HİZMET DETAY */
.hizmet-detay {
  padding: 68px 0;
}

.hizmet-detay .section .title {
  width: max-content;
  font-size: 30px;
  font-weight: 700;
  margin: 20px 0;
}

.hizmet-detay .section p {
  margin: 20px 0 !important;
  font-size: 15px;
  font-weight: 500;
}

.hizmet-detay .options .option{
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 10px 0;
  font-size: 15px;
  font-weight: 700;
}

.hizmet-detay .options .option-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid var(--primary);
}

.hizmet-detay .images-from-us-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.hizmet-detay .images-from-us-swiper .swiper-slide img {
  width: 265px;
  height: 265px;
  object-fit: cover;
  display: block;
}
/* HİZMET DETAY */
