@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;400;700&display=swap");
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
:target {
  scroll-margin-top: 100px;
}

.fancybox__container {
  z-index: 1999;
}

.fancybox__track,
.fancybox__content,
.carousel__track {
  direction: ltr !important;
}

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-track {
  background-color: var(--main);
}

::-webkit-scrollbar-thumb {
  background: var(--main);
  height: 300px;
}

* {
  margin: 0;
  padding: 0;
  line-height: 1.7;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overscroll-behavior: none;
  font-family: "Tajawal", sans-serif;
  -webkit-tap-highlight-color: transparent;
}

html[lang=ar] {
  direction: rtl;
}

body {
  background: #ffffff;
  overflow-x: hidden;
  position: relative;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

button,
input,
select,
textarea {
  border: none;
  outline: none;
  background: none;
}

.row {
  margin: 0;
  padding: 0;
}

.preloader {
  background-color: #fbf9f9;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.preloader .preloaderImg {
  width: 100px;
  height: 100px;
  -webkit-mask-image: url("../images/tanmiaLogo.svg");
          mask-image: url("../images/tanmiaLogo.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: relative;
}
.preloader .preloaderImg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 200px;
  z-index: 2;
  background-color: #287871;
  transform: translateY(100%);
  animation: slide-up 1.5s forwards;
}
.preloader .preloaderImg::before {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  background-image: url("../images/logo.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(1) opacity(0.5);
}
@keyframes slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}

a[href*=tel] {
  direction: ltr;
}

html[lang=en] main .about_section .about-experience {
  left: 20px;
}
html[lang=en] .clients-section .company-details a i, html[lang=en] main .blog_section .blog_card .btn i {
  transform: rotate(180deg);
}
html[lang=en] header .news-ticker {
  text-align: left;
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 10px;
  color: #287871;
}
.section-title::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 4px;
  background: linear-gradient(to right, #287871, transparent);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section-title .text-start::after {
  left: 0;
  transform: none;
}

.header_section {
  position: relative;
  background: url("../images/bannersec.jpg") center/cover no-repeat;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.header_section .content_section {
  position: relative;
  z-index: 2;
  text-align: center;
}
.header_section .content_section h3 {
  margin-top: 4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.header_section .content_section h5 {
  font-size: 18px;
  max-width: 1200px;
  padding: 20px;
  margin: 0 auto;
}
.header_section .text-white {
  color: white;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-bottom: 14px;
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
header.scrolled {
  background: #ffffff;
}
header .news-ticker {
  background-color: #287871;
  color: #ffffff;
  padding: 6px 16px;
  text-align: right;
  font-size: 16px;
}
header .news-ticker span {
  color: #B8905E;
  padding: 0 2px;
  font-weight: bold;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 1rem !important;
  background: #ffffff;
}
header nav .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .logo img {
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
header nav .nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  transition: all 0.4s ease-in-out;
  z-index: 9;
}
header nav .nav-links img {
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
header nav .nav-links li.hide_lg {
  display: none;
}
@media screen and (max-width: 768px) {
  header nav .nav-links {
    padding: 2rem 1.5rem;
    position: fixed;
    background: #ffffff;
    height: 100vh;
    top: 0;
    right: -50%;
    width: 50%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
    align-items: flex-start;
  }
  header nav .nav-links li.hide_lg {
    display: block;
  }
  header nav .nav-links.active {
    right: 0;
  }
}
header nav .nav-links a {
  color: #287871;
  font-size: 16px;
  font-weight: 600;
}
header nav .nav-links a:hover {
  color: #506c69;
}
header nav .nav-links a.active {
  color: #287871 !important;
  font-weight: bold;
  text-decoration: underline;
  position: relative;
}
header nav .layer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(153, 150, 150, 0.7);
  z-index: 1;
  height: 100vh;
}
header nav .layer.active {
  display: block;
}
header nav .actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
header nav .actions button {
  color: #287871;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: normal;
}
header nav .actions .menu-button {
  display: none;
}
@media screen and (max-width: 768px) {
  header nav .actions .menu-button {
    display: block;
  }
}

main {
  min-height: 100vh;
}
main .hero_section {
  position: relative;
  min-height: 100vh;
}
main .hero_section .item {
  width: 200px;
  height: 300px;
  list-style-type: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(255, 255, 255, 0.3) inset;
  transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
  border: 1px solid rgba(255, 255, 255, 0.647);
}
main .hero_section .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
main .hero_section .item:nth-child(1), main .hero_section .item:nth-child(2) {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  border: none;
  border-radius: 20px;
}
main .hero_section .item:nth-child(3) {
  left: 50%;
}
main .hero_section .item:nth-child(4) {
  left: calc(50% + 220px);
}
main .hero_section .item:nth-child(5) {
  left: calc(50% + 440px);
}
main .hero_section .item:nth-child(6) {
  left: calc(50% + 660px);
  opacity: 0;
}
main .hero_section .content {
  width: 440px;
  position: absolute;
  top: 50%;
  left: 5rem;
  transform: translateY(-50%);
  color: white;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: none;
  z-index: 2;
}
@media screen and (max-width: 1044px) {
  main .hero_section .content {
    width: 300px;
    left: 2rem;
  }
}
@media screen and (max-width: 768px) {
  main .hero_section .content {
    width: 200px;
    left: 0rem;
  }
}
main .hero_section .content .title {
  font-size: 38px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main .hero_section .content .title {
    font-size: 22px;
  }
}
main .hero_section .content .description {
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  font-size: 16px;
}
main .hero_section .content button {
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(0, 0, 0, 0.1);
  color: #ffffff;
  border: 2px solid white;
  border-radius: 0.25rem;
  padding: 5px;
  cursor: pointer;
}
main .hero_section .item:nth-of-type(2) .content {
  display: block;
  animation: show 0.75s ease-in-out 0.3s forwards;
}
@keyframes show {
  0% {
    filter: blur(5px);
    transform: translateY(calc(-50% + 75px));
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
main .hero_section .nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
main .hero_section .nav .btn {
  background-color: rgba(255, 255, 255, 0.5);
  color: rgba(0, 0, 0, 0.5);
  border: 2px solid #ffffff;
  margin: 0 0.25rem;
  padding: 0.75rem;
  border-radius: 50%;
  cursor: pointer;
}
main .hero_section .nav .btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
@media (width > 650px) and (width < 900px) {
  main .hero_section .content .title {
    font-size: 1rem;
  }
  main .hero_section .content .description {
    font-size: 0.7rem;
  }
  main .hero_section .content button {
    font-size: 0.7rem;
  }
  main .hero_section .item {
    width: 160px;
    height: 270px;
  }
  main .hero_section .item:nth-child(3) {
    left: 50%;
  }
  main .hero_section .item:nth-child(4) {
    left: calc(50% + 170px);
  }
  main .hero_section .item:nth-child(5) {
    left: calc(50% + 340px);
  }
  main .hero_section .item:nth-child(6) {
    left: calc(50% + 510px);
    opacity: 0;
  }
}
@media (width < 650px) {
  main .hero_section .content .title {
    font-size: 0.9rem;
  }
  main .hero_section .content .description {
    font-size: 0.65rem;
  }
  main .hero_section .content button {
    font-size: 0.7rem;
  }
  main .hero_section .item {
    width: 130px;
    height: 220px;
  }
  main .hero_section .item:nth-child(3) {
    left: 50%;
  }
  main .hero_section .item:nth-child(4) {
    left: calc(50% + 140px);
  }
  main .hero_section .item:nth-child(5) {
    left: calc(50% + 280px);
  }
  main .hero_section .item:nth-child(6) {
    left: calc(50% + 420px);
    opacity: 0;
  }
}
main .about_section {
  padding: 50px 0px;
}
main .about_section .about-experience {
  position: absolute;
  width: 100%;
  height: 100%;
  left: -20px;
  bottom: -45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #e9f7f6;
}
main .about_section .about-experience #counter {
  font-size: 68px;
  font-weight: bold;
}
@media (max-width: 768px) {
  main .about_section .about-experience #counter {
    font-size: 40px;
  }
}
main .about_section .icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #287871;
  border-radius: 50%;
  margin-right: 10px;
}
main .about_section h2 {
  color: #287871;
  font-weight: 600;
}
main .about_section .sub-text {
  color: #777;
}
main .about_section .values-card {
  background: transparent;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  height: 100%;
}
main .about_section .values-card:hover {
  transform: translateY(-5px);
}
main .about_section .values-card h5 {
  font-size: 20px;
  color: #B8905E;
}
main .about_section .values-card p {
  font-size: 16px;
  color: #777;
}
main .about_section .values-card i {
  font-size: 40px;
  color: #287871;
  margin-bottom: 10px;
}
main .services_section {
  padding: 50px 0px;
  background: rgba(251, 249, 249, 0.5333333333);
}
main .services_section .service-item {
  position: relative;
  text-align: center;
  cursor: pointer;
}
main .services_section .service-item .service-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
main .services_section .service-item .service-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.2);
  transition: 0.3s;
  z-index: -1;
}
main .services_section .service-item:hover .service-img img {
  transform: scale(1);
}
main .services_section .service-item .service-text {
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.03);
  padding: 30px;
  border-radius: 10px;
  transition: 0.3s;
}
main .services_section .service-item .service-text h5 {
  color: #287871;
  transition: 0.3;
}
main .services_section .service-item .service-text p {
  color: #777;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.3;
}
main .services_section .service-item .service-text .btn-square {
  width: 100px;
  height: 100px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto;
  transition: 0.5s;
}
main .services_section .service-item .service-text img {
  margin-top: 10px;
}
main .services_section .service-item .service-text .btn {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  color: #287871;
  background: #e9f7f6;
  white-space: nowrap;
  overflow: hidden;
  transition: width 0.3s ease;
}
main .services_section .service-item .service-text .btn:hover {
  width: 112px;
}
main .services_section .service-item:hover .service-text {
  background: rgba(15, 66, 41, 0.6);
}
main .services_section .service-item:hover .service-text h5 {
  color: #ffffff;
}
main .services_section .service-item:hover .service-text p {
  color: #e9f7f6;
}
main .services_section .service-item:hover .service-text .btn-square {
  background: #e9f7f6;
}
main .services_section .service-item:hover .service-text .btn {
  width: 112px;
}
main .service_details {
  padding: 50px 0;
}
main .service_details .content {
  display: flex;
  padding: 0;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  main .service_details .content {
    margin-top: 62px;
  }
}
main .service_details .content h5 {
  background: #fbfbfb;
  padding: 16px;
  font-size: 20px;
  color: #000;
  position: relative;
}
main .service_details .content h5::before {
  content: "";
  width: 4px;
  height: 100%;
  background-color: #287871;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
main .service_details .content p {
  color: #777;
}
main .service_details .content p span {
  color: #B8905E;
}
main .service_details .content .horizontal-steps {
  margin: 10px 0;
}
main .service_details .content .horizontal-steps .steps-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
main .service_details .content .horizontal-steps .step {
  background-color: rgba(251, 249, 249, 0.5333333333);
  padding: 8px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #777;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  min-width: auto;
}
@media (max-width: 576px) {
  main .service_details .content .horizontal-steps .step {
    font-size: 12px;
    padding: 6px 8px;
  }
}
@media (max-width: 768px) {
  main .service_details .content .horizontal-steps .step {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  main .service_details .content .horizontal-steps .step {
    font-size: 14px;
  }
}
main .service_details .content .horizontal-steps .connector {
  font-size: 24px;
  color: #B8905E;
  margin-bottom: 10px;
  font-weight: bold;
  white-space: nowrap;
}
@media (max-width: 576px) {
  main .service_details .content .horizontal-steps .connector {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  main .service_details .content .horizontal-steps .connector {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  main .service_details .content .horizontal-steps .connector {
    font-size: 24px;
  }
}
main .service_details .title {
  margin: 6px 0 24px;
  color: #287871;
  font-size: 22px;
}
main .service_details .order-3 ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 12px;
}
@media screen and (max-width: 768px) {
  main .service_details .order-3 ul {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
main .service_details .order-3 ul li {
  background: rgba(251, 249, 249, 0.5333333333);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 12px;
}
main .service_details .order-3 ul li .icon {
  min-width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid #287871;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .service_details .order-3 ul li .icon img {
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}
main .service_details .order-3 ul li .content {
  gap: 0;
  padding: 0;
  margin: 0;
}
main .service_details .order-3 ul li .content p {
  font-size: 14px;
  margin: 0;
}
main .service_details .process-card {
  background-color: rgba(251, 249, 249, 0.5333333333);
  border: none;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
main .service_details .process-card .icon {
  flex-shrink: 0;
}
main .service_details .process-card .fa-handshake {
  color: #287871;
}
main .service_details .process-card .text ul.small-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
main .service_details .process-card .text ul.small-list li {
  position: relative;
  padding-right: 20px;
  margin: 5px 0px;
  background: none;
}
main .service_details .process-card .text ul.small-list li::before {
  content: "•";
  position: absolute;
  right: 0;
  color: #B8905E;
}
main .news_section {
  padding-bottom: 50px;
}
main .news_section img {
  width: 100%;
  border-radius: 10px;
}
main .news_section h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #287871;
}
main .news_section p {
  font-size: 1.1rem;
  color: #777;
  line-height: 1.3;
}
main .news_section .ex {
  color: #B8905E;
}
main .news_section h4 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}
main .news_section .btn-custom {
  color: white;
  background-color: #287871;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #287871;
  padding: 6px 10px;
  font-size: 17px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  display: inline-block;
}
main .news_section .btn-custom:hover {
  color: #287871;
  background-color: transparent;
}
main .news_section .btn-custom::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 50px;
  top: 0;
  left: -60px;
  transform: skewX(-20deg);
  background: rgba(255, 255, 255, 0.7);
  opacity: 0.6;
  z-index: 1;
  transition: all 0.7s ease-in-out;
}
main .news_section .btn-custom:hover::before {
  left: 120%;
  transition: all 0.7s ease-in-out;
}
main .news_section .border-start {
  padding: 1rem;
  border-left: 4px solid #287871;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
main .news_section .border-start i {
  color: #287871;
}
main .news_section .border-start h4 {
  color: #B8905E;
}
main .news_section .border-start span {
  font-size: 0.9rem;
  color: #777;
}
main .gallery {
  padding: 50px 0px;
  background: rgba(251, 249, 249, 0.5333333333);
}
main .gallery .mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 190px;
  gap: 12px;
}
main .gallery .mosaic .tile {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: #fff;
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.35s;
}
main .gallery .mosaic .tile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.35s;
}
main .gallery .mosaic .tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(3, 16, 10, 0.12);
}
main .gallery .mosaic .tile:hover img {
  transform: scale(1.08) rotate(0.5deg);
  filter: brightness(0.96);
}
main .gallery .mosaic .tile.tile--w2 {
  grid-column: span 2;
}
main .gallery .mosaic .tile.tile--h2 {
  grid-row: span 2;
}
main .gallery .mosaic .tile .tile-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.52));
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 900px) {
  main .gallery .mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 100px;
  }
  main .gallery .mosaic .tile .tile-caption {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  main .gallery .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }
  main .gallery .mosaic .tile.tile--h2 {
    grid-row: span 1;
  }
  main .gallery .mosaic .tile.tile--w2 {
    grid-column: span 2;
  }
}
main .clients_section {
  padding: 50px 0;
}
main .clients_section h2 {
  text-align: center;
}
main .clients_section h2 span {
  color: #B8905E;
}
main .clients_section p {
  text-align: center;
  color: #777;
}
main .clients_section .logo {
  padding: 10px;
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
main .clients_section .logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .faqs_section {
  padding: 50px 0px;
  background: rgba(251, 249, 249, 0.5333333333);
}
main .faqs_section .accordion-button:not(.collapsed) {
  background-color: rgba(187, 230, 226, 0.7019607843) !important;
  color: #777 !important;
}
main .faqs_section .btn-custom {
  color: white;
  background-color: #287871;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #287871;
  padding: 6px 10px;
  font-size: 17px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  display: inline-block;
}
main .faqs_section .btn-custom:hover {
  color: #287871;
  background-color: transparent;
}
main .faqs_section .btn-custom::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 50px;
  top: 0;
  left: -60px;
  transform: skewX(-20deg);
  background: rgba(255, 255, 255, 0.7);
  opacity: 0.6;
  z-index: 1;
  transition: all 0.7s ease-in-out;
}
main .faqs_section .btn-custom:hover::before {
  left: 120%;
  transition: all 0.7s ease-in-out;
}
main .contact_section {
  padding: 50px 0px;
}
main .contact_section .form p {
  color: #777;
}
main .contact_section .form .btn-custom {
  color: white;
  background-color: #287871;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #287871;
  padding: 6px 10px;
  font-size: 17px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  display: inline-block;
}
main .contact_section .form .btn-custom:hover {
  color: #287871;
  background-color: transparent;
}
main .contact_section .form .btn-custom::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 50px;
  top: 0;
  left: -60px;
  transform: skewX(-20deg);
  background: rgba(255, 255, 255, 0.7);
  opacity: 0.6;
  z-index: 1;
  transition: all 0.7s ease-in-out;
}
main .contact_section .form .btn-custom:hover::before {
  left: 120%;
  transition: all 0.7s ease-in-out;
}
main .contact_section .details .btn-square {
  margin: 0px 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e9f7f6;
  border-radius: 50%;
}
main .contact_section .details .btn-square i {
  color: #287871;
  font-size: 18px;
}
main .contact_section .details h6 {
  color: #287871;
}
main .contact_section .details span,
main .contact_section .details a {
  color: #777;
}
main .quotes_section {
  padding-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
}
main .quotes_section .quote-card {
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  width: 50%;
}
@media (max-width: 768px) {
  main .quotes_section .quote-card {
    width: 100%;
  }
}
main .quotes_section .quote-card .quote-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
main .quotes_section .quote-card .quote-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .quotes_section .quote-card .quote-text {
  flex: 1;
  padding: 10px;
}
main .quotes_section .quote-card .quote-text h3 {
  color: #287871;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
main .quotes_section .quote-card .quote-text p {
  font-size: 16px;
  color: #777;
  line-height: 1.6;
}
@media (max-width: 768px) {
  main .quotes_section {
    flex-direction: column;
    align-items: center;
  }
}
main .mission_section {
  margin-top: 30px;
  margin-bottom: 50px;
  padding: 50px 20px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  main .mission_section {
    padding: 0px 20px;
    flex-direction: column;
    box-shadow: none;
    gap: 20px;
  }
}
main .mission_section .mission_item {
  border-radius: 15px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  main .mission_section .mission_item {
    box-shadow: none;
  }
}
main .mission_section .mission_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
main .mission_section .icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #287871;
  border-radius: 50%;
  margin-left: 8px;
}
main .mission_section h2 {
  color: #287871;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
main .mission_section .sub-text {
  color: #777;
  font-size: 16px;
  line-height: 1.6;
}
main .news-details {
  position: relative;
  padding: 50px 0;
  color: #777;
}
main .news-details .container {
  position: relative;
  z-index: 2;
}
main .news-details .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
main .news-details .content-wrapper .news-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
main .news-details .content-wrapper .content-box {
  flex: 1;
  min-width: 280px;
  max-width: 900px;
  padding: 20px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 12px;
  text-align: right;
}
main .news-details .content-wrapper .content-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
main .news-details .content-wrapper .content-box strong {
  color: #287871;
  font-weight: bold;
}
main .news-details .content-wrapper .content-box .source-text {
  font-size: 1rem;
  font-weight: bold;
  color: #000;
}
main .news-details .content-wrapper .content-box .source-text span {
  color: #287871;
}
main .news-details .content-wrapper .content-box .source-text a {
  color: #000;
  text-decoration: underline;
}
@media (max-width: 992px) {
  main .news-details .content-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  main .news-details .news-image {
    max-width: 80%;
  }
}
@media (max-width: 600px) {
  main .news-details .section-title {
    font-size: 1.8rem;
  }
  main .news-details .news-image {
    max-width: 100%;
  }
  main .news-details .content-box {
    padding: 15px;
  }
}
main .blog_section {
  padding: 50px 0;
}
main .blog_section .blog_card {
  cursor: pointer;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
main .blog_section .blog_card .img-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
main .blog_section .blog_card .img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
main .blog_section .blog_card .img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  transition: opacity 0.3s ease;
}
main .blog_section .blog_card h4 {
  margin-top: 10px;
  font-size: 20px;
}
main .blog_section .blog_card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  margin: 10px 0px;
  color: #777;
}
main .blog_section .blog_card .btn {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  color: #287871;
  background: #e9f7f6;
  white-space: nowrap;
  overflow: hidden;
  transition: width 0.3s ease;
}
main .blog_section .blog_card:hover .btn {
  width: 112px;
}
main .blog_details {
  padding: 80px 0;
  margin-top: 30px;
}
main .blog_details .blog_header {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-bottom: 2px solid #287871;
}
main .blog_details .blog_header h1 {
  font-size: 1.5rem;
  font-weight: bold;
}
main .blog_details .blog_header .blog_header_actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
main .blog_details .blog_header .blog_header_actions .date {
  font-size: 14px;
  color: #6c757d;
}
main .blog_details .blog_header .blog_header_actions .share {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.3s;
}
main .blog_details .blog_header .blog_header_actions .share:hover {
  color: #287871;
}
main .blog_details .blog_content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}
main .blog_details .blog_content .img {
  margin-bottom: 20px;
}
main .blog_details .blog_content .img img {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
main .blog_details .blog_content h3 {
  font-size: 1.5rem;
  color: #287871;
  margin-top: 15px;
}
main .blog_details .blog_content blockquote {
  background: #f1f1f1;
  padding: 15px;
  border-left: 5px solid #287871;
  font-style: italic;
  margin: 20px 0;
}
main .blog_details .blog_content ul {
  list-style: disc;
  padding-left: 20px;
}
main .blog_details .blog_content ul li {
  margin-bottom: 8px;
}
main .blog_details .recent_blogs {
  position: sticky;
  top: 100px;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}
main .blog_details .recent_blogs h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
main .blog_details .recent_blogs ul {
  list-style: none;
  padding: 0;
}
main .blog_details .recent_blogs ul li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
main .blog_details .recent_blogs ul li a {
  font-size: 14px;
  color: #287871;
  text-decoration: none;
  transition: color 0.3s;
}
main .blog_details .recent_blogs ul li a:hover {
  color: #287871;
}
main .clients-section {
  text-align: center;
  padding: 40px 20px;
}
main .clients-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 768px) {
  main .clients-section .row {
    gap: 20px;
    justify-content: start;
  }
}
main .clients-section .client-card {
  flex: 0 1 calc(50% - 20px);
  max-width: calc(50% - 20px);
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  main .clients-section .client-card {
    flex: 0 1 calc(16.66% - 20px);
    max-width: calc(16.66% - 20px);
  }
}
main .clients-section .client-card img {
  width: 100%;
  max-width: 200px;
  transition: transform 0.3s ease-in-out;
}
main .clients-section .client-card:hover {
  transform: translateY(-2px);
}
main .clients-section .client-card:hover img {
  transform: scale(1.01);
}
main .clients-section .toggle-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #777;
  font-weight: bold;
  font-size: 28px;
  cursor: pointer;
}
main .clients-section .company-details {
  background: #f8f9fa;
  padding: 25px;
  margin-top: 25px;
  text-align: start;
  border-radius: 12px;
  position: relative;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
main .clients-section .company-details .close-btn {
  position: absolute;
  top: -5px;
  color: #777;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
main .clients-section .company-details .details-content {
  padding: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
}
@media (max-width: 768px) {
  main .clients-section .company-details .details-content {
    padding: 10px;
    gap: 10px;
  }
}
main .clients-section .company-details .details-content h3 {
  font-weight: bold;
  font-size: 1.4rem;
  color: #000;
}
main .clients-section .company-details .details-content p {
  color: #777;
  font-size: 1rem;
}
main .clients-section .company-details .details-content img {
  max-width: 160px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  main .clients-section .company-details .details-content img {
    max-width: 120px;
  }
}
main .clients-section .company-details .details-content img:hover {
  transform: scale(1.05);
}
main .clients-section .company-details .details-content a {
  color: #777;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
main .clients-section .company-details .details-content a:hover {
  color: #0056b3;
  text-decoration: underline;
}
main .structure-section {
  padding: 50px 0;
  background: rgba(251, 249, 249, 0.5333333333);
  max-height: 630px;
}
main .structure-section .swiper {
  width: 100%;
}
main .structure-section .swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 12px;
  padding-top: 0;
}
main .structure-section .swiper .swiper-slide::before {
  content: "";
  width: 1px;
  height: 75px;
  display: block;
  border: 1px dashed #d7d7d7;
}
main .structure-section .swiper .swiper-slide::after {
  content: "";
  width: 100%;
  height: 1px;
  border: 1px dashed #d7d7d7;
  position: absolute;
  top: 0;
  left: 0;
}
main .structure-section .swiper .swiper-slide .content {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2px;
}
main .structure-section .swiper .swiper-slide .content .title {
  font-weight: bold;
  color: #287871;
  text-align: center;
  font-size: 25px;
}
@media screen and (max-width: 768px) {
  main .structure-section .swiper .swiper-slide .content .title {
    font-size: 24px;
  }
}
main .structure-section .swiper .swiper-slide .content p {
  margin: auto;
  background-color: #fff;
  color: #777;
  flex: 1;
  padding: 20px 8px;
  width: 100%;
  font-size: 14px;
  border-radius: 12px;
  margin: 4px 0;
}
main .structure-section .swiper .swiper-slide .content img {
  width: 100%;
  max-height: 200px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  padding: 4px;
  background-color: #fff;
  border-radius: 12px;
}
main .structure-section .swiper .swiper-slide:nth-child(even)::before {
  height: 24px;
}
main .structure-section .swiperControl {
  justify-content: center;
  padding: 8px;
}
main .structure-section .head_sec {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
main .structure-section .sub_head {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  main .structure-section .head_sec {
    font-size: 1.5rem;
  }
  main .structure-section .sub_head {
    font-size: 1rem;
  }
  main .structure-section .swiper-slide {
    padding: 10px;
  }
  main .structure-section .swiper {
    margin-top: 20px;
  }
}

.footer {
  background: #ffffff;
  padding: 60px 0;
  box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.05);
}
.footer .footer-logo img {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
}
.footer h5 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #287871;
}
.footer p,
.footer a {
  color: #777;
  font-size: 16px;
}
.footer p:hover,
.footer a:hover {
  color: #287871;
  text-decoration: none;
}
.footer .list-unstyled {
  padding: 0;
}
.footer .list-unstyled li {
  margin-bottom: 10px;
}
.footer .list-unstyled li span {
  color: #B8905E;
}
.footer .contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.footer .contact-info li .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #287871;
  color: #ffffff;
  border-radius: 50%;
  margin-left: 10px;
}
.footer .contact-info li span {
  font-size: 16px;
  color: #777;
}
.footer .footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #777;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer .footer-bottom {
    flex-direction: column;
  }
}
.footer .footer-bottom .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #287871;
  border: 1px solid #287871;
  border-radius: 50%;
  margin-left: 10px;
  font-size: 18px;
}
.footer .footer-bottom .social-icons a:hover {
  background: #287871;
  color: #ffffff;
}
.footer .footer-bottom span {
  color: #287871;
  font-weight: 600;
}/*# sourceMappingURL=style.css.map */