/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Merriweather",  sans-serif;
  --nav-font: "Open Sans",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #7b7b7b; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #333333; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2ec0bf; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #404040;  /* The default color of the main navmenu links */
  --nav-hover-color: #2ec0bf; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #404040; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2ec0bf; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes !!
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.2s;
}

a:hover {
  color: rgba(46, 192, 191, 0.75);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header !!
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  padding: 10px 0;
  transition: all 0.2s;
  z-index: 997;
}

.header .header-container {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50px;
  padding: 10px 10px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.07);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 45px;
  margin-right: 8px;
}

.header .header-social-links {
  padding-right: 8px;
}

.header .header-social-links a {
  color: rgba(64, 64, 64, 0.4);
  padding-left: 6px;
  display: inline-block;
  transition: 0.2s;
  font-size: 20px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1199px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header .header-container {
  background: rgba(255, 255, 255, 0.93);
  transition: 0.6s;
}


/*--------------------------------------------------------------
# Navigation Menu !!
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 10px 15px;
    margin-left: 2px;
    font-size: 17px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--contrast-color);
    background-color: var(--nav-hover-color);
    border-radius: 50px;
    transition: 0.2s;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 42px;
    line-height: 0;
    margin-left: 20px;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 85px 20px 20px 20px;
    padding: 20px 0 0 10px;
    margin: 0;
    border-radius: 14px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 12px 20px;
    font-family: var(--nav-font);
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.2s;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 48px;
    top: 20px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.9);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


/*--------------------------------------------------------------
# Global Footer !!
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: rgba(46, 192, 191, 0.08);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-links {
  text-align: center;
}

.footer .footer-links i {
  margin: -3px;
}

.footer .footer-links a {
  color: var(--default-color);
  font-weight: 300;
  font-size: 16px;
  display: inline-block;
  margin: 0 10px;
}

.footer .footer-links a:hover {
  color: var(--accent-color);
  transition: 0.2s;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 10px;
}

.footer .copyright p {
  margin-bottom: 0;
  font-weight: 300;
  font-size: 16px;
}

.footer .copyright a:hover {
  text-decoration: underline;
}


/*--------------------------------------------------------------
# Preloader !!
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Scroll Top Button !!
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 30px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

.mobile-nav-active .scroll-top {
  display: none !important;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices !!
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Global Sections !!
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}


/*--------------------------------------------------------------
# Global Section Titles !!
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}


/*--------------------------------------------------------------
# Hero Section !!
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: rgba(32, 32, 32, 0.5);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 8vw, 110px);
  font-weight: 800;
  line-height: 1;
  opacity: 0.9;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  font-family: var(--nav-font);
  font-size: 0.4em; /* Relative to h1 font size */
  font-weight: 300;
  letter-spacing: 0.08em; /* Adjusted for visual balance */
}

.hero span {
  display: block;
  margin-top: 10px;
  font-family: var(--nav-font);
  font-size: 0.4em; /* Relative to h1 font size */
  font-weight: 300;
  letter-spacing: 0.08em; /* Adjusted for visual balance */
}

.hero p {
  font-size: clamp(21px, 3vw, 40px);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-top: 15px;
}

.hero .btn-scroll {
  position: absolute;
  bottom: -250px; /* ← distance from the vertical center */
  left: 50%;
  color: rgba(255, 255, 255, 0.5);
  animation: btn-up-down 0.9s ease-in-out infinite alternate-reverse both;
}

.hero .btn-scroll i {
  font-size: 30px;
}

@keyframes btn-up-down {
  0% {
    transform: translateY(8px);
  }

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


/*--------------------------------------------------------------
# About Section !!
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about .about-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 992px) {
  .about .about-img {
    margin-bottom: 20px;
  }
}

.about .about-content h2 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.about .about-content h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.about .about-content p {
  color: var(--default-color);
  margin-bottom: 15px;
  line-height: 1.7;
  font-weight: 300;
}

.about .about-stat {
  text-align: center;
}

.about .about-stat h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.about .about-stat p {
  font-size: 15px;
  margin-bottom: 0;
  color: rgba(112, 112, 112, 0.7);
}

.about .about-card {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
}

.about .about-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about .about-card p {
  color: var(--default-color);
  margin-bottom: 0;
  line-height: 1.7;
  font-weight: 300;
}

.about .about-card .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(46, 192, 191, 0.1);
  color: var(--accent-color);
  font-size: 28px;
}

@media (max-width: 768px) {
  .about .about-card {
    margin-bottom: 20px;
  }
}

.about .swiper-wrapper {
  height: auto !important;
}


/*--------------------------------------------------------------
# Services Section !!
--------------------------------------------------------------*/
.services .tab-controls {
  position: relative;
  z-index: 10;
  border-radius: 50px;
  display: inline-flex;
  background-color: rgba(46, 192, 191, 0.1);
  padding: 8px;
}

.services .tab-controls .nav-item {
  margin: 0 5px;
}

.services .tab-controls .nav-item:first-child {
  margin-left: 0;
}

.services .tab-controls .nav-item:last-child {
  margin-right: 0;
}

.services .tab-controls .nav-item .nav-link {
  display: flex;
  align-items: center;
  border-radius: 30px;
  padding: 12px 24px;
  background-color: transparent;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
}

.services .tab-controls .nav-item .nav-link i {
  font-size: 18px;
  margin-right: 8px;
  transition: all 0.1s ease;
}

.services .tab-controls .nav-item .nav-link:hover {
  color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.1);
}

.services .tab-controls .nav-item .nav-link.active {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.services .tab-content {
  position: relative;
}

.services .tab-content .tab-pane {
  transition: all 0.3s ease-in-out;
}

.services .tab-content .tab-pane.fade {
  opacity: 0;
  transform: translateY(10px);
}

.services .tab-content .tab-pane.show {
  opacity: 1;
  transform: translateY(0);
}

.services .tab-content .tab-wrapper {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.services .tab-content .tab-wrapper .tab-image {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services .tab-content .tab-wrapper .tab-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.services .tab-content .tab-wrapper .tab-image:hover img {
  transform: scale(1.02);
}

.services .tab-content .tab-wrapper .tab-image .experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 18px;
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.services .tab-content .tab-wrapper .tab-image .experience-badge .number {
  display: block;
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.services .tab-content .tab-wrapper .tab-image .experience-badge .text {
  display: block;
  font-size: 14px;
  font-weight: 300;
  opacity: 0.9;
}

.services .tab-content .tab-wrapper .tab-content-inner {
  padding: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services .tab-content .tab-wrapper .tab-content-inner .tab-header {
  margin-bottom: 24px;
}

.services .tab-content .tab-wrapper .tab-content-inner .tab-header h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0;
  line-height: 1.3;
}

.services .tab-content .tab-wrapper .tab-content-inner p {
  color: var(--default-color);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 30px;
}

.services .tab-content .tab-wrapper .tab-content-inner .benefits-list .benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.services .tab-content .tab-wrapper .tab-content-inner .benefits-list .benefit-item:last-child {
  margin-bottom: 0;
}

.services .tab-content .tab-wrapper .tab-content-inner .benefits-list .benefit-item .benefit-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  background-color: rgba(46, 192, 191, 0.1);
}

.services .tab-content .tab-wrapper .tab-content-inner .benefits-list .benefit-item .benefit-icon i {
  color: var(--accent-color);
  font-size: 24px;
}

.services .tab-content .tab-wrapper .tab-content-inner .benefits-list .benefit-item .benefit-content p {
  margin-bottom: 0;
  line-height: 1.7;
}

@media (max-width: 1199px) {
  .services .tab-wrapper .tab-content-inner {
    padding: 40px;
  }

  .services .tab-wrapper .tab-content-inner .tab-header h3 {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .services .tab-controls .nav-item .nav-link {
    padding: 10px 18px;
  }

  .services .tab-controls .nav-item .nav-link i {
    font-size: 16px;
  }

  .services .tab-wrapper .tab-image .experience-badge {
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
  }

  .services .tab-wrapper .tab-image .experience-badge .number {
    font-size: 20px;
  }

  .services .tab-wrapper .tab-image .experience-badge .text {
    font-size: 12px;
    font-weight: 300;
  }

  .services .tab-wrapper .tab-content-inner {
    padding: 30px;
  }

  .services .tab-wrapper .tab-content-inner .tab-header h3 {
    font-size: 24px;
  }

  .services .tab-wrapper .tab-content-inner .benefits-list .benefit-item .benefit-icon {
    width: 45px;
    height: 45px;
  }

  .services .tab-wrapper .tab-content-inner .benefits-list .benefit-item .benefit-icon i {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .services .tab-controls {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 8px;
    justify-content: center;
    text-align: left;
    border-radius: 20px;
    padding: 6px;
  }

  .services .tab-controls .nav-item {
    margin: 4px;
  }

  .services .tab-controls .nav-item .nav-link {
    padding: 8px 14px;
  }

  .services .tab-wrapper .row {
    flex-direction: column-reverse;
  }

  .services .tab-wrapper .tab-image {
    height: 300px;
  }
}


/*--------------------------------------------------------------
# Advantages Section !!
--------------------------------------------------------------*/
.advantages {
  padding: 90px 0;
}

.advantages .services-container {
  margin-bottom: 60px;
}

.advantages .services-container .service-item {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  height: 100%;
}

.advantages .services-container .service-item .service-icon {
  flex: 0 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(46, 192, 191, 0.1);
  color: var(--accent-color);
  font-size: 2rem;
}

.advantages .services-container .service-item .service-content {
  padding: 30px;
  position: relative;
}

.advantages .services-container .service-item .service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(51, 51, 51, 0.09);
  line-height: 1;
  opacity: 0.5;
  z-index: 1;
}

.advantages .services-container .service-item .service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.advantages .services-container .service-item .service-text {
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 10px;
  color: var(--default-color);
  position: relative;
  z-index: 2;
}

.advantages .cta-wrapper .cta-box {
  background: linear-gradient(145deg, rgba(46, 192, 191, 0.5), var(--accent-color));
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
}

.advantages .cta-wrapper .cta-box .cta-image {
  position: relative;
  z-index: 2;
}

.advantages .cta-wrapper .cta-box .cta-image img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.5);
}

@media (max-width: 991px) {
  .advantages .cta-wrapper .cta-box .cta-image img {
    margin-bottom: 20px;
  }
}

.advantages .cta-wrapper .cta-box .cta-content {
  position: relative;
  z-index: 2;
}

.advantages .cta-wrapper .cta-box .cta-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.advantages .cta-wrapper .cta-box .cta-content p {
  color: var(--contrast-color);
  font-weight: 300;
  margin-bottom: 25px;
  line-height: 1.7;
}

.advantages .cta-wrapper .cta-box .cta-content .primary-btn {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.advantages .cta-wrapper .cta-box .cta-content .primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.18);
}

@media (max-width: 991px) {
  .advantages .cta-wrapper .cta-box .cta-content {
    text-align: center;
  }
}

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

  .advantages .services-container .service-item {
    flex-direction: column;
  }

  .advantages .services-container .service-item .service-icon {
    flex: 0 0 auto;
    padding-left: 30px;
    height: 70px;
    width: 100%;
    justify-content: left;
  }

  .advantages .cta-wrapper .cta-box {
    padding: 30px 20px;
  }
}


/*--------------------------------------------------------------
# Team Section !!
--------------------------------------------------------------*/
.team .team-member-card {
  background: var(--surface-color);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  position: relative;
}

.team .team-image-wrap {
  width: 170px;
  height: 170px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-color);
  overflow: hidden;
  margin-top: -3rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.09);
}

.team .team-image-wrap .team-image {
  border-radius: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: none;
}

.team .team-name {
  font-family: var(--heading-font);
  font-size: 1.16rem;
  color: var(--heading-color);
  font-weight: 700;
}

.team .team-role {
  font-weight: 300;
  line-height: 1.7;
  color: var(--default-color);
}

@media (max-width: 1199px) {
  .team .team-member-card {
    padding: 1.55rem 1rem;
  }

  .team .team-image-wrap {
    width: 170px;
    height: 170px;
    margin-top: -2.6rem;
  }
}

@media (max-width: 991.98px) {
  .team .team-image-wrap {
    margin-top: -2.2rem;
  }

  .team .team-member-card {
    margin-left: auto;
    margin-right: auto;
    max-width: 340px;
  }
}

@media (max-width: 767.98px) {
  .team .team-image-wrap {
    width: 170px;
    height: 170px;
  }

  .team .team-member-card {
    padding: 1.2rem 1rem;
    border-radius: 20px;
  }
}

@media (max-width: 575.98px) {
  .team .team-member-card {
    padding: 1rem 0.6rem;
  }
}

.team .swiper-wrapper {
  height: auto !important;
}


/*--------------------------------------------------------------
# Testimonials Section !!
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid rgba(123, 123, 123, 0.08);
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 10px;
  background: var(--surface-color);
}

.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(46, 192, 191, 0.3);
  margin-bottom: 15px;
}

.testimonials .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: rgb(123, 123, 123, 0.85);
  margin: 0;
  font-style: italic;
  text-align: left;
  position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.9rem;
  color: var(--accent-color);
  opacity: 0.2;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before {
  top: -30px;
  left: -10px;
}

.testimonials .testimonial-body p::after {
  bottom: -30px;
  right: -5px;
}

.testimonials .testimonial-footer {
  padding: 10px 30px 20px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: rgb(46, 192, 191, 0.4);
  font-size: 1.7rem;
}

.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: rgb(46, 192, 191, 0.8);
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .testimonials .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 20px 20px 10px;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials .testimonial-item .testimonial-footer h3 {
    font-size: 1rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer h3 {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }

  .testimonials .swiper-navigation {
    margin-top: 10px;
  }
}


/*--------------------------------------------------------------
# CTA Section !!
--------------------------------------------------------------*/
.cta {
  padding-top: 60px;
  position: relative;
  background-color: var(--accent-color);
  overflow: hidden;
  padding-bottom: 60px;
}

.cta h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--surface-color);
  position: relative;
  z-index: 1;
}

.cta .lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--surface-color);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta .cta-buttons {
  position: relative;
  z-index: 1;
}

.cta .cta-buttons .primary-btn {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.cta .cta-buttons .primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.18);
}

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


/*--------------------------------------------------------------
# Gallery Section !!
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-radius: 20px;
}

.gallery .gallery-item img {
  border-radius: 20px;
  transition: all ease-in-out 0.3s;
  display: block;
}

.gallery .gallery-item:hover img {
  transform: scale(1.05);
}


/*--------------------------------------------------------------
# Faq Section !!
--------------------------------------------------------------*/
.faq .faq-list .faq-item {
  margin-bottom: 20px;
  border-radius: 20px;
  background-color: var(--surface-color);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(51, 51, 51, 0.05);
  transition: all 0.2s ease;
}

.faq .faq-list .faq-item:hover {
  transform: translateY(-2px);
}

.faq .faq-list .faq-item h3 {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--surface-color);
  transition: all 0.2s ease;
  position: relative;
}

.faq .faq-list .faq-item h3:hover {
  background-color: rgba(46, 192, 191, 0.05);
}

.faq .faq-list .faq-item h3 .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 15px;
  background-color: rgba(46, 192, 191, 0.15);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq .faq-list .faq-item h3 .question {
  flex: 1;
}

.faq .faq-list .faq-item h3 .faq-toggle {
  font-size: 1.2rem;
  transition: all 0.2s ease;
  color: var(--default-color);
  margin-left: 15px;
}

.faq .faq-list .faq-item .faq-content {
  padding: 25px 30px;
  display: none;
}

.faq .faq-list .faq-item .faq-content p {
  overflow: hidden;
  padding: 0;
  margin: 0;
  font-weight: 300;
}

.faq .faq-list .faq-item .faq-content p:last-child {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-list .faq-item.faq-active h3 {
  background-color: rgba(46, 192, 191, 0.1);
}

.faq .faq-list .faq-item.faq-active h3 .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  display: block;
}

.faq .faq-cta {
  background-color: rgba(46, 192, 191, 0.08);
  padding: 30px;
  border-radius: 20px;
}

.faq .faq-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 300;
}

.faq .faq-cta .btn-primary {
  background-color: var(--accent-color);
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.faq .faq-cta .btn-primary:hover {
  background-color: rgba(46, 192, 191, 0.85);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

@media (max-width: 576px) {
  .faq .faq-list .faq-item h3 {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .faq .faq-list .faq-item h3 .num {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    font-size: 0.8rem;
  }

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

  .faq .faq-list .faq-item .faq-content.faq-active .content-inner {
    padding: 15px 20px;
  }
}

/* Price Table Styling */
table.table {
  border-collapse: collapse;
  width: 100%;
}

table.table thead th {
  font-weight: 500;
  font-size: 16px;
  background-color: #ffffff;
  color: var(--heading-color);
}

table.table tbody td {
  font-weight: 300;
  font-size: 15px;
  background-color: #ffffff;
  color: var(--default-color);
}


/*--------------------------------------------------------------
# Contact Section !!
--------------------------------------------------------------*/
.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(145deg, rgb(46, 192, 191),  rgb(19, 152, 152));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card .icon-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 22px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-family: var(--heading-font);
  font-size: 18px;
  margin-bottom: 0;
}

.contact .info-card .card-content a {
  font-family: var(--heading-font);
  font-size: 18px;
  color: #fff;
}

.contact .info-card .card-content a:hover {
  text-decoration: underline;
}

.contact .social-links-panel {
  margin-top: 40px;
}

.contact .social-links-panel h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
  font-size: 22px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact .map-container {
  width: calc(100% - 30px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .map-container {
    width: 100%;
    height: 400px;
  }
}


/*--------------------------------------------------------------
# Document Section !!
--------------------------------------------------------------*/
.document {
  padding-top: 60px;
  padding-bottom: 60px;
}

.document h1 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.document p {
  color: var(--default-color);
  margin-bottom: 15px;
  line-height: 1.7;
  font-weight: 300;
}

.document .home-button a {
  background-color: var(--accent-color);
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
  text-decoration: none;
}

.document .home-button a:hover {
  background-color: rgba(46, 192, 191, 0.85);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}