@charset "UTF-8";

/* Fonts */
:root {
  --default-font: "Poppins",
    sans-serif;
  --heading-font: "Poppins",
    sans-serif;
  --nav-font: "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: #000000;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000000;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #FE8402;
  --org-color: #FE8402;
  --black-color: #000000;
  --white-color: #ffffff;
  --light-gray-bg-color: #f3f3f3;
  --gray-brdr-color: #d3d3d3;
  --body-text-color: rgba(0, 0, 0, 0.8);
  --body-text2-color: rgba(0, 0, 0, 0.6);
  /* 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: rgba(0, 0, 0, 1);
  /* The default color of the main navmenu links */
  --nav-hover-color: #FE8402;
  /* 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: #394450;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #136ad5;
  /* 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: #fff2e4;
  --surface-color: #ffffff;
}

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

.accent-background {
  --background-color: #136ad5;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #acd0fc;
  --surface-color: #4188de;
  --contrast-color: #ffffff;
}

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

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

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

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

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

li,
p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
}

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


/*--------------------------------------------------------------
# Call Us
--------------------------------------------------------------*/

.call-us {
  position: fixed;
  right: 50px;
  top: 100px;
  z-index: 1000;
  background-color: #27D31B;
  border: 6px solid #F3F3F3;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-us img {
  width: 21px;
  height: auto;
}

.bounce {
  animation: bounce 5s ease infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-5px);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {

  color: var(--default-color);
  background-color: var(--white-color);
  padding: 12px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 8px 0px 8px rgba(0, 0, 0, .3);
}

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

.header .logo img {
  max-height: 46px;
  margin-right: 8px;
  transition: all 0.3s;
}

.scrolled .header .logo img {
  max-height: 38px;
  transition: all 0.3s;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 5px;
  transition: 0.3s;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 90%);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover,
.header .btn-getstarted.active {
  color: var(--contrast-color);
  background: var(--black-color);

}

.user-dropdown {
  margin: 0 0 0 30px;
}

.user-dropdown .dropdown-item {
  color: color-mix(in srgb, var(--black-color), transparent 20%);
  font-size: 14px;
  padding: 5px 15px;
}

.user-dropdown .dropdown-item:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.user-dropdown .text-danger {
  color: var(--accent-color) !important;
}

.user-dropdown .text-danger:hover {
  color: var(--contrast-color) !important;
}

.guest-login {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  border-radius: 5px;
  transition: 0.3s;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 90%);
}

.guest-login:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  border-radius: 5px;
  transition: 0.3s;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 90%);
}

.guest-login:hover {
  color: var(--contrast-color);
  background: var(--black-color);
  font-size: 14px;
  padding: 8px 25px;
  border-radius: 5px;
  transition: 0.3s;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 90%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .user-dropdown {
    order: 2;
    margin: 0 15px 0 0;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}

/* .scrolled .header .btn-getstarted,
.scrolled .header .btn-getstarted:focus {
  padding: 6px 25px;
} */

/*--------------------------------------------------------------
# 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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    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;
    height: 1px;
    bottom: -3px;
    left: 0;
    background-color: var(--nav-hover-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 .active,
  .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: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    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: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    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);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    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 Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 600;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

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

.page-title .breadcrumbs 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: 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: left;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px
}

.section-title h2:after {
  content: "";
  width: 100px;
  border-radius: 100px;
  height: 4px;
  background: var(--accent-color);
  display: inline-block;
}



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

@media (max-width: 768px) {
  /* .section-title h2 {
    font-size: 20px;
  } */


}

/*--------------------------------------------------------------
# Courses Hero Section
--------------------------------------------------------------*/
.banner-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 20px 0;
  background: url('../images/banner-bg.svg') no-repeat center center;
  background-size: cover;
}

.banner-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.banner-hero .hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.highlight-color {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .banner-hero .hero-text h1 {
    font-size: 2.5rem;
  }
}

.banner-hero .hero-text p {}



.offer {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-direction: column;
}

.subtext {
  display: block;
  font-size: 0.75rem;
  color: gray;
  margin-top: 0.25rem;
  margin-left: 1.8rem;
}

.hero-text .input-group {
  position: relative;
  margin-bottom: 1rem;
  background: var(--light-gray-bg-color);
  border: 1px solid var(--gray-brdr-color);
  border-radius: 5px;
  width: 430px;
  align-items: center;

}

.hero-text .input-group.line:after {
  content: "";
  position: absolute;
  left: 21px;
  bottom: -39px;
  width: 2px;
  height: 58px;
  background-color: var(--accent-color);
  z-index: 3;
}

.hero-text .input-group input {
  width: calc(100% - 50px);
  padding: 0.75rem 0;
  border-radius: 8px;
  font-size: 0.9rem;
  background: transparent;
  border: none;
  padding-right: 15px;

}

.hero-text .input-group.line input {
  padding-right: 50px;
}

.hero-text .input-group input:focus {
  outline: none;
  box-shadow: none;

}

.round-tick {
  width: 14px;
  height: 14px;
  border-radius: 100% !important;
  background-color: var(--accent-color);
  margin: 0 15px;

}

.square-tick {
  width: 14px;
  height: 14px;
  border-radius: 0;
  background-color: var(--accent-color);
  margin: 0 15px
}

.send-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  cursor: pointer;
}

.parcel-sizes {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
}

.parcel-sizes label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-right: 0.5rem;
}

.size {
  padding: 0.3rem 0.8rem;
  margin: 0 0.2rem;
  border: none;
  border-radius: 5px;
  background-color: #e0e0e0;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  font-size: 0.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.size::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -40px;
  /* Adjust for spacing above the icon */
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  z-index: 10;
}

.size::before {
  content: "";
  position: absolute;
  top: -10px;
  /* position arrow below tooltip */
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent var(--accent-color) transparent;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 9;
}

.size:hover::after,
.size:hover::before {
  opacity: 1;
}

.size-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.size img {
  width: 50px;
  height: 50px;
  margin-bottom: 0.2rem;

}

.size:hover {
  border: 1px solid var(--accent-color);
}

.size.active {
  background-color: rgb(255 237 217);
  color: white;
  border: 1px solid var(--accent-color);
}

.note {
  font-size: 0.75rem;
  color: #555;
  margin-bottom: 1.5rem;
  text-align: left;
}

.price-btn {
  width: 100%;
  background-color: #FE8402;
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.price-btn:hover {
  background-color: #e67100;
}

.banner-hero .hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}


/* ------------------------- */
/* Service Banner */
/* ------------------------ */

.service-banner {
  background: rgba(254, 132, 2, .15);
  position: relative;
  padding-bottom: 100px;
  overflow-y: visible;
}

.service-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/service-banner-bg.svg') repeat-x bottom left;
  opacity: 1;
}

.down-page-arrow {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 53px;
  background: url('../images/down-arrow.svg') no-repeat center center;
  background-size: contain;
  cursor: pointer;
  background: #fff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, .2);
}

.bounce2 {
  animation: bounce2 2s ease infinite;
}

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

  80% {
    transform: translateY(-15%);
  }

  90% {
    transform: translateY(0%);
  }

  95% {
    transform: translateY(-7%);
  }

  97% {
    transform: translateY(0%);
  }

  99% {
    transform: translateY(-3%);
  }

  100% {
    transform: translateY(0);
  }
}


.sb-content {
  background: var(--white-color);
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  height: 100%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, .2);
  position: relative;
}

.sb-content:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -35px;
  width: 100%;
  height: 50px;
  background: url('../images/service-drop-arrow.svg') no-repeat bottom center;

  z-index: 1;
  transition: 0.3s ease;

}

.sb-content h2 {
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  margin: 20px 0 0 0;
  text-align: center;
}

.sb-content:hover {
  background: var(--accent-color);
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.sb-content:hover img {
  filter: brightness(0) invert(1);
}

.sb-content:hover h2 {
  color: var(--contrast-color);
}

.sb-content:hover:before {
  bottom: -30px;
  transition: 0.3s ease;
  z-index: -1;
  background: url('../images/service-drop-arrow-hover.svg') no-repeat bottom center;
}

.truck-line {
  position: relative;
  margin-top: 60px;
  height: 60px;
  width: 100%;
  overflow: hidden;
}

.truck {
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 60px;
  transition: left 0.5s ease;
}

.service-banner:hover~.truck-line .truck {
  animation: moveTruck 1s forwards;
}

@keyframes moveTruck {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(600px);
  }
}

@media (max-width: 576px) {
  .banner-hero .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
}


/*--------------------------------------------------------------
# who-we-are Section
--------------------------------------------------------------*/
.who-we-are {
  position: relative;
  overflow: hidden;
}

.who-we-are::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/bg/abstract-bg-3.webp") center/cover;
  opacity: 0.03;
  z-index: 1;
}

.who-we-are .container {
  position: relative;
  z-index: 2;
}

.who-we-are .who-we-are-content {
  padding-right: 30px;
}

@media (max-width: 991px) {
  .who-we-are .who-we-are-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.who-we-are .who-we-are-content h2 {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.2;
  position: relative;
}

.who-we-are .who-we-are-content h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  display: block;
  width: 200px;
  height: 20px;
  background: url(../images/heading-graphic.svg) no-repeat center center;
  background-size: 100%;
}

@media (max-width: 768px) {
  .who-we-are .who-we-are-content h2 {
    font-size: 2rem;
  }
}

.who-we-are .who-we-are-content p {
  font-size: 16px;
  margin-bottom: 32px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.who-we-are .features-list {
  margin-bottom: 32px;
  padding-left: 20px;
}

.who-we-are .features-list .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;

}

.who-we-are .features-list .feature-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-right: 12px;
  flex-shrink: 0;
}

.who-we-are .features-list .feature-item span {
  font-weight: 500;
  color: var(--default-color);
  font-size: 0.90rem;
  line-height: 1.5;
}

.who-we-are .who-we-are-actions {
  margin-bottom: 40px;
}

.who-we-are .who-we-are-actions .btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 16px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.who-we-are .who-we-are-actions .btn.btn-primary {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.who-we-are .who-we-are-actions .btn.btn-primary: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);
}

.who-we-are .who-we-are-actions .btn.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.who-we-are .who-we-are-actions .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.who-we-are .stats-row {
  display: flex;
  gap: 40px;
}

@media (max-width: 576px) {
  .who-we-are .stats-row {
    flex-direction: column;
    gap: 24px;
  }
}

.who-we-are .stats-row .stat-item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 8px;
  line-height: 1;
}

.who-we-are .stats-row .stat-item p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.who-we-are .who-we-are-image {
  position: relative;
}

.who-we-are .who-we-are-image img {}

.who-we-are .who-we-are-image .floating-element {
  position: absolute;
  background: var(--surface-color);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.who-we-are .who-we-are-image .floating-element.student-card {
  top: 20px;
  right: -20px;
}

@media (max-width: 576px) {
  .who-we-are .who-we-are-image .floating-element.student-card {
    right: 10px;
    padding: 15px;
  }
}

.who-we-are .who-we-are-image .floating-element.course-card {
  bottom: 30px;
  left: -20px;
}

@media (max-width: 576px) {
  .who-we-are .who-we-are-image .floating-element.course-card {
    left: 10px;
    padding: 15px;
  }
}

.who-we-are .who-we-are-image .floating-element .card-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.who-we-are .who-we-are-image .floating-element .card-content i {
  font-size: 2rem;
  color: var(--accent-color);
}

.who-we-are .who-we-are-image .floating-element .card-content .text .number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.who-we-are .who-we-are-image .floating-element .card-content .text .label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-choose-us {

  background-color: var(--background-color);
}

.why-choose-us .section-title h2 {
  text-align: center;
}

.why-choose-us .features-content {
  padding-right: 30px;
}

@media (max-width: 992px) {
  .why-choose-us .features-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.why-choose-us .features-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .why-choose-us .features-content h2 {
    font-size: 2rem;
  }
}

.why-choose-us .features-content .lead {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

.why-choose-us .features-content p {
  margin-bottom: 2rem;
  color: var(--default-color);
}

.why-choose-us .features-content .features-list .feature-item {
  display: flex;
  margin-bottom: 10px;
  background: var(--light-gray-bg-color);
  border-radius: 10px;
  padding: 20px;
}

.why-choose-us .features-content .features-list .feature-item:last-child {
  margin-bottom: 0;
}

.why-choose-us .features-content .features-list .feature-item .feature-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 100%;
  background-color: var(--accent-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.why-choose-us .features-content .features-list .feature-item .feature-icon:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
}

.why-choose-us .features-content .features-list .feature-item .feature-text h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--heading-color);
}

.why-choose-us .features-content .features-list .feature-item .feature-text p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--body-text-color);
}

.why-choose-us .features-image {
  position: relative;
}

.why-choose-us .features-image .main-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.why-choose-us .features-image .stats-card {
  position: absolute;
  top: -30px;
  left: -30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  z-index: 2;
  width: 220px;
}

@media (max-width: 768px) {
  .why-choose-us .features-image .stats-card {
    width: 180px;
    padding: 15px;
    top: -20px;
    left: -10px;
  }
}

.why-choose-us .features-image .stats-card .stat-item {
  text-align: center;
}

.why-choose-us .features-image .stats-card .stat-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .why-choose-us .features-image .stats-card .stat-item h3 {
    font-size: 1.2rem;
  }
}

.why-choose-us .features-image .stats-card .stat-item p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: var(--default-color);
}

@media (max-width: 768px) {
  .why-choose-us .features-image .stats-card .stat-item p {
    font-size: 0.7rem;
  }
}

.why-choose-us .features-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

@media (max-width: 768px) {
  .why-choose-us .features-image .experience-badge {
    padding: 15px;
    right: 0;
  }
}

.why-choose-us .features-image .experience-badge .badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.why-choose-us .features-image .experience-badge .badge-content .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 768px) {
  .why-choose-us .features-image .experience-badge .badge-content .number {
    font-size: 2rem;
  }
}

.why-choose-us .features-image .experience-badge .badge-content .text {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
}


/*--------------------------------------------------------------
# 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;
  }
}




.banner-hero .hero-stats .stat-item {
  text-align: center;
}

.banner-hero .hero-stats .stat-item .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.banner-hero .hero-stats .stat-item .label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.banner-hero .hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .banner-hero .hero-buttons {
    flex-direction: column;
  }
}

.banner-hero .hero-buttons .btn {
  padding: 10px 30px;
  font-weight: 500;
  font-size: 16;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.banner-hero .hero-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.banner-hero .hero-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.banner-hero .hero-buttons .btn.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.banner-hero .hero-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.banner-hero .hero-features {
  display: flex;
  gap: 2rem;
}

@media (max-width: 768px) {
  .banner-hero .hero-features {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.banner-hero .hero-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.banner-hero .hero-features .feature i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.banner-hero .hero-features .feature span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--default-color);
}

.banner-hero .hero-image {
  position: relative;
}

.banner-hero .hero-image .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;

}

.banner-hero .hero-image .main-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.banner-hero .hero-image .floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.banner-hero .hero-image .floating-cards .course-card {
  position: absolute;
  background: var(--surface-color);
  border-radius: 5px;
  padding: .5rem 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px;
}

.banner-hero .hero-image .floating-cards .course-card:nth-child(1) {
  top: 20%;
  left: -10%;
}

.banner-hero .hero-image .floating-cards .course-card:nth-child(2) {
  top: 50%;
  right: -15%;
}

.banner-hero .hero-image .floating-cards .course-card:nth-child(3) {
  bottom: 20%;
  left: -5%;
}

.banner-hero .hero-image .floating-cards .course-card .card-icon {


  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-hero .hero-image .floating-cards .course-card .card-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.banner-hero .hero-image .floating-cards .course-card .card-content h6 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
  line-height: 1.2;
}

.banner-hero .hero-image .floating-cards .course-card .card-content span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .banner-hero .hero-image .floating-cards .course-card {
    display: none;
  }
}

.banner-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.banner-hero .hero-background .bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.banner-hero .hero-background .bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.banner-hero .hero-background .bg-shapes .shape.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.banner-hero .hero-background .bg-shapes .shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

.banner-hero .hero-background .bg-shapes .shape.shape-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 30%;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {

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

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

@media (max-width: 992px) {
  .banner-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .banner-hero .hero-text {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .banner-hero {
    text-align: center;
  }

  .banner-hero .hero-stats {
    justify-content: center;
  }

  .banner-hero .hero-features {
    justify-content: center;
  }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 40px 0;
  overflow: hidden;
}

.testimonials .critic-reviews {
  margin-bottom: 60px;
}

.testimonials .critic-reviews .critic-review {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.testimonials .critic-reviews .critic-review .review-quote {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--accent-color);
  opacity: 0.2;
  line-height: 1;
}

.testimonials .critic-reviews .critic-review .stars {
  margin-bottom: 15px;
  display: flex;
}

.testimonials .critic-reviews .critic-review .stars i {
  color: #FFD700;
  margin-right: 3px;
  font-size: 18px;
}

.testimonials .critic-reviews .critic-review p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--default-color);
  font-style: italic;
}

.testimonials .critic-reviews .critic-review .critic-info .critic-name {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 16px;
}

.testimonials .critic-reviews .critic-review:hover {
  transform: translateY(-10px);
}

.testimonials .testimonials-container {
  /* margin-bottom: 60px; */
}

.testimonials .testimonials-container .swiper-wrapper {
  height: auto !important;
  padding-bottom: 20px;
}

.testimonials .testimonials-container .testimonial-item {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  height: 100%;

}

.testimonials .testimonials-container .testimonial-item .stars {
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .testimonials-container .testimonial-item .stars i {
  color: #FDB900;
  margin-right: 3px;
  font-size: 16px;
}

.testimonials .testimonials-container .testimonial-item p {
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--body-text2-color);
  line-height: 1.6;
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile {
  display: flex;
  align-items: center;
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  margin-right: 15px;
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile div h3 {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 5px;
  color: var(--heading-color);
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile div h4 {
  font-size: 11px;
  color: var(--body-text2-color);
  margin: 0;
  font-weight: normal;
}

.testimonials .testimonials-container .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .testimonials-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
}

.testimonials .testimonials-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 20px;
  border-radius: 10px;
}

.testimonials .overall-rating {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: inline-block;
}

.testimonials .overall-rating .rating-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 10px;
}

.testimonials .overall-rating .rating-stars {
  margin-bottom: 15px;
}

.testimonials .overall-rating .rating-stars i {
  color: #FFD700;
  font-size: 22px;
  margin: 0 3px;
}

.testimonials .overall-rating p {
  color: var(--default-color);
  font-size: 15px;
  margin-bottom: 15px;
}

.testimonials .overall-rating .rating-platforms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.testimonials .overall-rating .rating-platforms span {
  font-size: 14px;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 5px 15px;
  border-radius: 20px;
}

.testimonials .swiper {
  padding-top: 37px;
}

.testimonials-avatar {
  position: absolute;
  top: -20px;
  left: 5%;
  transform: translateX(-5%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;

}

.testimonials-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.testimonials-avatar:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .testimonials .section-header h2 {
    font-size: 28px;
  }

  .testimonials .critic-reviews .critic-review {
    margin-bottom: 30px;
  }

  .testimonials .testimonials-container .testimonial-item {
    margin-bottom: 30px;
  }
}

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

  .testimonials .section-header h2 {
    font-size: 24px;
  }

  .testimonials .overall-rating {
    padding: 30px;
  }

  .testimonials .overall-rating .rating-number {
    font-size: 36px;
  }

  .testimonials .overall-rating .rating-stars i {
    font-size: 18px;
  }
}


/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.blog-post .card {
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
  height: 100%;
  background-color: var(--surface-color);
  padding: 15px;
}

.blog-post .card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

.blog-post .card .card-top {
  padding: 15px 0 0 0;
}

.blog-post .card .card-top img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.blog-post .card .card-top .author-name {
  font-size: 0.9rem;
  color: var(--heading-color);
}

.blog-post .card .card-top .likes {
  font-size: 0.8rem;
  color: var(--body-text-color);
  text-align: right;
}

.blog-post .card .card-top .likes i {
  margin-right: 0.25rem;
}

.blog-post .card .card-img-wrapper {
  overflow: hidden;
  max-height: 250px;
  margin-bottom: 15px;
}

.blog-post .card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  border-radius: 6px;
}

.blog-post .card .card-body {
  padding: 0;
}

.blog-post .card .card-body .card-title {
  font-size: 18px;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
  font-weight: 500;
}

.blog-post .card .card-body .card-title a {
  color: inherit;
}

.blog-post .card .card-body .card-title:hover {
  color: var(--accent-color);
}

.blog-post .card .card-body .card-text {
  font-size: 0.9rem;
  color: var(--body-text2-color);
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  padding-top: 60px;
  padding-bottom: 60px;
}

.view-all {
  font-size: 13px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 65%);
  color: color-mix(in srgb, var(--default-color), transparent 65%);
  padding: 5px 25px;
  border-radius: 5px;
}

.view-all:hover {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;

  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  padding: 20px;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content div {
  margin-bottom: 0;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  font-size: 14px;
}

.faq .faq-container .faq-item .faq-content ul {
  margin: 0 20px;
  padding: 0 20px;
  list-style-type: disc;
  font-size: 14px;
}

.faq .faq-container .faq-item .faq-content ul li {
  margin-bottom: 10px;
  color: var(--default-color);
}


.faq .faq-container .faq-item.faq-active .faq-content div {
  padding: 0 20px 20px 20px;
  transition: 0.3s ease-in-out;
}

.faq .faq-container .faq-item.faq-active h3 {
  padding-bottom: 10px;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 0;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}


/* ----------------------------- */
/* Download App */
/* ---------------------------- */
.download-app .app-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;

}

.ac-qr {
  width: 110px;
  height: 110px;
}

.ac-content h2 {
  font-size: 18px;
  color: var(--black-color);
  font-weight: 500;
  margin-bottom: 5px;
}

.ac-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 0px;

}

.download-app .app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: var(--black-color);

}

.download-app .app-card:hover .ac-content h2 {
  color: var(--white-color);
}

.download-app .app-card:hover .ac-content p {
  color: color-mix(in srgb, var(--white-color), transparent 50%);
}

.download-app .app-card:hover img {
  filter: brightness(0) invert(1);
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.footer-who-we-are {
  background: transparent url("../images/footer-buildings-bg.svg") repeat-x left bottom;
  padding-top: 45px !important;
  padding-bottom: 45px !important;
  min-height: 200px;

}

.fcs-bg {
  background: url("../images/fcs-bg.png") repeat-x center bottom;
  background-size: cover;
  padding: 25px 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -100px;
}

.fcs-button {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fcs-btn {
  color: var(--white-color);
  background-color: var(--accent-color);
  font-size: 16px;
  padding: 12px 35px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid var(--white-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.fcs-btn:hover {
  color: var(--accent-color);
  background-color: var(--white-color);
  border-color: var(--white-color);
}

.fcs-content {
  background: var(--white-color);
  border-radius: 0 70px 70px 0;
  text-align: left;
  padding: 20px 60px 20px 30px;
  width: 70%;
}

.fcs-content h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.fcs-content p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--black-color);
}

.footer {
  color: var(--white-color);
  background-color: var(--black-color);
  font-size: 14px;
  position: relative;
}

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

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

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

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

.footer .footer-about p {
  font-size: 13px;
  color: color-mix(in srgb, var(--white-color), transparent 30%);
}

.footer .footer-about p strong {
  font-weight: 500;
  color: var(--white-color);
}

.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(--white-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--white-color), transparent 20%);
  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: 600;
  position: relative;
  padding-bottom: 12px;
  color: var(--white-color)
}

.footer h5 {
  font-size: 15px;
  font-weight: 600;
  position: relative;
  padding-bottom: 0;
  color: var(--white-color)
}

.footer .footer-links {
  margin-bottom: 30px;
  margin-top: 60px;
}

.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: 5px 0;
  display: flex;
  align-items: center;
  font-size: 13px;
}

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

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--white-color), transparent 30%);
  display: inline-block;
  line-height: 1;
  transform: translateX(1px);
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer .footer-links ul a:hover {
  color: var(--white-color);
  transform: translateX(4px);
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer .footer-contact {
  padding: 0 0 0 12px;
}

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

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

.footer .copyright p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--white-color), transparent 40%);
  font-size: 13px;

}

.footer .copyright p strong {
  color: var(--white-color);
  font-weight: 600;
}

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



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: url('../images/banner-bg.svg') no-repeat top center;
  background-size: 100% auto;
  padding-top: 25px;

}

.org-color {
  color: var(--accent-color)
}

.about .subtitle {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  position: relative;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about .about-content {
  padding-left: 20px;
}

.about .about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .about .about-content h2 {
    font-size: 2rem;
  }
}

.about .about-content p {
  margin-bottom: 2rem;
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.about .stats-row .stats-item {
  background: rgba(255, 215, 172, .6);
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 15px 10px;
  border-radius: 10px;
}

.about .stats-row .stats-item .count {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.5rem;
}

.about .stats-row .stats-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.about .mission-card {
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: 8px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease-in-out;
  text-align: left;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border-bottom: 4px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  border-top: 4px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.about .mission-card:hover {
  transform: translateY(-5px);
  border-bottom: 4px solid var(--accent-color);
  border-top: 4px solid var(--accent-color);
}

.about .mission-card:hover .icon-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);

}

.about .mission-card .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--accent-color);
  margin: 0;
  transition: all 0.3s ease-in-out;
  margin-bottom: 1.5rem;

}

.about .mission-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .7rem;
}

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

.about .mission-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.about .mission-card ul li {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.about .mission-card ul li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.about .achievements {
  padding-left: 20px;
}

.about .achievements h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .about .achievements h2 {
    font-size: 2rem;
  }
}

.about .achievements p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .achievements .achievements-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.about .achievements .achievements-list li {
  padding: 0.5rem 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about .achievements .achievements-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about .achievements .btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about .achievements .btn-explore:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  gap: 0.75rem;
}

.about .achievements .btn-explore i {
  font-size: 1rem;
}

.about .about-gallery img {
  border: 5px solid var(--surface-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about .about-gallery img:hover {
  transform: scale(1.02);
}

@media (max-width: 992px) {

  .about .about-content,
  .about .achievements {
    padding-left: 0;
    margin-top: 2rem;
  }

  .about .about-gallery {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .about .stats-row {
    justify-content: center;
    gap: 1.5rem;
  }

  .about .stats-row .stats-item {
    flex: 0 0 40%;
    text-align: center;
  }

  .about .mission-card {
    margin-bottom: 1.5rem;
  }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

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

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 14px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/


.privacy .privacy-content {}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 20px;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-weight: 500;
  padding-top: 15px;
}

.privacy .privacy-content .content-section h3 {
  font-size: 18px;
  color: var(--heading-color);
  margin: 15px 0 10px;
  font-weight: 500;
}

.privacy a {
  color: var(--accent-color);
  transition: color 0.3s ease;
  text-decoration: underline;
}

.privacy a:hover {
  color: var(--black-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy strong {
  font-weight: 600;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
  text-align: justify;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li,
.privacy .privacy-content .content-section ol li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
}

.privacy .privacy-content .content-section ul li:last-child,
.privacy .privacy-content .content-section ol li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

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

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

.privacy blockquote {
  padding: 20px;
  border-left: 4px solid var(--accent-color);
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-style: italic;

  background: color-mix(in srgb, var(--default-color), transparent 95%);
}


@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }



  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}


/* ----------------------------------------------- */
/* Inner pages CSS */
/* ----------------------------------------------- */

.inner-banner {
  background: rgba(254, 132, 2, .15);
  position: relative;
  padding: 40px 0;
}

.inner-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/service-banner-bg.svg) repeat-x bottom left;
  opacity: 1;
  background-size: auto 150%;
}

.inner-banner .section-title {
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inner-banner .section-title h2 {
  font-size: 24px;
  font-weight: 600;
  justify-content: flex-start;
  align-items: flex-start;
}

.inner-banner .section-title h2:after {
  height: 3px;
}

.inner-banner .section-title p,
.gdws-text {
  background: var(--white-color);
  color: var(--accent-color);
  padding: 5px 15px;
  border-radius: 19px;
  border: 1px solid var(--accent-color);
}

.inner-page-pt {
  padding-top: 40px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  height: 100%;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border-bottom: 4px solid var(--white-color);
}

.services .service-card:hover {
  border-bottom: 4px solid var(--accent-color);
}

.services .service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  padding: 5px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;

}

.services .service-card .icon img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;

}

.services .service-card:hover .icon img {
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

.services .service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.services .service-card p {
  /* margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6; */
}

.services .service-card strong {
  color: var(--accent-color);
  font-weight: 500;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
  margin-top: 0;
}

.org-badge {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  color: var(--contrast-color);
  /* background: color-mix(in srgb, var(--black-color), transparent 90%);
  color: var(--black-color); */
  padding: 2px 10px;
  border-radius: 15px;

  font-weight: 500;
  font-size: 12px;
}

.services .service-card:hover .org-badge {
  background: var(--black-color);
  color: var(--contrast-color)
}

.service-list li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 0;
  color: var(--default-color);
  font-size: 13px;
}

.service-list li i {
  font-size: 16px;
  color: var(--accent-color);
}

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--black-color);
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 10px;
  font-size: 13px;
}

.services .service-card .read-more:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Login Section
--------------------------------------------------------------*/
.login {
  background: rgba(254, 132, 2, .15);
  position: relative;
}

.login:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/service-banner-bg.svg) repeat-x bottom left;
  opacity: 1;
  background-size: auto 100%;
}

.login .auth-container {
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  overflow: hidden;
  position: relative;
}

@media (max-width: 576px) {
  .login .auth-container {
    margin: 0 15px;
  }
}

.login .auth-form {
  padding: 30px;
  display: none;
  border-top: 4px solid var(--accent-color)
}

.login .auth-form.active {
  display: block;
  animation: slideIn 0.5s ease-out;
}

@media (max-width: 576px) {
  .login .auth-form {
    padding: 30px 25px;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.login .form-header {
  text-align: center;
  margin-bottom: 35px;
}

.login .login-form.booking-form .form-header {
  text-align: left;
}

.login .form-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.fw-600 {
  font-weight: 600;
}

.login .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
  margin: 0;
}

.login .input-group {
  position: relative;
  margin-bottom: 20px;
}

.login .input-group .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  transition: color 0.3s;
  pointer-events: none;
}

.login .input-group .form-control {
  padding: 16px 16px 16px 50px;
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background: var(--background-color);
  color: var(--default-color);
  font-size: 15px;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  border-radius: 5px !important;
}

.login .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
  outline: none;
}

.login .input-group .form-control:focus~.input-icon {
  color: var(--accent-color);
}

.login .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.login .input-group .password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  z-index: 3;
  transition: color 0.3s;
}

.login .input-group .password-toggle:hover {
  color: var(--accent-color);
}

.login .name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

/*Successfull Modal*/
/* Modal Custom Styling */
.order-success-modal {
  border-radius: 1rem;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.success-icon i {
  font-size: 72px;
  color: #28a745;
  /* Bootstrap success green */
}

.success-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #28a745;
  margin-bottom: 10px;
}

.success-text {
  color: #6c757d;
  /* muted grey */

  margin-bottom: 20px;
}

.order-details {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 0.75rem;
  padding: 15px 20px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.order-details p {
  margin: 0 0 8px;
}

.order-details p:last-child {
  margin-bottom: 0;
}

.modal-content strong {
  font-weight: 600;
}

.btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
}


@media (max-width: 576px) {
  .login .name-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.login .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.login .form-options .remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
}

.login .form-options .remember-me input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  background: var(--background-color);
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.login .form-options .remember-me input[type=checkbox]:checked {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.login .form-options .remember-me input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.login .form-options .remember-me label {
  font-size: 14px;
  color: var(--default-color);
  cursor: pointer;
}

.login .form-options .forgot-password {
  font-size: 14px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  cursor: pointer;
  text-decoration: underline;
}

.login .form-options .forgot-password:hover {
  color: var(--black-color);
  text-decoration: none;
}

.login .terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.login .terms-check input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  background: var(--background-color);
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 2px;
  flex-shrink: 0;
}

.login .terms-check input[type=checkbox]:checked {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.login .terms-check input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.login .terms-check label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.4;
  cursor: pointer;
}

.login .terms-check label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.login .terms-check label a:hover {
  text-decoration: underline;
}

.login .auth-btn {
  width: 100%;
  padding: 16px 24px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.login .auth-btn.primary-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.login .auth-btn.primary-btn:hover {
  background: var(--black-color);
  transform: translateY(-1px);
}

.login .auth-btn.primary-btn:active {
  transform: translateY(0);
}

.login .auth-btn.social-btn {
  background: var(--background-color);
  color: var(--default-color);
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.login .auth-btn.social-btn:hover {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-color: color-mix(in srgb, var(--default-color), transparent 75%);
}

.login .auth-btn.social-btn i {
  font-size: 18px;
}

.login .auth-btn i {
  font-size: 16px;
}

.login .divider {
  position: relative;
  text-align: center;
  margin: 25px 0;
}

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

.login .divider span {
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  padding: 0 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.login .switch-form {
  text-align: center;
  margin-top: 25px;
}

.login .switch-form span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
}

.login .switch-form .switch-btn {
  background: none;
  border: none;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-left: 0;
  transition: color 0.3s;
  text-decoration: underline;
}

.login .switch-form .switch-btn:hover {
  color: var(--black-color);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Register Section
--------------------------------------------------------------*/
.register {
  background: rgba(254, 132, 2, .15);
  position: relative;
}

.register:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/service-banner-bg.svg) repeat-x bottom left;
  opacity: 1;
  background-size: auto 100%;
}

.register .registration-form-wrapper {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 3rem 2rem;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 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;
  color: var(--accent-color);

}

.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: var(--accent-color);
  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 1.5rem;
    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;
  }
}


/* --------------------------------------------------------- */
/*progressbar*/
/* --------------------------------------------------------- */
#msform fieldset:not(:first-of-type) {
  display: none;
}

.booking-steps .card {
  border: none;
  background: none;
}

.booking-steps.login .auth-container {
  max-width: 100%;
  min-width: 100%
}

.booking-steps.login .form-header {
  margin-bottom: 0;
}

.booking-steps.login .form-header h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.booking-steps.login .form-header p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 15px;
}

.booking-steps.login .input-group .form-control {
  padding: 10px 15px;
  width: 100%;
  font-size: 14px;
}

.booking-steps.login .input-group .form-label {
  font-size: 13px;

  margin-bottom: 5px;
}

.booking-steps.login .input-group textarea.form-control {
  min-height: 100px;
  resize: none;
}

.booking-steps.login .input-group .form-control[type=number]::-webkit-inner-spin-button,
.booking-steps.login .input-group .form-control[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  color: lightgrey;
  margin: 15px -15px 20px -15px;
  padding: 0;
  display: flex;
  text-align: center;
}

#progressbar .active {
  color: #000000;
}

#progressbar li {
  list-style-type: none;
  font-size: 13px;
  width: 25%;
  float: left;
  position: relative;
}

#progressbar li strong {
  font-weight: 500;
}

/*Icons in the ProgressBar*/
#progressbar #gerneralInfo:before {
  /*font-family: FontAwesome;
    content: "\f007";*/
  content: '1';
  background: var(--white-color) url('../images/gernral-info.svg') no-repeat;
  background-size: 25px auto;
  background-position: center center;
}

#progressbar #gerneralInfo.active:before {
  background: var(--accent-color) url('../images/gernral-info-a.svg') no-repeat;
  background-size: 25px auto;
  background-position: center center;
}

#progressbar #educationInfo:before {
  /*font-family: FontAwesome;    
    content: "\f02d";*/
  content: '2';
  background: var(--white-color) url('../images/education-info.svg') no-repeat;
  background-size: 25px auto;
  background-position: center center;
}

#progressbar #educationInfo.active:before {
  content: '2';
  background: var(--accent-color) url('../images/education-info-a.svg') no-repeat;
  background-size: 25px auto;
  background-position: center center;
}

#progressbar #textScores:before {
  /* font-family: FontAwesome;
    content: "\f005";*/
  content: '3';
  background: var(--white-color) url('../images/test-score.svg') no-repeat;
  background-size: 25px auto;
  background-position: center center;
}

#progressbar #textScores.active:before {
  content: '3';
  background: var(--accent-color) url('../images/test-score-a.svg') no-repeat;
  background-size: 25px auto;
  background-position: center center;
}

#progressbar #bgInfo:before {
  /* font-family: FontAwesome;
    content: "\f05a";*/
  content: '4';
  background: var(--white-color) url('../images/bg-info.svg') no-repeat;
  background-size: 25px auto;
  background-position: center center;
}

#progressbar #bgInfo.active:before {
  content: '4';
  background: var(--accent-color) url('../images/bg-info-a.svg') no-repeat;
  background-size: 25px auto;
  background-position: center center;
}

#progressbar #uploadDoc:before {
  /*font-family: FontAwesome;
    content: "\f093";*/
  content: '5';
  background: var(--white-color) url('../images/upload-doc.svg') no-repeat;
  background-size: 22px auto;
  background-position: center center;
}

#progressbar #uploadDoc.active:before {
  content: '5';
  background: var(--accent-color) url('../images/upload-doc-a.svg') no-repeat;
  background-size: 22px auto;
  background-position: center center;
}

/*ProgressBar before any progress*/
#progressbar li:before {
  width: 40px;
  height: 40px;
  line-height: 38px;
  display: block;
  font-size: 14px;
  color: var(--accent-color);
  background: var(--white-color);
  border-radius: 50%;
  margin: 0 auto 10px auto;
  font-weight: 600;
  padding: 2px;
  z-index: 2;
  position: relative;
  box-shadow: 0px 3px 4px 0 rgba(0, 0, 0, .1);
}

/*ProgressBar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: var(--white-color);
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 1;
}

#progressbar li:first-child:after {
  left: 50%;

}

#progressbar li:last-child:after {
  left: auto;
  right: 50%
}

/*Color number of the step and the connector before it*/
#progressbar li.active:before,
#progressbar li.active:after {
  background: var(--accent-color);
  color: #fff;
}


.next-btn {
  padding: 10px 24px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--white-color);

}

.next-btn:hover {
  background: var(--black-color);
  color: var(--white-color)
}

/*Imaged Radio Buttons*/
.radio-group {
  position: relative;
  margin-bottom: 25px;
}

.radio {
  display: inline-block;
  width: 204;
  height: 104;
  border-radius: 0;
  background: lightblue;
  box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  cursor: pointer;
  margin: 8px 2px;
}

.radio:hover {
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.radio.selected {
  box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1);
}

/*Fit image in bootstrap div*/
.fit-image {
  width: 100%;
  object-fit: cover;
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  position: relative;
  margin-bottom: 25px;
  border-radius: 10px;
  overflow: hidden;
}

.service-details .service-hero img {
  width: 100%;
  object-fit: cover;
}

.service-details .service-hero .service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

.service-details .service-content .service-header {
  margin-bottom: 25px;
}

.service-details .service-content .service-header h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
  border-left: 4px solid var(--accent-color);
  padding-left: 15px;
}

.service-details .service-content .service-header .service-intro {}

.service-details .service-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.service-details .service-features {
  margin-bottom: 25px;
}

.service-details .service-features .feature-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
}

.service-details .service-features .feature-item:hover {
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-2px);
}

.service-details .service-features .feature-item .feature-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.service-details .service-features .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.service-details .service-features .feature-item .feature-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .service-features .feature-item .feature-content p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-process {
  margin-bottom: 35px;
}

.service-details .service-process .process-steps .process-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details .service-process .process-steps .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 60px;
  width: 2px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details .service-process .process-steps .process-step .step-number {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 25px;
  flex-shrink: 0;
  font-size: 16px;
}

.service-details .service-process .process-steps .process-step .step-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.service-details .service-process .process-steps .process-step .step-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-gallery {
  margin-bottom: 30px;
}

.service-details .service-gallery img {
  transition: transform 0.3s ease;
}

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

.service-details .service-sidebar .service-menu {
  background: var(--surface-color);
  padding: 0;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-menu h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white-color);
  background-color: color-mix(in srgb, var(--black-color), transparent 20%);
  padding: 15px 20px;
  border-radius: 10px 10px 0 0;
}

.service-details .service-sidebar .service-menu .menu-list {
  padding: 0 20px 20px 20px;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active {
  color: var(--accent-color);
  padding-left: 10px;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover i,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active i {
  color: var(--accent-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item i {
  margin-right: 12px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item span {
  font-weight: 500;
}

.service-details .service-sidebar .service-info {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-info .info-list .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-list {
  padding: 20px;
  border-left: 4px solid var(--accent-color);
  color:
    color-mix(in srgb, var(--default-color), transparent 60%);
  font-style: italic;
  background:
    color-mix(in srgb, var(--default-color), transparent 95%);
  margin-bottom: 25px;
}

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

.service-details .service-list ul li {
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

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

}

.service-details .service-list ul li span {
  display: flex;
  flex-direction: column;
}

.service-details .service-list ul li span strong {
  font-weight: 600;
  font-size: 16px;
}

.service-details .service-sidebar .service-info .info-list .info-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-info .info-list .info-item .info-label {
  font-weight: 500;
  color: var(--default-color);
}

.service-details .service-sidebar .service-info .info-list .info-item .info-value {
  font-weight: 600;
  color: var(--accent-color);
}

.service-details .service-sidebar .contact-card {
  background-color: color-mix(in srgb, var(--black-color), transparent 20%);
  padding: 20px;
  border-radius: 10px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content p {
  color: var(--white-color);
  opacity: .9;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info {
  margin-bottom: 25px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item i {
  margin-right: 10px;
  opacity: 0.8;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item span {
  font-size: 14px;
}

.service-details .service-sidebar .contact-card .contact-content .btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .contact-card .contact-content .btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .service-details .service-hero img {
    height: 250px;
  }

  .service-details .service-hero .service-badge {
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    font-size: 12px;
  }

  .service-details .service-content .service-header h2 {
    font-size: 24px;
  }

  .service-details .feature-item {
    padding: 15px !important;
  }

  .service-details .feature-item .feature-icon {
    width: 50px !important;
    height: 50px !important;
    margin-right: 15px !important;
  }

  .service-details .feature-item .feature-icon i {
    font-size: 20px !important;
  }


}



/* ---------------------------------------------- */
/* Responsive Styles */
/* ---------------------------------------------- */

@media (max-width:1366px) {
  .section-title h2 {
    font-size: 26px;
  }

  .who-we-are .who-we-are-content h2 {
    font-size: 32px;
  }

  .who-we-are .who-we-are-content h2:after {
    width: 150px;
  }

  .who-we-are .who-we-are-content p {
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.5;
  }

  .ac-qr {
    width: 100px;
    height: auto;
  }

  .who-we-are .features-list {
    margin-bottom: 20px;
    padding-left: 10px;
  }

  .who-we-are .features-list .feature-item span {

    font-size: 0.80rem;
  }

  .why-choose-us .features-content .features-list .feature-item .feature-text h4 {
    font-size: 16px;
  }

  .why-choose-us .features-content .features-list .feature-item .feature-text p {
    font-size: 0.90rem;
  }

  .ac-content h2 {
    font-size: 16px;
  }

  .ac-content p {
    font-size: 13px;
  }

  .fcs-content h3 {
    font-size: 24px;
  }

  .fcs-content p {
    font-size: 14px;
  }
}

@media (max-width:1179px) {
  .banner-hero .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.1rem;
    text-align: left;
  }

  .sb-content h2 {
    font-size: 16px;
  }

  .sb-content img {
    width: 70px;
  }

  .sb-content h2 {
    font-size: 16px;
    margin-top: 13px;
  }

  .section-title h2 {
    font-size: 22px;
    gap: 8px
  }

  .who-we-are .who-we-are-content h2 {
    font-size: 28px;
  }

  .who-we-are .who-we-are-content h2:after {
    width: 125px;
  }

  .why-choose-us .features-content .features-list .feature-item .feature-text p {
    font-size: 0.85rem;
  }

  .why-choose-us .section-title h2 {
    text-align: center;
  }

  .testimonials .testimonials-container .testimonial-item p {
    font-size: 13px;
    margin-bottom: 15px;

    line-height: 1.4;
  }

  .blog-post .card .card-body .card-title {
    font-size: 16px;
    margin-bottom: 0.65rem;
  }

  .blog-post .card .card-body .card-text {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .ac-qr {
    width: 70px;
    height: auto;
  }

  .download-app .app-card {
    padding: 15px;
  }

  .fcs-content h3 {
    font-size: 22px;
  }

  .footer h4 {
    font-size: 14px;
    padding-bottom: 8px;
  }

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

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

  section,
  .section {
    padding: 40px 0;
  }

  .inner-banner {
    padding: 20px 0;
  }

  .inner-banner .section-title p,
  .gdws-text {
    font-size: 13px;
  }

}

@media (max-width:992px) {
  .fcs-content {
    padding: 20px 40px 20px 30px;
    width: 68%;
  }

  .fcs-btn {
    font-size: 13px;
    padding: 12px 15px;
  }

  section,
  .section {
    padding: 30px 0;
  }

  .hero-text .input-group {
    width: 100%;
  }

  .why-choose-us .features-content .features-list {
    grid-template-columns: 1fr;
  }

  .why-choose-us .features-image {
    margin-top: 30px;
  }

  .why-choose-us .features-image .stats-card {
    width: 100%;
    padding: 20px;
    top: -10px;
    left: 0;
  }

  .why-choose-us .features-image .experience-badge {
    bottom: -10px;
    right: -10px;
    padding: 15px;
  }

  .call-us {
    position: fixed;
    right: 10px;
    top: 80px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 15px;
  }

  .faq .faq-container .faq-item {}

  .faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .inner-banner .section-title h2 {
    font-size: 22px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 18px;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 16px;
  }

  .inner-banner .section-title p,
  .gdws-text {
    font-size: 13px;
  }
}

@media (max-width:767px) {
  .banner-hero .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .fcs-bg {
    flex-direction: column;
    padding: 20px 0;
  }

  .fcs-content {
    padding: 20px;
    width: 90%;
    border-radius: 25px;
    margin-bottom: 20px;
    text-align: center;
  }

  .footer .footer-links {
    margin-bottom: 10px;
    margin-top: 30px;
  }

  .sb-content:before {
    display: none;
  }

  #progressbar li strong {
    display: none;
  }

  .booking-steps.login .auth-container {
    margin: 0;
  }

  #progressbar {
    margin-bottom: 0;
  }

  .inner-banner .section-title {
    flex-direction: column;
  }

  .inner-banner .section-title p,
  .gdws-text {
    font-size: 12px;
    margin-top: 10px;
  }

  .inner-banner .section-title h2 {
    justify-content: center;
    align-items: center;
  }

}

@media (max-width:576px) {}