/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font:
    'Roboto', 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: 'Book Antiqua', 'Georgia', serif; /*was Raleway*/
  --nav-font: 'Book Antiqua', 'Poppins', 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: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1b1b1b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: rgba(
    10,
    53,
    87,
    0.558
  ); /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --accent-color: #0a3557;
  --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: #ffffff; /*was #444 The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /*was rgba(10, 53, 87, 0.558) 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: rgba(
    10,
    53,
    87,
    0.558
  ); /* 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 */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 200px;
}

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

a {
  color: var(--accent-color); /*was #444*/
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

.dirham {
  vertical-align: baseline;
  height: 0.85rem;
}
.grecaptcha-badge {
  visibility: hidden !important;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: '';
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: white; /*was #0a3557 */
  /*height: 40px;*/
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}
.header .topbar .register-login i {
  color: #0a3557;
}
.header .topbar .contact-info i {
  font-style: normal;
  font-size: 1.25rem;
  color: #0a3557;
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {
  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  color: #0a3557;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: black;
}

.header .branding {
  background-color: #0a3557; /*was white*/
  min-height: 40px; /*was 30px 60px*/
  padding: 0; /*was 10px 0*/
}

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

.header .logo img {
  max-height: 80px; /*was 36px*/
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}
/*
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}
*/
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1400px) {
  /*was 1200px*/
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    /*margin-top: 1rem;*/
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 8px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

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

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu > ul > li > a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

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

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 0px solid color-mix(in srgb, var(--default-color), transparent 90%); /*was 1px*/
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

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

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  a[role='button'] {
    display: none;
  }
  .navmenu .dropdown ul {
    position: static;
    display: block; /*was none*/
    z-index: 99;
    padding: 10px 0;
    margin: 10px 0px; /*was 20px side margin*/
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 130px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 0px; /*was 30px*/
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 3px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: var(--accent-color);
  display: inline-block;
  line-height: 1.5;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type='email'] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type='email']:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type='submit'] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type='submit']:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: '';
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# 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: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  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;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li + li {
  padding-left: 10px;
}

.page-title nav ol li + li::before {
  content: '/';
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 1rem 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: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

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

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

.hero-2:before {
  content: '';
  background: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.hero-2 h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero-2 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero-2 .btn-get-started {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero-2 .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero-2 .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 600;
  color: var(--default-color);
}

.hero-2 .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-2 .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero-2 .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .hero-2 h2 {
    font-size: 32px;
  }

  .hero-2 p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-primary {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);

  &:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    border-color: color-mix(in srgb, var(--accent-color), black 10%);
    /*transform: translateY(-2px);*/
  }
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .content {
  padding: 20px 0;
}

.call-to-action .content h3 {
  font-weight: 300;
  text-transform: uppercase;
}

.call-to-action .content .form-subscribe .form-control {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: white;
  border-radius: 0;
}

.call-to-action .content .form-subscribe input[type='email'] {
  height: 63px !important;
  color: var(--accent-color);
}

.call-to-action .content .form-subscribe input[type='email']:focus {
  box-shadow: none;
}

.call-to-action .content .form-subscribe input[type='email']::placeholder {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.call-to-action .content .loading,
.call-to-action .content .error-message,
.call-to-action .content .sent-message {
  margin-top: 15px;
}

.call-to-action .content .btn {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border: 0px solid var(--contrast-color);
  border-radius: 0;
}

.call-to-action .content .btn:hover,
.call-to-action .content .btn:active,
.call-to-action .content .btn:focus {
  box-shadow: none;
  outline: none;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border: 1px solid var(--contrast-color);
}
.call-to-action-2 {
  --background-color: var(--contrast-color);

  .cta-box {
    position: relative;
    padding: 80px 30px;
    border-radius: 20px;
    overflow: hidden;

    .background-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;

      &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, color-mix(in srgb, var(--surface-color), transparent 5%), color-mix(in srgb, var(--surface-color), transparent 10%));
        opacity: 0.95;
      }

      .background-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: transform 0.6s ease-in-out;
      }
    }

    &:hover {
      .background-image {
        transform: scale(1.1);
      }
    }

    .content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;

      h2 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
      }

      p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: 0.9;
      }

      .cta-buttons {
        .btn-cta {
          display: inline-flex;
          align-items: center;
          padding: 15px 35px;
          background: var(--accent-color);
          color: var(--contrast-color);
          border-radius: 50px;
          font-weight: 500;
          transition: all 0.3s ease;

          i {
            margin-left: 8px;
            transition: transform 0.3s ease;
          }

          &:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

            i {
              transform: translateX(5px);
            }
          }
        }
      }
    }
  }

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

      .content {
        h2 {
          font-size: 2rem;
        }

        p {
          font-size: 1rem;
        }

        .btn-cta {
          padding: 12px 30px;
          font-size: 1rem;
        }
      }
    }
  }
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 h3 {
  font-size: 20px;
  font-weight: 700;
}

.features-2 p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-2 ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.features-2 ul li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 .info-container {
  background-color: var(--accent-color);
  /*height: 100%;*/
  padding: 20px;
}

.contact-2 .info-item {
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
}

.contact-2 .info-item:last-child {
  margin-bottom: 0;
}

.contact-2 .info-item i {
  font-size: 20px;
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact-2 .info-item h3 {
  color: var(--contrast-color);
  font-size: 20px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-2 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-2 .info-item:hover i {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.contact-2 .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  padding: 30px;
}

.contact-2 .php-email-form input[type='text'],
.contact-2 .php-email-form input[type='email'],
.contact-2 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-2 .php-email-form input[type='text']:focus,
.contact-2 .php-email-form input[type='email']:focus,
.contact-2 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact-2 .php-email-form input[type='text']::placeholder,
.contact-2 .php-email-form input[type='email']::placeholder,
.contact-2 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-2 .php-email-form button[type='submit'] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact-2 .php-email-form button[type='submit']:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding-top: 50px;
  padding-bottom: 50px;
}

.about .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.about .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.about p {
  line-height: 1.7;
  color: var(--default-color);
}

.about .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.about .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.about .lead {
  line-height: 1.6;
  font-size: 18px;
  font-weight: normal;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

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

.features h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.features h3:after {
  content: '';
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

.features .icon-box {
  margin-top: 50px;
}

.features .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.features .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.features .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.features .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .icon-box h4 a:hover {
  color: var(--accent-color);
}

.features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box + .service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item + .info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type='text'],
.contact .php-email-form input[type='email'],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type='text']:focus,
.contact .php-email-form input[type='email']:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type='text']::placeholder,
.contact .php-email-form input[type='email']::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type='submit'] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type='submit']:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Real Estate Section
--------------------------------------------------------------*/
.real-estate .card {
  background-color: var(--background-color);
  color: var(--default-color);
  border: none;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  min-height: 500px;
}

.real-estate .card:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0.9) 75%);
  z-index: 2;
}

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

.real-estate .card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 30px;
}

.real-estate .card .card-body .sale-rent {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--contrast-color);
  padding: 4px 20px;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  margin-bottom: 10px;
}

.real-estate .card .card-body h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0px;
  padding-left: 10px;
  border-left: 3px solid var(--accent-color);
}

.real-estate .card .card-body h3 a {
  color: var(--contrast-color);
}

.real-estate .card .card-body .card-content {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  height: 80px;
  visibility: hidden;
  opacity: 0;
  margin-top: 10px;
  margin-bottom: -80px;
  margin-left: -30px;
  margin-right: -30px;
  transition: 0.3s;
  padding: 0 10px;
}

.real-estate .card .card-body .card-content .propery-info {
  font-weight: 500;
}

.real-estate .card:hover .card-content {
  margin-bottom: -30px;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Real Estate 2 Section
--------------------------------------------------------------*/
.real-estate-2 .portfolio-details-slider img {
  width: 100%;
}

.real-estate-2 .swiper-wrapper {
  height: auto;
}

.real-estate-2 .swiper-button-prev,
.real-estate-2 .swiper-button-next {
  width: 48px;
  height: 48px;
}

.real-estate-2 .swiper-button-prev:after,
.real-estate-2 .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.real-estate-2 .swiper-button-prev:hover:after,
.real-estate-2 .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
  .real-estate-2 .swiper-button-prev,
  .real-estate-2 .swiper-button-next {
    display: none;
  }
}

.real-estate-2 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.real-estate-2 .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.real-estate-2 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.real-estate-2 .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.real-estate-2 .portfolio-info h3:after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.real-estate-2 .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.real-estate-2 .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.real-estate-2 .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.real-estate-2 .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.real-estate-2 .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.real-estate-2 .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.real-estate-2 .portfolio-description p {
  padding: 0;
}

.real-estate-2 .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.real-estate-2 .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.real-estate-2 .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.real-estate-2 .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.real-estate-2 .portfolio-description .testimonial-item .quote-icon-left,
.real-estate-2 .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.real-estate-2 .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.real-estate-2 .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.real-estate-2 .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

.real-estate-2 .nav-pills {
  border-bottom: 0px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.real-estate-2 .nav-pills li + li {
  margin-left: 40px;
}

.real-estate-2 .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--default-color);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
}

.real-estate-2 .nav-link.active {
  color: var(--accent-color);
  background: none;
  border-bottom: 3px solid var(--accent-color);
}

@media (max-width: 575px) {
  .real-estate-2 .nav-link {
    font-size: 16px;
  }
}

.real-estate-2 .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--default-color);
}

.real-estate-2 .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/*
.starter-section {
   Add your styles here
}
*/

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
/*
.steps {
   Responsive Styles
}
*/

.steps .timeline-container {
  position: relative;
  padding: 30px 0;
}

.steps .timeline-track {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.steps .timeline-track::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--accent-color) 10%, var(--accent-color) 90%, transparent);
  transform: translateX(-50%);
  z-index: 1;
}

.steps .timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.steps .timeline-item:last-child {
  margin-bottom: 0;
}

.steps .timeline-item.left .timeline-content {
  padding-right: 50px;
  text-align: right;
}

.steps .timeline-item.left .timeline-content .timeline-marker {
  right: -35px;
}

.steps .timeline-item.right .timeline-content {
  padding-left: 50px;
  margin-left: 50%;
}

.steps .timeline-item.right .timeline-content .timeline-marker {
  left: -35px;
}

.steps .timeline-item:hover .timeline-marker {
  transform: scale(1.1);
  background-color: var(--accent-color);
}

.steps .timeline-item:hover .timeline-marker .step-icon {
  color: var(--contrast-color);
}

.steps .timeline-item:hover .timeline-body {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.steps .timeline-content {
  position: relative;
  width: 50%;
}

.steps .timeline-marker {
  position: absolute;
  top: 15px;
  width: 70px;
  height: 70px;
  background-color: var(--surface-color);
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.steps .timeline-marker .step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 35px;
  height: 35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 3;
  border: 3px solid var(--surface-color);
}

.steps .timeline-marker .step-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.steps .timeline-body {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.steps .timeline-body h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.steps .timeline-body p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .steps .timeline-track::before {
    left: 30px;
  }

  .steps .timeline-item.left .timeline-content,
  .steps .timeline-item.right .timeline-content {
    width: 100%;
    padding-left: 80px;
    padding-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .steps .timeline-item.left .timeline-content .timeline-marker,
  .steps .timeline-item.right .timeline-content .timeline-marker {
    left: 0;
    right: auto;
  }
}

@media (max-width: 767px) {
  .steps .timeline-item {
    margin-bottom: 50px;
  }

  .steps .timeline-marker {
    width: 60px;
    height: 60px;
  }

  .steps .timeline-marker .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .steps .timeline-marker .step-icon {
    font-size: 1.3rem;
  }

  .steps .timeline-body {
    padding: 20px;
  }

  .steps .timeline-body h3 {
    font-size: 1.2rem;
  }

  .steps .timeline-body p {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .steps .timeline-marker {
    width: 50px;
    height: 50px;
  }

  .steps .timeline-marker .step-icon {
    font-size: 1.1rem;
  }

  .steps .timeline-item.left .timeline-content,
  .steps .timeline-item.right .timeline-content {
    padding-left: 70px;
  }
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .card {
  border: 0;
  padding: 10px; /* was 0 20px */
  margin-bottom: 30px;
  position: relative;
  height: 100%;
  transition: transform 0.3s ease-in-out;
  background-color: transparent;
}

.events .card:hover {
  transform: translateY(0px);
}

.events .card:hover .card-img img {
  transform: scale(1.25);
}

.events .card:hover .card-body {
  border-color: var(--accent-color);
}

.events .card:hover .btn-learn-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding-right: 35px;
}

.events .card:hover .btn-learn-more i {
  transform: translateX(5px);
}

.events .card-img {
  width: 100%;
  margin-left: 0px;
  overflow: hidden;
  z-index: 9;
  border-radius: 15px 15px 0 0;
}

.events .card-img img {
  width: 100%;
  height: 376px;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

.events .card-body {
  z-index: 10;
  background: var(--surface-color);
  border-top: 4px solid transparent;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 0px; /*was -30px*/
  border-radius: 0 0 15px 15px;
  transition: all 0.3s ease-in-out;
}

.events .datetime {
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
}

.events .datetime i {
  color: var(--accent-color);
  font-size: 16px;
  vertical-align: middle;
  margin-right: 5px;
}

.events .card-meta .date,
.events .card-meta .time {
  vertical-align: middle;
}

.events .card-title {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.35rem; /*was 1.5rem*/
}

.events .card-title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.events .card-title a:hover {
  color: var(--accent-color);
}

.events .card-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.events .card-footer {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 20px;
  /*display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;*/
}

.events .card-footer .location {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
}

.events .card-footer .location i {
  color: var(--accent-color);
  font-size: 16px;
  margin-right: 5px;
  vertical-align: middle;
}

.events .card-footer .location span {
  vertical-align: middle;
}

.events .card-footer .btn-learn-more {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  padding: 8px 25px;
  border-radius: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.events .card-footer .btn-learn-more i {
  margin-left: 5px;
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .events .card {
    padding: 0 15px;
  }

  .events .card-img {
    width: 100%;
    margin-left: 0px;
  }

  .events .card-img img {
    height: 300px;
  }

  .events .card-body {
    padding: 20px;
  }

  .events .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .events .card-footer .btn-learn-more {
    width: 100%;
    text-align: center;
  }
}
/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 .faq-tabs .nav-pills {
  display: inline-flex;
  padding: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 50px;
}

.faq-2 .faq-tabs .nav-pills .nav-item {
  margin: 0 5px;
}

.faq-2 .faq-tabs .nav-pills .nav-item:first-child {
  margin-left: 0;
}

.faq-2 .faq-tabs .nav-pills .nav-item:last-child {
  margin-right: 0;
}

.faq-2 .faq-tabs .nav-pills .nav-link {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.faq-2 .faq-tabs .nav-pills .nav-link:hover {
  color: var(--accent-color);
}

.faq-2 .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-2 .faq-tabs .nav-pills .nav-link i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .faq-2 .faq-tabs .nav-pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .faq-2 .faq-tabs .nav-pills .nav-item {
    margin: 5px;
  }
}

.faq-2 .faq-list .faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-2 .faq-list .faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

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

.faq-2 .faq-list .faq-item h3:hover {
  /*background-color: color-mix(in srgb, var(--accent-color), transparent 25%);*/
  background: #0a3557;
  /*background: linear-gradient(90deg, rgba(10, 53, 87, 1) 0%, rgba(230, 178, 103, 1) 99%);*/
  color: white;
}

.faq-2 .faq-list .faq-item h3 .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 15px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  /*color: var(--accent-color);*/
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

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

.faq-2 .faq-list .faq-item h3 .faq-toggle {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  /*color: color-mix(in srgb, var(--default-color), transparent 30%);*/
  margin-left: 15px;
}

.faq-2 .faq-list .faq-item .faq-content {
  padding: 15px;
  display: none;
}

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

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

.faq-2 .faq-list .faq-item.faq-active h3 {
  background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

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

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

.faq-2 .faq-cta {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 30px;
  border-radius: 10px;
}

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

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

.faq-2 .faq-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}

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

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

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

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

/*--------------------------------------------------------------
# Register Section
--------------------------------------------------------------*/
.register .registration-form-wrapper {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin: 40px 0;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); /*was 0.05*/
}

.register .decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.register .decorative-elements .circle {
  position: absolute;
  border-radius: 50%;
}

.register .decorative-elements .circle.circle-1 {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
}

.register .decorative-elements .circle.circle-2 {
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--heading-color), transparent 90%), color-mix(in srgb, var(--heading-color), transparent 97%));
}

.register .decorative-elements .circle.circle-3 {
  top: 40%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 70%), color-mix(in srgb, var(--accent-color), transparent 90%));
}

.register .decorative-elements .square {
  position: absolute;
  transform: rotate(45deg);
}

.register .decorative-elements .square.square-1 {
  top: 20%;
  left: 5%;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 80%), color-mix(in srgb, var(--accent-color), transparent 95%));
}

.register .decorative-elements .square.square-2 {
  bottom: 15%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--heading-color), transparent 85%), color-mix(in srgb, var(--heading-color), transparent 95%));
}

.register .form-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}

.register .form-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.register .form-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.register form {
  position: relative;
  z-index: 1;
}

.register form .form-floating {
  margin-bottom: 1rem;
}

.register form .form-floating .form-control,
.register form .form-floating .form-select {
  height: 60px;
  padding: 1rem 1rem 0.5rem;
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 30%);
  backdrop-filter: blur(5px);
  transition: all 0.3s;
  color: var(--default-color);
}

.register form .form-floating .form-control:focus,
.register form .form-floating .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.register form .form-floating .form-control:focus ~ label,
.register form .form-floating .form-select:focus ~ label {
  color: var(--accent-color);
}

.register form .form-floating .form-control:focus ~ label:after,
.register form .form-floating .form-select:focus ~ label:after {
  background: transparent;
}

.register form .form-floating .form-control::placeholder,
.register form .form-floating .form-select::placeholder {
  color: transparent;
}

.register form .form-floating .form-control:not(:placeholder-shown) ~ label,
.register form .form-floating .form-select:not(:placeholder-shown) ~ label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register form .form-floating .form-control:not(:placeholder-shown) ~ label:after,
.register form .form-floating .form-select:not(:placeholder-shown) ~ label:after {
  background: transparent;
}

.register form .form-floating label {
  padding: 1rem 1rem 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.register form .form-floating label:after {
  background: transparent;
}

.register form .form-check {
  padding-left: 1.8rem;
  margin-top: 1rem;
}

.register form .form-check .form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: -1.8rem;
  margin-top: 0.15rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.register form .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.register form .form-check .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

.register form .form-check .form-check-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.register form .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.register form .form-check .form-check-label a:hover {
  text-decoration: underline;
}

.register .btn-register {
  position: relative;
  height: 56px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  color: var(--contrast-color);
  border: none;
  overflow: hidden;
  transition: all 0.3s;
}

.register .btn-register::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s;
}

.register .btn-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.register .btn-register:hover::before {
  left: 100%;
}

.register .btn-register:active {
  transform: translateY(0);
}

.register .login-link {
  margin-top: 1.5rem;
}

.register .login-link p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.register .login-link p a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
}

.register .login-link p a:hover {
  text-decoration: underline;
}

.register .social-login {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.register .social-login .divider {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
}

.register .social-login .divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.register .social-login .divider span {
  position: relative;
  background-color: var(--surface-color);
  padding: 0 1rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register .social-login .social-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.register .social-login .social-buttons .btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  border-radius: 12px;
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
}

.register .social-login .social-buttons .btn-social i {
  font-size: 1.2rem;
}

.register .social-login .social-buttons .btn-social i.bi-google {
  color: #db4437;
}

.register .social-login .social-buttons .btn-social i.bi-facebook {
  color: #4267b2;
}

.register .social-login .social-buttons .btn-social i.bi-apple {
  color: #000000;
}

.register .social-login .social-buttons .btn-social:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.register .social-login .social-buttons .btn-social:active {
  transform: translateY(0);
}

@media (max-width: 767.98px) {
  .register {
    padding: 2rem 0rem;
    margin: 40px 0;
  }

  .register .form-header h2 {
    font-size: 1.8rem;
  }

  .register .form-header p {
    font-size: 1rem;
  }

  .register .social-buttons {
    grid-template-columns: 1fr;
  }
}

.btn-form {
  position: relative;
  height: 56px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  color: var(--contrast-color);
  border: none;
  overflow: hidden;
  transition: all 0.3s;
}

.btn-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s;
}

.btn-form:hover {
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.btn-form:hover::before {
  left: 100%;
}

.btn-form:active {
  transform: translateY(0);
}
.docbutton {
  border-radius: 1.25rem;
}
.tabs {
  .nav-tabs {
    border: 0;
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 6px;
    width: auto;
  }

  .nav-item {
    margin: 0;
    padding: 0 5px 0 0;

    &:last-child {
      padding-right: 0;
    }
  }

  .nav-link {
    background-color: none;
    color: var(--heading-color);
    padding: 10px 30px;
    transition: 0.3s;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    border: 0;
    margin: 0;

    @media (max-width: 468px) {
      padding: 8px 20px;
    }

    i {
      padding-right: 15px;
      font-size: 48px;
    }

    h4 {
      font-size: 1.5rem;
      font-weight: 500;
      margin: 0;
    }

    &:hover {
      h4 {
        color: var(--accent-color);
      }

      border-color: color-mix(in srgb, var(--default-color), transparent 80%);
    }

    &.active {
      background-color: var(--accent-color);
      border-color: var(--accent-color);

      h4 {
        color: var(--contrast-color);
      }
    }
  }

  .tab-content {
    margin-top: 30px;
  }

  .tab-pane {
    h3 {
      color: var(--heading-color);
      font-weight: 700;
      font-size: 32px;
      position: relative;
      margin-bottom: 20px;
      padding-bottom: 20px;

      &:after {
        content: '';
        position: absolute;
        display: block;
        width: 60px;
        height: 3px;
        background: var(--accent-color);
        left: 0;
        bottom: 0;
      }
    }

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

      li {
        padding-top: 10px;
      }

      i {
        font-size: 20px;
        padding-right: 4px;
        color: var(--accent-color);
      }
    }

    p:last-child {
      margin-bottom: 0;
    }
  }
}
