  @charset "UTF-8";
  /*-----------------------------------------------------------------------------------

      CSS INDEX
      ==================================================
      01. Base (Reset, Body, Typography, etc.)
      02. Components
          - Header & Navigation
          - Footer Area
          - Buttons & Links
          - Cards & Wrappers
          - Preloader
          - Marquee & Sidebar
      03. Sections
          - Hero & Baner Sections
          - About Us Sections
          - Driving Courses & Services
          - Team & Instructors
          - Testimonials & Feedback
          - Projects & Portfolio
          - Blog & Details
          - Pricing & Plans
          - Contact & Forms
          - Common Page Sections (FAQ, Breadcrumb, etc.)

  -----------------------------------------------------------------------------------*/
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(0.875rem, 0.5vw + 0.75rem, 1rem);
    line-height: 1.5;
    color: #212529;
    background-color: #f8f9fa;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 1rem;
  }

  p {
    margin-bottom: 1rem;
  }

  a {
    color: #F3A319;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }

  .section-padding {
    padding: 7.5rem 0;
  }
  @media (max-width: 1399px) {
    .section-padding {
      padding: 6.25rem 0;
    }
  }
  @media (max-width: 992px) {
    .section-padding {
      padding: 5rem 0;
    }
  }
  @media (max-width: 767px) {
    .section-padding {
      padding: 3.75rem 0;
    }
  }

  .container-fluid {
    max-width: 1624px;
  }

  .container {
    max-width: 1344px;
  }

  .fix {
    overflow: hidden;
  }

  /*----------------------------------------*/
  /*  tw-anim-img reveal animation
  /*----------------------------------------*/
  .tw-clip-anim {
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    line-height: 0;
  }
  .tw-clip-anim .tw-anim-img {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: auto;
  }
  .tw-clip-anim .mask {
    background-size: cover;
    background-position: center;
    transform: scale(1.005);
    position: absolute;
    inset: 0;
    z-index: 2;
    transition: none;
  }

  button {
    border: none;
    outline: none;
    cursor: pointer;
  }

  .theme__btn {
    position: relative;
    padding: 20px 34px;
    background-color: #F3A319;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 2%;
    text-align: right;
    text-transform: uppercase;
    z-index: 9;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
  }
  @media (max-width: 1399px) {
    .theme__btn {
      padding: 15px 25px;
      font-size: 14px;
    }
  }
  .theme__btn-text {
    position: relative;
    z-index: 2;
  }
  .theme__btn i {
    position: relative;
    z-index: 2;
  }
  .theme__btn-shape {
    position: absolute;
    top: -6px;
    right: 0;
    z-index: 0;
  }
  .theme__btn:hover {
    background-color: #6c757d;
    color: #ffffff;
    text-decoration: none;
  }

  :root {
    --header-primary: #191825;
    --header-accent: #F3A319;
    --header-white: #ffffff;
    --header-text: #212529;
    --header-border: rgba(255, 255, 255, 0.12);
    --header-bg-sticky: #ffffff;
    --header-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  }

  .offcanvas-overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .offcanvas-overlay.overlay-open {
    opacity: 1;
    visibility: visible;
  }

  .side-info {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 100%;
    position: fixed;
    z-index: 1200;
    right: -100%;
    top: 0;
    width: 420px;
    overflow-y: auto;
    transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
  }
  @media (max-width: 576px) {
    .side-info {
      width: 100%;
    }
  }
  .side-info::-webkit-scrollbar {
    width: 4px;
  }
  .side-info::-webkit-scrollbar-thumb {
    background: rgba(0, 115, 230, 0.3);
    border-radius: 10px;
  }
  .side-info.info-open {
    right: 0;
  }

  .side-info-content {
    position: relative;
    min-height: 100%;
    padding-bottom: 20px;
  }

  .side-info-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    padding: 0;
    background-color: rgba(0, 115, 230, 0.08);
    color: var(--header-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 115, 230, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .side-info-close:hover {
    transform: rotate(90deg) scale(1.1);
    background-color: var(--header-accent);
    color: var(--header-white);
    border-color: var(--header-accent);
  }

  .offset-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.25rem;
    margin-bottom: 0.625rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .offset-logo a {
    display: inline-flex;
    align-items: center;
  }
  .offset-logo img {
    display: block;
    width: auto;
    max-width: 11rem;
    max-height: 3.5rem;
  }

  .offset-info-box {
    padding: 0.625rem 1.25rem;
    margin-bottom: 0.625rem;
  }
  .offset-info-box .title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: #121117;
    margin-bottom: 0.625rem;
  }
  .offset-info-box .text {
    font-size: 0.9375rem;
    color: #9DA6AE;
    line-height: 1.3;
    margin-bottom: 0;
  }

  .offset-widget-box {
    padding: 0.625rem 1.25rem;
    margin-bottom: 0.625rem;
  }
  .offset-widget-box .title {
    font-size: 1rem;
    font-weight: 700;
    color: #121117;
    margin-bottom: 0.9375rem;
    position: relative;
  }
  .offset-widget-box .title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 28px;
    height: 2px;
    background: #F3A319;
  }
  .offset-widget-box .contact-meta {
    margin-top: 0.9375rem;
  }
  .offset-widget-box .contact-item {
    margin-bottom: 0.5rem;
  }
  .offset-widget-box .contact-item a,
  .offset-widget-box .contact-item span.text {
    font-size: 0.9375rem;
    color: #9DA6AE;
    transition: color 0.3s ease;
  }
  .offset-widget-box .contact-item a:hover,
  .offset-widget-box .contact-item span.text:hover {
    color: #F3A319;
  }
  .offset-widget-box .social-links {
    display: flex;
    gap: 0.625rem;
    margin-top: 1.25rem;
  }
  .offset-widget-box .social-links a {
    width: 2.625rem;
    height: 2.625rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #121117;
    transition: all 0.3s ease;
  }
  .offset-widget-box .social-links a:hover {
    background-color: #F3A319;
    border-color: #F3A319;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 115, 230, 0.3);
  }

  .mobile-nav {
    padding-top: 0.625rem;
  }
  .mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mobile-nav__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .mobile-nav__item:last-child {
    border-bottom: none;
  }
  .mobile-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8125rem 0;
    font-family: "DM Sans", sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #121117;
    text-decoration: none;
    transition: color 0.25s ease;
  }
  .mobile-nav__link:hover {
    color: #F3A319;
  }
  .mobile-nav__arrow {
    width: 1.625rem;
    height: 1.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 0.6875rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  }
  .mobile-nav__arrow i {
    pointer-events: none;
  }
  .mobile-nav__item--has-children.open > .mobile-nav__link {
    color: #F3A319;
  }
  .mobile-nav__item--has-children.open > .mobile-nav__link .mobile-nav__arrow {
    transform: rotate(180deg);
    background: #F3A319;
    border-color: #F3A319;
    color: #fff;
  }
  .mobile-nav__sub {
    list-style: none;
    margin: 0;
    padding: 0 0 0.5rem 0.625rem;
    display: none;
  }
  .mobile-nav__sub li a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #9DA6AE;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .mobile-nav__sub li a:hover {
    background: rgba(0, 115, 230, 0.07);
    color: #F3A319;
  }

  .header-area-1 {
    position: relative;
    z-index: 1000;
    width: 100%;
  }
  .header-area-1 .container {
    max-width: 1440px;
  }

  .header-top-tier {
    background-color: #fff;
    position: relative;
    padding: 1.5625rem 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  }
  .header-top-tier__bg {
    position: absolute;
    top: 23%;
    left: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
  }
  @media (max-width: 1799px) {
    .header-top-tier__bg {
      display: none;
    }
  }
  .header-top-tier__bg img {
    height: 100%;
    width: 100%;
    display: block;
  }
  .header-top-tier__shape-left {
    position: absolute;
    top: 2%;
    left: 0;
    z-index: 1;
    height: 100%;
    display: none;
  }
  @media (max-width: 1399px) {
    .header-top-tier__shape-left {
      display: none;
    }
  }
  .header-top-tier__shape-left img {
    height: 100%;
    display: block;
  }
  .header-top-tier__shape-right {
    position: absolute;
    top: 2;
    right: 0;
    z-index: 1;
    height: 100%;
    display: none;
  }
  @media (max-width: 1399px) {
    .header-top-tier__shape-right {
      display: none;
    }
  }
  .header-top-tier__shape-right img {
    height: 100%;
    display: block;
  }
  .header-top-tier__inner {
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-top-tier__inner .header-logo {
    position: relative;
    z-index: 9;
  }

  .header-contact {
    display: flex;
    align-items: center;
    gap: 3.125rem;
    margin-right: -100px;
  }
  @media (max-width: 1399px) {
    .header-contact {
      gap: 1.25rem;
      margin-right: 0;
    }
  }
  .header-contact__item {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
  }
  .header-contact__icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #F3A319;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    font-size: 1rem;
  }
  .header-contact__info a {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #121117;
    transition: color 0.3s ease;
    text-decoration: none;
  }
  @media (max-width: 1399px) {
    .header-contact__info a {
      font-size: 0.9375rem;
    }
  }
  .header-contact__info a:hover {
    color: #F3A319;
  }

  .header-search__box {
    position: relative;
    display: flex;
    align-items: center;
    background: #f0f3f8;
    border-radius: 3.125rem;
    padding: 0.375rem 0.375rem 0.375rem 1.5625rem;
    min-width: 26.25rem;
  }
  .header-search__box .theme__btn-shape {
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 0;
  }
  .header-search__box input {
    border: none;
    background: transparent;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #121117;
    width: 100%;
    outline: none;
  }
  .header-search__box input::placeholder {
    color: #888;
  }
  .header-search__box i {
    color: #191825;
    font-size: 1.125rem;
    margin-right: 0.9375rem;
  }
  .header-search__box .theme__btn {
    padding: 13px 46px 13px 30px;
  }
  .header-search__box .theme__btn i {
    color: #ffffff;
    font-size: 1.125rem;
    margin-right: 0.9375rem;
  }

  .header-bottom-tier {
    background: linear-gradient(90deg, #F3A319 0%, #191825 66.83%);
    position: relative;
    z-index: 9;
  }
  .header-bottom-tier__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
  }
  .header-bottom-tier.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideInDown 0.6s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }

  .header-socials {
    display: flex;
    align-items: center;
    gap: 1.875rem;
  }
  .header-socials a {
    color: #fff;
    font-size: 1.125rem;
    transition: all 0.4s ease;
    text-decoration: none;
  }
  .header-socials a:hover {
    color: #F3A319;
    transform: translateY(-5px);
  }

  .header-nav .main-menu > ul {
    display: flex;
    align-items: center;
    gap: 3.3125rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  @media (max-width: 1399px) {
    .header-nav .main-menu > ul {
      gap: 1.875rem;
    }
  }
  .header-nav .main-menu > ul > li {
    position: relative;
  }
  .header-nav .main-menu > ul > li > a {
    position: relative;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 1.75rem 0;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
  }
  .header-nav .main-menu > ul > li > a::after {
    content: "";
    position: absolute;
    bottom: 1.125rem;
    left: 0;
    width: 0;
    height: 2px;
    background: #F3A319;
    transition: width 0.3s ease;
  }
  .header-nav .main-menu > ul > li:hover > a {
    color: #F3A319;
  }
  .header-nav .main-menu > ul > li:hover > a::after {
    width: 100%;
  }
  .header-nav .main-menu > ul > li.menu-item-has-children > a::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -16px;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.75rem;
  }

  ul.dp-menu {
    background-color: #ffffff;
    padding: 0.75rem 0;
    min-width: 15rem;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 100;
    transition: all 0.3s ease;
    border-radius: 0.625rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(0.9375rem);
    list-style: none;
    margin: 0;
  }
  ul.dp-menu li {
    padding: 0 0.625rem;
  }
  ul.dp-menu li a {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #121117;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
  }
  ul.dp-menu li a:hover {
    background: rgba(0, 123, 255, 0.08);
    color: #F3A319;
  }

  .main-menu > ul > li:hover > ul.dp-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .header-auth a {
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .header-auth a:hover {
    color: #F3A319;
  }

  .side-toggle {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.5rem;
  }
  .side-toggle:hover {
    background: #F3A319;
    border-color: #F3A319;
    transform: rotate(90deg);
  }

  @media (max-width: 991px) {
    .header-top-tier {
      display: none;
    }
    .header-bottom-tier {
      background: #fff;
      padding: 0.9375rem 0;
    }
    .header-bottom-tier::before {
      display: none;
    }
    .header-bottom-tier__inner {
      height: auto;
    }
    .header-socials,
    .header-nav,
    .header-auth {
      display: none;
    }
    .header-logo a img {
      height: 50px;
    }
    .side-toggle {
      color: #121117;
      border-color: rgba(0, 0, 0, 0.1);
    }
  }
  @keyframes slideInDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  .split-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: inherit;
  }
  .split-word__inner {
    display: inline-block;
    line-height: inherit;
  }

  .header-area-2 {
    position: relative;
    z-index: 1000;
  }
  .header-area-2 .header2-top {
    color: #fff;
    background-color: #F3A319;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    margin-bottom: 0.875rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
  @media (max-width: 1399px) {
    .header-area-2 .header2-top {
      border-top-left-radius: 40px;
      border-top-right-radius: 40px;
    }
  }
  .header-area-2 .header2-top.header-sticky.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
    background: var(--header-accent);
    animation: slideInDown 0.5s ease-out;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  }
  .header-area-2 .header2-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
    position: relative;
    z-index: 9999;
  }
  .header-area-2 .header2-top__socials {
    display: flex;
    gap: 1.25rem;
    flex-shrink: 0;
    margin-left: auto;
  }
  .header-area-2 .header2-top__socials a {
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .header-area-2 .header2-top__socials a:hover {
    color: #191825;
  }
  .header-area-2 .header2-top__auth a {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
  }
  .header-area-2 .header2-top__auth a:hover {
    opacity: 0.8;
  }
  .header-area-2 .header2-top__contacts {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    min-width: 0;
  }
  .header-area-2 .header2-top__contact-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
  }
  .header-area-2 .header2-top__contact-item .icon {
    width: 20px;
    height: 20px;
    color: #fff;
    border-radius: 4px;
    background: rgba(25, 24, 37, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-area-2 .header2-top__contact-item .icon i {
    color: #fff;
    font-size: 12px;
  }
  .header-area-2 .header2-top__contact-item .text a {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  .header-area-2 .header2-top__contact-item .text a:hover {
    color: #191825;
  }
  .header-area-2 .header2-top .main-menu > ul {
    display: flex;
    gap: 3.3125rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  @media (max-width: 1399px) {
    .header-area-2 .header2-top .main-menu > ul {
      gap: 1.875rem;
    }
  }
  .header-area-2 .header2-top .main-menu > ul > li {
    position: relative;
  }
  .header-area-2 .header2-top .main-menu > ul > li > a {
    display: inline-flex;
    color: #fff;
    padding: 1.375rem 0;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .header-area-2 .header2-top .main-menu > ul > li > a:hover {
    color: #191825;
  }
  .header-area-2 .header2-top .main-menu > ul > li.menu-item-has-children > a::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -16px;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.75rem;
  }
  .header-area-2 .header2-top .main-menu > ul > li:hover > ul.dp-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header-area-2 .header2-top .main-menu .dp-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
  }
  .header-area-2 .header2-top .main-menu .dp-menu li {
    padding: 0 25px;
    margin-bottom: 10px;
  }
  .header-area-2 .header2-top .main-menu .dp-menu li:last-child {
    margin-bottom: 0;
  }
  .header-area-2 .header2-top .main-menu .dp-menu li a {
    color: #666;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .header-area-2 .header2-top .main-menu .dp-menu li a:hover {
    color: var(--header-accent);
    padding-left: 5px;
  }
  .header-area-2 .header2-bottom {
    position: relative;
    z-index: 5;
    transition: all 0.3s ease;
  }
  .header-area-2 .header2-bottom:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: #ffffff;
    z-index: -1;
  }
  @media (max-width: 1899px) {
    .header-area-2 .header2-bottom:before {
      display: none;
    }
  }
  .header-area-2 .header2-bottom__shape {
    position: absolute;
    top: 8%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    z-index: -1;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  @media (max-width: 1699px) {
    .header-area-2 .header2-bottom__shape {
      display: none;
    }
  }
  .header-area-2 .header2-bottom__shape img {
    width: 100%;
    height: 100%;
    display: block;
  }
  @media (max-width: 1399px) {
    .header-area-2 .header2-bottom__shape {
      display: none;
    }
  }
  .header-area-2 .header2-bottom.header-sticky.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 0;
    padding: 0.625rem 0;
    background: #fff;
    animation: slideInDown 0.5s ease-out;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  }
  .header-area-2 .header2-bottom.header-sticky.sticky .header2-bottom__pill {
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    color: #191825;
  }
  .header-area-2 .header2-bottom.header-sticky.sticky .header2-bottom__contact-item .text a {
    color: #191825;
  }
  .header-area-2 .header2-bottom.header-sticky.sticky .header2-bottom__nav .main-menu > ul > li > a {
    color: #191825;
  }
  .header-area-2 .header2-bottom__pill {
    background-color: var(--header-primary);
    color: #fff;
    border-radius: 100px;
    padding: 0.75rem 2.8125rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  .header-area-2 .header2-bottom__logo {
    flex-shrink: 0;
  }
  .header-area-2 .header2-bottom__nav {
    flex: 1 1 auto;
    min-width: 0;
  }
  .header-area-2 .header2-bottom__nav .main-menu > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .header-area-2 .header2-bottom__nav .main-menu > ul > li {
    position: relative;
  }
  .header-area-2 .header2-bottom__nav .main-menu > ul > li > a {
    display: inline-flex;
    color: #fff;
    padding: 1rem 0;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  .header-area-2 .header2-bottom__nav .main-menu > ul > li > a:hover {
    color: var(--header-accent);
  }
  .header-area-2 .header2-bottom__nav .main-menu > ul > li.menu-item-has-children > a::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -16px;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.75rem;
  }
  .header-area-2 .header2-bottom__nav .main-menu > ul > li:hover > ul.dp-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header-area-2 .header2-bottom__nav .main-menu .dp-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
  }
  .header-area-2 .header2-bottom__nav .main-menu .dp-menu li {
    padding: 0 25px;
    margin-bottom: 10px;
  }
  .header-area-2 .header2-bottom__nav .main-menu .dp-menu li:last-child {
    margin-bottom: 0;
  }
  .header-area-2 .header2-bottom__nav .main-menu .dp-menu li a {
    color: #666;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .header-area-2 .header2-bottom__nav .main-menu .dp-menu li a:hover {
    color: var(--header-accent);
    padding-left: 5px;
  }
  .header-area-2 .header2-bottom__contacts {
    display: flex;
    gap: 2.5rem;
  }
  .header-area-2 .header2-bottom__contact-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
  }
  .header-area-2 .header2-bottom__contact-item .icon {
    width: 20px;
    height: 20px;
    color: #191825;
    border-radius: 4px;
    background: #F3A319;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-area-2 .header2-bottom__contact-item .icon i {
    color: #191825;
    font-size: 12px;
  }
  .header-area-2 .header2-bottom__contact-item .text a {
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .header-area-2 .header2-bottom__contact-item .text a:hover {
    color: var(--header-accent);
  }
  .header-area-2 .header2-bottom__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    flex-shrink: 0;
  }
  .header-area-2 .header2-bottom .header-search__box {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    padding: 8px 8px 8px 25px;
    display: flex;
    align-items: center;
    min-width: 20rem;
  }
  .header-area-2 .header2-bottom .header-search__box .theme__btn-shape {
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 0;
  }
  @media (max-width: 1399px) {
    .header-area-2 .header2-bottom .header-search__box {
      display: none;
    }
  }
  .header-area-2 .header2-bottom .header-search__box i {
    color: #888;
    margin-right: 10px;
  }
  .header-area-2 .header2-bottom .header-search__box input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 1rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0%;
    color: #878C8F;
  }
  .header-area-2 .header2-bottom .header-search__box input::placeholder {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #878C8F;
  }
  .header-area-2 .header2-bottom .header-search__box .theme__btn {
    padding: 14px 50px 14px 20px;
    border-radius: 100px;
    background: var(--header-accent);
    min-width: auto;
    height: auto;
  }
  .header-area-2 .header2-bottom .header-search__box .theme__btn .theme__btn-text {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 2%;
    text-align: right;
    text-transform: uppercase;
    color: #fff;
  }
  .header-area-2 .header2-bottom .header-search__box .theme__btn i {
    color: #fff;
    font-size: 12px;
    margin: 0 0 0 0px;
  }
  .header-area-2 .header2-bottom .header-cart-btn {
    width: 3.25rem;
    height: 3.25rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  @media (max-width: 992px) {
    .header-area-2 .header2-bottom .header-cart-btn {
      display: none;
    }
  }
  .header-area-2 .header2-bottom .header-cart-btn:hover {
    background: var(--header-accent);
    transform: translateY(-3px);
    color: #fff;
  }

  @media (max-width: 991px) {
    .header-area-2 {
      margin-top: 0;
    }
    .header-area-2 .header2-bottom {
      margin-top: 0;
      padding: 15px 0;
      background: #011424;
    }
    .header-area-2 .header2-bottom__pill {
      background: transparent;
      padding: 0;
      box-shadow: none;
      border-radius: 0;
      color: #191825;
    }
    .header-area-2 .header2-bottom .header-cart-btn {
      border: 1px solid #eee;
      color: #191825;
    }
    .header-area-2 .header2-bottom .side-toggle {
      color: #ffffff;
      border-color: #eee;
    }
  }
  @media (max-width: 1399px) {
    .header-area-2 .header2-top__contacts {
      gap: 1rem;
    }
    .header-area-2 .header2-top__contact-item .text a {
      font-size: 0.8125rem;
    }
    .header-area-2 .header2-bottom__pill {
      padding-left: 2rem;
      padding-right: 2rem;
    }
    .header-area-2 .header2-bottom__nav .main-menu > ul {
      gap: 1.5rem;
    }
    .header-area-2 .header2-bottom__nav .main-menu > ul > li > a {
      font-size: 0.8125rem;
    }
  }
  @media (max-width: 1199px) {
    .header-area-2 .header2-top__inner {
      gap: 1rem;
    }
    .header-area-2 .header2-top__contacts {
      gap: 0.75rem;
    }
    .header-area-2 .header2-top__contact-item .text a {
      font-size: 0.75rem;
    }
    .header-area-2 .header2-bottom__pill {
      gap: 1.25rem;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
    .header-area-2 .header2-bottom__nav .main-menu > ul {
      gap: 1rem;
    }
    .header-area-2 .header2-bottom__nav .main-menu > ul > li > a {
      font-size: 0.75rem;
    }
  }
  .vc-desktop-whatsapp {
    display: none;
  }
  @media (min-width: 992px) {
    .vc-desktop-whatsapp {
      position: fixed;
      right: 1.75rem;
      bottom: 1.75rem;
      z-index: 1100;
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #25D366, #128C4A);
      color: #ffffff;
      box-shadow: 0 16px 34px rgba(18, 140, 74, 0.34);
      text-decoration: none;
      transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    }
    .vc-desktop-whatsapp i {
      font-size: 2rem;
      line-height: 1;
    }
    .vc-desktop-whatsapp:hover,
    .vc-desktop-whatsapp:focus-visible {
      color: #ffffff;
      text-decoration: none;
      transform: translateY(-4px) scale(1.04);
      box-shadow: 0 20px 40px rgba(18, 140, 74, 0.42);
      filter: saturate(1.05);
    }
  }
  @media (max-width: 991.98px) {
    .vc-desktop-whatsapp {
      display: none !important;
    }
  }
  .card {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  .card__title {
    font-size: clamp(1.1rem, 1vw + 1rem, 1.25rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .card__text {
    color: #6c757d;
    margin-bottom: 0;
  }

  /* ===========================
    Footer 1
    =========================== */
  .site-footer {
    background-color: #191825;
    font-family: "DM Sans", sans-serif;
    padding-top: 7.5rem;
    padding-bottom: 0;
  }
  @media (max-width: 1199px) {
    .site-footer {
      padding-top: 5rem;
    }
  }
  .site-footer__top {
    padding-bottom: 3.75rem;
  }
  @media (max-width: 767px) {
    .site-footer__top {
      padding-bottom: 1.875rem;
    }
  }
  .site-footer__heading {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw + 1rem, 60px);
    line-height: 4.375rem;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: #ffffff;
    margin-bottom: 1.5625rem;
  }
  @media (max-width: 1199px) {
    .site-footer__heading {
      font-size: 40px;
      line-height: 1.3;
    }
  }
  @media (max-width: 767px) {
    .site-footer__heading {
      font-size: 24px;
      line-height: 34px;
      margin-bottom: 0.625rem;
    }
  }
  .site-footer__desc {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 0.5vw + 0.75rem, 16px);
    line-height: 1.75rem;
    letter-spacing: 0;
    color: #b0b3c0;
    max-width: 20.4375rem;
    margin-bottom: 0;
  }
  @media (max-width: 1199px) {
    .site-footer__desc {
      font-size: 14px;
      line-height: 1.3;
    }
  }
  .site-footer__widget-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2vw + 0.5rem, 24px);
    line-height: 100%;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: #ffffff;
    margin-bottom: 1.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
  }
  @media (max-width: 767px) {
    .site-footer__widget-title {
      font-size: 18px;
      line-height: 28px;
      margin-bottom: 0.625rem;
    }
  }
  .site-footer__widget-title::after {
    content: "";
    display: inline-block;
    width: 2.1875rem;
    height: 0.3125rem;
    background-color: #F3A319;
    border-radius: 0.125rem;
  }
  .site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .site-footer__link-item {
    margin-bottom: 0;
  }
  .site-footer__link {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 2.5rem;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: #b0b3c0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  @media (max-width: 1199px) {
    .site-footer__link {
      font-size: 14px;
      line-height: 34px;
    }
  }
  .site-footer__link::before {
    content: ">>";
    margin-right: 0.5rem;
    color: #b0b3c0;
    transition: color 0.3s ease;
  }
  .site-footer__link:hover {
    color: #F3A319;
    text-decoration: none;
  }
  .site-footer__link:hover::before {
    color: #F3A319;
  }
  .site-footer__gallery {
    display: flex;
    gap: 0.625rem;
    margin-bottom: 1.875rem;
  }
  .site-footer__gallery-img {
    width: 5rem;
    height: 3.75rem;
    object-fit: cover;
    border-radius: 0.375rem;
  }
  @media (max-width: 1199px) {
    .site-footer__gallery-img {
      width: 65px;
    }
  }
  .site-footer__newsletter {
    position: relative;
    max-width: 18.75rem;
  }
  @media (min-width: 1200px) {
    .site-footer__newsletter {
      width: calc(100% + 2.5rem);
      max-width: none;
    }
  }
  .site-footer__newsletter-form {
    position: relative;
  }
  .site-footer__newsletter-hp {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }
  .site-footer__newsletter-input {
    width: 100%;
    padding: 0.875rem 3.75rem 0.875rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 0.0625rem solid rgba(255, 255, 255, 0.1);
    border-radius: 6.25rem;
    color: #b0b3c0;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(14px, 0.5vw + 0.75rem, 16px);
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 5%;
    text-transform: uppercase;
    outline: none;
    transition: border-color 0.3s ease;
  }
  @media (max-width: 1099px) {
    .site-footer__newsletter-input {
      padding: 0.4375rem 2.5rem 0.4375rem 1.25rem;
      font-size: 14px;
    }
  }
  .site-footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.0625rem;
    text-transform: uppercase;
  }
  .site-footer__newsletter-input:focus {
    border-color: #F3A319;
  }
  .site-footer__newsletter-input--invalid {
    border-color: #ff8f8f;
  }
  .site-footer__newsletter-btn {
    position: absolute;
    right: 0.3125rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3.625rem;
    height: 3.625rem;
    border-radius: 50%;
    background-color: #F3A319;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }
  @media (max-width: 1099px) {
    .site-footer__newsletter-btn {
      width: 2.5rem;
      height: 2.5rem;
    }
  }
  .site-footer__newsletter-btn i {
    font-size: clamp(14px, 0.5vw + 0.75rem, 16px);
    color: #ffffff;
  }
  .site-footer__newsletter-btn:hover {
    background-color: rgb(0, 89.5, 179);
  }
  .site-footer__newsletter-btn:disabled {
    opacity: 0.72;
    cursor: wait;
  }
  .site-footer__newsletter-message {
    margin: 0.75rem 0 0;
    font-family: "DM Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.45;
  }
  .site-footer__newsletter-message--success {
    color: #4ade80;
  }
  .site-footer__newsletter-message--error {
    color: #ff9d9d;
  }
  .site-footer__divider {
    border: none;
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
    margin: 0;
  }
  .site-footer__bottom {
    padding: 3.125rem 0 3.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3019607843);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.875rem;
  }
  @media (max-width: 1199px) {
    .site-footer__bottom {
      padding: 30px 0;
    }
  }
  @media (max-width: 991px) {
    .site-footer__bottom {
      justify-content: center;
      text-align: center;
      flex-direction: column;
      padding: 1.875rem 0;
      gap: 20px;
    }
  }
  .site-footer__contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
  }
  @media (max-width: 991px) {
    .site-footer__contact-info {
      justify-content: center;
      gap: 0.625rem;
    }
  }
  .site-footer__logo {
    display: flex;
    align-items: center;
  }
  .site-footer__logo img {
    height: auto;
    width: auto;
  }
  .site-footer__contact {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #b0b3c0;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  @media (max-width: 1199px) {
    .site-footer__contact {
      font-size: 14px;
    }
  }
  .site-footer__contact:hover {
    color: #F3A319;
    text-decoration: none;
  }
  .site-footer__contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 4px;
    background-color: #F3A319;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .site-footer__contact-icon i {
    font-size: 12px;
    color: #000;
  }
  .site-footer__socials {
    display: flex;
    align-items: center;
    gap: 0.625rem;
  }
  .site-footer__social-link {
    width: 2.625rem;
    height: 2.625rem;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }
  .site-footer__social-link i {
    font-size: clamp(14px, 0.5vw + 0.75rem, 16px);
    color: #ffffff;
    transition: color 0.3s ease;
  }
  .site-footer__social-link:hover {
    background-color: #F3A319;
  }
  .site-footer__copyright-bar {
    background-color: #2B2A36;
    padding: 1.875rem 0;
    text-align: center;
  }
  @media (max-width: 991px) {
    .site-footer__copyright-bar {
      padding: 1.25rem 0;
    }
  }
  .site-footer__copyright {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ACB4BC;
    margin: 0;
  }
  @media (max-width: 1199px) {
    .site-footer__copyright {
      font-size: 14px;
    }
  }

  @media (max-width: 767.98px) {
    .site-footer {
      padding-top: 3.125rem;
    }
    .site-footer__desc {
      max-width: 100%;
      margin-bottom: 0.625rem;
    }
    .site-footer__widget-title {
      margin-top: 0.3125rem;
    }
    .site-footer__gallery {
      justify-content: flex-start;
    }
    .site-footer__socials {
      justify-content: flex-start;
      margin-top: 1.25rem;
    }
  }
  @media (max-width: 767.98px) and (max-width: 991px) {
    .site-footer__socials {
      justify-content: center;
      margin-top: 0.625rem;
    }
  }
  @media (max-width: 767.98px) {
    .site-footer__logo {
      margin-bottom: 1.25rem;
    }
  }
  @media (max-width: 767.98px) and (max-width: 991px) {
    .site-footer__logo {
      margin-bottom: 0.625rem;
    }
  }

  .vc-mobile-bottom-bar {
    display: none;
  }
  @media (max-width: 767.98px) {
    body {
      padding-bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
    }
    .vc-mobile-bottom-bar {
      position: fixed;
      left: 0.75rem;
      right: 0.75rem;
      bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
      z-index: 1090;
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 0.375rem;
      padding: 0.5rem;
      border-radius: 1.375rem;
      background: linear-gradient(135deg, rgba(25, 24, 37, 0.96), rgba(43, 42, 54, 0.96));
      border: 1px solid rgba(243, 163, 25, 0.2);
      box-shadow: 0 18px 36px rgba(13, 17, 25, 0.24);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }
    .vc-mobile-bottom-bar__item {
      min-width: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.375rem;
      padding: 0.375rem 0.1875rem;
      border-radius: 1rem;
      color: rgba(255, 255, 255, 0.88);
      text-decoration: none;
      transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }
    .vc-mobile-bottom-bar__item:hover,
    .vc-mobile-bottom-bar__item:focus-visible {
      color: #ffffff;
      text-decoration: none;
      background-color: rgba(255, 255, 255, 0.08);
      transform: translateY(-2px);
    }
    .vc-mobile-bottom-bar__item.is-active {
      background-color: rgba(243, 163, 25, 0.16);
      color: #ffffff;
    }
    .vc-mobile-bottom-bar__icon {
      width: 2.375rem;
      height: 2.375rem;
      border-radius: 0.875rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.1);
      color: #F3A319;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
      transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }
    .vc-mobile-bottom-bar__item:hover .vc-mobile-bottom-bar__icon,
    .vc-mobile-bottom-bar__item:focus-visible .vc-mobile-bottom-bar__icon,
    .vc-mobile-bottom-bar__item.is-active .vc-mobile-bottom-bar__icon {
      background: #F3A319;
      color: #191825;
      transform: translateY(-1px);
    }
    .vc-mobile-bottom-bar__item[data-action="mail"] .vc-mobile-bottom-bar__icon {
      color: #ffd488;
    }
    .vc-mobile-bottom-bar__item[data-action="whatsapp"] .vc-mobile-bottom-bar__icon {
      color: #ffe5b4;
    }
    .vc-mobile-bottom-bar__item[data-action="contact"] .vc-mobile-bottom-bar__icon {
      color: #f8c15b;
    }
    .vc-mobile-bottom-bar__item--featured .vc-mobile-bottom-bar__icon {
      background: #F3A319;
      color: #191825;
    }
    .vc-mobile-bottom-bar__item--featured {
      background: linear-gradient(180deg, rgba(243, 163, 25, 0.18), rgba(243, 163, 25, 0.1));
    }
    .vc-mobile-bottom-bar__label {
      max-width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-size: 0.625rem;
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }
  }
  /* ===========================
    Blog Section
    =========================== */
  .blog-section {
    padding: 7.5rem 0;
    background-color: #ffffff;
  }

  .section-top {
    text-align: center;
    margin-bottom: 3.125rem;
  }
  @media (max-width: 991.98px) {
    .section-top {
      margin-bottom: 1.875rem;
    }
  }
  .section-top__subtitle {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #F3A319;
    margin-bottom: 0.625rem;
    display: block;
  }
  @media (max-width: 991.98px) {
    .section-top__subtitle {
      font-size: 14px;
      margin-bottom: 5px;
    }
  }
  .section-top__subtitle .text {
    color: #9DA6AE;
  }
  .section-top__subtitle.dark span {
    color: #121117;
  }
  .section-top__title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 130%;
    letter-spacing: -2%;
    color: #121117;
    margin-bottom: 0;
  }
  @media (max-width: 1399px) {
    .section-top__title {
      font-size: 35px;
    }
  }
  @media (max-width: 992px) {
    .section-top__title {
      font-size: 32px;
    }
    .section-top__title br {
      display: none;
    }
  }
  .section-top__description {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 0.5vw + 0.75rem, 16px);
    line-height: 28px;
    letter-spacing: 0%;
    color: #9DA6AE;
  }

  .blog-card {
    margin-bottom: 1.875rem;
  }
  .blog-card__image-box {
    position: relative;
    border-radius: 0.625rem;
    overflow: hidden;
    margin-bottom: 1.5625rem;
  }
  .blog-card__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }
  .blog-card:hover .blog-card__image {
    transform: scale(1.1);
  }
  .blog-card__date {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    width: 4.0625rem;
    height: 5.625rem;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  .blog-card__date span {
    display: block;
    color: #F3A319;
    line-height: 1.375rem;
    letter-spacing: -0.02em;
    text-align: center;
  }
  .blog-card__date-day {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2vw + 0.5rem, 24px);
  }
  .blog-card__date-month {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 0.5vw + 0.75rem, 16px);
  }
  .blog-card__content {
    padding: 0;
  }
  .blog-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.9375rem;
  }
  .blog-card__author {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 0.5vw + 0.75rem, 16px);
    line-height: 1.625rem;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .blog-card__author i {
    color: #F3A319;
  }
  .blog-card__title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 2vw + 1rem, 26px);
    line-height: 2.25rem;
    letter-spacing: -0.01em;
    color: #121117;
    text-transform: capitalize;
    margin-bottom: 1.25rem;
  }
  .blog-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .blog-card__title a:hover {
    color: #F3A319;
  }
  .blog-card__link {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 0.5vw + 0.75rem, 16px);
    line-height: 1.625rem;
    color: #121117;
    text-decoration: none;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition: color 0.3s ease;
  }
  .blog-card__link i {
    font-size: clamp(12px, 0.5vw + 0.75rem, 14px);
    transition: transform 0.3s ease;
  }
  .blog-card__link:hover {
    color: #F3A319;
  }
  .blog-card__link:hover i {
    transform: translateX(5px);
  }

  @media (max-width: 991.98px) {
    .blog-section {
      padding: 5rem 0;
    }
  }
  @media (max-width: 767.98px) {
    .blog-section {
      padding: 3.75rem 0;
    }
  }
  .marquee1 {
    background-color: #F3A319;
    padding: 3.75rem 0;
    overflow: hidden;
    position: relative;
  }
  .marquee1__wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 5rem;
  }
  .marquee1__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: 5rem;
    animation: marquee-left 30s linear infinite;
  }
  .marquee1__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .marquee1__logo img {
    max-width: 11.25rem;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  .marquee1__logo img:hover {
    opacity: 1;
  }

  @keyframes marquee-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-100% - 5rem));
    }
  }
  @media (max-width: 991px) {
    .marquee1 {
      padding: 2.5rem 0;
    }
    .marquee1__wrapper, .marquee1__content {
      gap: 3.125rem;
    }
    .marquee1__logo img {
      max-width: 8.75rem;
    }
  }
  @media (max-width: 575px) {
    .marquee1 {
      padding: 1.875rem 0;
    }
    .marquee1__wrapper, .marquee1__content {
      gap: 1.875rem;
    }
    .marquee1__logo img {
      max-width: 5rem;
    }
  }
  .marquee3 {
    background-color: transparent;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  .marquee3__wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 5rem;
  }
  .marquee3__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: 5rem;
    animation: marquee-left 30s linear infinite;
  }
  .marquee3__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .marquee3__logo img {
    height: auto;
    display: block;
    transition: all 0.3s ease;
  }

  @media (max-width: 991px) {
    .marquee3 {
      padding: 3.75rem 0 2.5rem;
    }
    .marquee3__wrapper, .marquee3__content {
      gap: 3.125rem;
    }
  }
  @media (max-width: 991px) and (max-width: 575px) {
    .marquee3__wrapper, .marquee3__content {
      gap: 1.25rem;
    }
  }
  @media (max-width: 991px) {
    .marquee3__logo img {
      max-width: 6.25rem;
    }
  }
  @media (max-width: 575px) {
    .marquee3 {
      padding: 2.5rem 0 1.875rem;
    }
    .marquee3__wrapper, .marquee3__content {
      gap: 1.875rem;
    }
    .marquee3__logo img {
      max-width: 5rem;
    }
  }
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #191825;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
  }
  .preloader__content {
    position: relative;
    text-align: center;
  }
  .preloader__spinner {
    width: 3.75rem;
    height: 3.75rem;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #F3A319;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    animation: spin 1s linear infinite;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .preloader__text {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2vw + 0.5rem, 24px);
    letter-spacing: 0.125rem;
    color: #fff;
    text-transform: uppercase;
    display: block;
    opacity: 0.8;
  }

  .mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 20rem;
    height: 100%;
    background-color: #191825;
    z-index: 10001;
    transition: left 0.5s #F3A319;
    padding: 2.5rem 1.25rem;
    box-shadow: 0.3125rem 0 0.9375rem rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
  }
  .mobile-sidebar.active {
    left: 0;
  }
  .mobile-sidebar__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: clamp(18px, 2vw + 0.5rem, 24px);
    color: #fff;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: transform 0.3s ease;
  }
  .mobile-sidebar__close:hover {
    transform: rotate(90deg);
    color: #F3A319;
  }
  .mobile-sidebar__logo {
    margin-bottom: 2.5rem;
  }
  .mobile-sidebar__logo img {
    max-width: 9.375rem;
  }
  .mobile-sidebar__nav {
    flex-grow: 1;
  }
  .mobile-sidebar__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-sidebar__item {
    margin-bottom: 0.9375rem;
  }
  .mobile-sidebar__link {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: clamp(15px, 1vw + 1rem, 18px);
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }
  .mobile-sidebar__link:hover {
    color: #F3A319;
    padding-left: 0.625rem;
    text-decoration: none;
  }
  .mobile-sidebar__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .mobile-sidebar__overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .service-section {
    background-color: #fff;
  }

  .service-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    height: 28.125rem;
    transition: transform 0.3s ease;
  }
  .service-card:hover {
    transform: translateY(-0.625rem);
  }
  .service-card:hover .service-card__image {
    transform: scale(1.1);
  }
  .service-card__image-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .service-card__image-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  }
  .service-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .service-card__content-wrapper {
    position: absolute;
    bottom: 1.875rem;
    left: 30px;
    right: 53px;
    width: 90%;
    z-index: 2;
  }
  @media (max-width: 1024px) {
    .service-card__content-wrapper {
      left: 23px;
    }
  }
  @media (max-width: 767px) {
    .service-card__content-wrapper {
      left: 7%;
    }
  }
  .service-card__content {
    background-color: #fff;
    padding: 1.25rem 1.875rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
    margin-right: 33px;
  }
  .service-card__info {
    flex: 1;
  }
  .service-card__subtitle {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    margin-bottom: 0.3125rem;
    display: block;
  }
  .service-card__title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(15px, 1vw + 1rem, 18px);
    color: #191825;
    margin: 0;
    text-transform: capitalize;
  }
  .service-card__btn {
    width: 4.375rem;
    height: 3rem;
    background-color: #F3A319;
    color: #fff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-right: -55px;
  }
  .service-card__btn:hover {
    background-color: #191825;
    color: #fff;
  }
  .service-card__btn i {
    font-size: clamp(14px, 0.5vw + 0.75rem, 16px);
  }

  .service-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
    margin-bottom: -0.375rem;
  }
  .service-slider__pagination {
    position: static !important;
    width: auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.125rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(15px, 1vw + 1rem, 18px);
    color: #191825;
  }
  .service-slider__pagination .swiper-pagination-bullet {
    background: none;
    opacity: 1;
    width: auto;
    height: auto;
    border-radius: 0;
    margin: 0 !important;
    transition: color 0.3s ease;
  }
  .service-slider__pagination .swiper-pagination-bullet-active {
    color: #F3A319;
  }
  .service-slider__pagination .swiper-pagination-bullet:nth-child(n+4) {
    display: none !important;
  }
  .service-slider__prev, .service-slider__next {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    color: #6c757d !important;
    font-size: clamp(18px, 2vw + 0.5rem, 24px) !important;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  .service-slider__prev:after, .service-slider__next:after {
    display: none;
  }
  .service-slider__prev:hover, .service-slider__next:hover {
    color: #F3A319 !important;
  }
  .service-slider .swiper-pagination-bullet-custom {
    padding: 0 0.3125rem;
    cursor: pointer;
  }
  @media (max-width: 1199px) {
    .service-slider .swiper-pagination-bullet-custom {
      font-size: 0.875rem;
    }
  }
  @media (max-width: 991px) {
    .service-slider .swiper-pagination-bullet-custom {
      font-size: 0.75rem;
    }
  }

  /*----------------------------------------
      PAGINATION STYLE
  ------------------------------------------*/
  .global__pagination {
    margin-top: 3.75rem;
    background: #eff3fa;
    padding: 0.625rem;
    border-radius: 3.125rem;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
  }
  @media (max-width: 767px) {
    .global__pagination {
      gap: 10px;
      margin-top: 15px;
    }
  }
  .global__pagination .pg-btn {
    background: #fff;
    padding: 0.9375rem 3.125rem 0.9375rem 0.625rem;
    border-radius: 2.5rem;
    color: #121117;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    transition: all 0.3s ease;
    font-size: 1.0625rem;
  }
  @media (max-width: 767px) {
    .global__pagination .pg-btn {
      font-size: 0.875rem;
      padding: 0.3125rem 0.625rem 0.3125rem 0.3125rem;
      gap: 5px;
    }
  }
  .global__pagination .pg-btn .pg-icon {
    width: 5rem;
    height: 3.125rem;
    background: #1c1b21;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 1.125rem;
    transition: all 0.3s ease;
  }
  @media (max-width: 767px) {
    .global__pagination .pg-btn .pg-icon {
      font-size: 0.875rem;
      width: 2.5rem;
      height: 1.875rem;
    }
  }
  .global__pagination .pg-btn--next {
    padding: 0.9375rem 0.625rem 0.9375rem 3.125rem;
  }
  @media (max-width: 767px) {
    .global__pagination .pg-btn--next {
      padding: 0.3125rem 0.3125rem 0.3125rem 0.625rem;
    }
  }
  .global__pagination .pg-btn--next .pg-icon {
    background: #F3A319;
  }
  .global__pagination .pg-btn:hover {
    background: #F3A319;
    color: #fff;
  }
  .global__pagination .pg-btn:hover .pg-icon {
    background: #fff;
    color: #F3A319;
  }

  .hero1 {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 1399px) {
    .hero1 {
      padding: 50px 0 60px;
    }
  }
  .hero1__content {
    position: relative;
    z-index: 1;
    max-width: 570px;
  }
  .hero1__subtitle {
    padding: 15px 32px;
    background-color: #ffffff;
    border-radius: 50px;
    display: inline-flex;
    margin-bottom: 25px;
  }
  @media (max-width: 1399px) {
    .hero1__subtitle {
      margin-bottom: 10px;
    }
  }
  @media (max-width: 767px) {
    .hero1__subtitle {
      padding: 10px 20px;
      margin-bottom: 15px;
    }
  }
  .hero1__subtitle span {
    position: relative;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 0.5vw + 0.75rem, 16px);
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #F3A319;
    margin-left: 60px;
    display: inline-flex;
  }
  .hero1__subtitle span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    width: 40px;
    height: 6px;
    background-color: #191825;
    border-radius: 50px;
  }
  .hero1__title {
    font-family: "DM Sans", sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 5vw + 1rem, 80px);
    line-height: 1.1;
    letter-spacing: 0%;
    color: #121117;
    margin-bottom: 30px;
  }
  @media (max-width: 575px) {
    .hero1__title {
      font-size: 32px;
    }
    .hero1__title br {
      display: none;
    }
  }
  .hero1__description {
    font-size: clamp(14px, 0.5vw + 0.75rem, 18px);
    color: #212529;
    margin-bottom: 40px;
    max-width: 570px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0%;
  }
  .hero1__image-box {
    position: relative;
    margin-right: -80px;
    z-index: 1;
  }
  @media (max-width: 992px) {
    .hero1__image-box {
      margin-right: 0;
      margin-top: 50px;
      margin-bottom: 80px;
    }
  }
  @media (max-width: 767px) {
    .hero1__image-box {
      margin-bottom: 60px;
    }
  }
  @media (max-width: 575px) {
    .hero1__image-box {
      margin-top: 0px;
    }
  }
  .hero1__main-img {
    position: relative;
    margin-left: 160px;
    padding-top: 100px;
  }
  @media (max-width: 1399px) {
    .hero1__main-img {
      margin-left: 80px;
      padding-top: 50px;
    }
  }
  @media (max-width: 992px) {
    .hero1__main-img {
      margin-left: 0;
      padding-top: 0;
    }
  }
  .hero1__main-img img {
    position: relative;
    max-width: 100%;
    height: auto;
    z-index: 6;
  }
  .hero1__thumb-shape {
    position: absolute;
    top: -40%;
    left: 0%;
    z-index: 0;
  }
  @media (max-width: 992px) {
    .hero1__thumb-shape {
      top: -20%;
      left: 0%;
    }
  }
  @media (max-width: 575px) {
    .hero1__thumb-shape {
      top: -10%;
      left: 0%;
    }
  }

  /* ===========================
    Hero 2
    =========================== */
  .hero2 {
    margin-top: -97px;
  }
  @media (max-width: 1699px) {
    .hero2 {
      margin-top: 0px;
    }
  }
  .hero2 .container-fluid {
    max-width: 1800px;
  }
  .hero2__slider {
    border-radius: 3.125rem;
  }
  .hero2__wrap {
    padding: 17.5rem 0 8.125rem;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    overflow: hidden;
    border-radius: 3.125rem;
  }
  .hero2__slider .hero2__wrap {
    height: auto;
  }
  @media (max-width: 1699px) {
    .hero2__wrap {
      padding: 11.25rem 0 6.25rem;
      margin-top: 10px;
    }
  }
  @media (max-width: 1399px) {
    .hero2__wrap {
      padding: 7.5rem 0 7.5rem;
    }
  }
  @media (max-width: 991px) {
    .hero2__wrap {
      padding: 6.25rem 0 6.25rem;
    }
  }
  @media (max-width: 767px) {
    .hero2__wrap {
      padding: 1.875rem 0 1.875rem;
    }
  }
  .hero2__content {
    position: relative;
    z-index: 1;
  }
  .hero2__subtitle-wrap {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 3.125rem;
    margin-bottom: 1.5625rem;
    position: relative;
    gap: 0.75rem;
  }
  @media (max-width: 767px) {
    .hero2__subtitle-wrap {
      padding: 0.75rem 0.75rem;
    }
  }
  .hero2__subtitle-wrap::before {
    content: "";
    display: inline-block;
    width: 2.375rem;
    height: 0.375rem;
    background-color: #191825;
    border-radius: 0.3125rem;
  }
  .hero2__subtitle {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: normal;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #F3A319;
    margin-bottom: 0;
  }
  @media (max-width: 767px) {
    .hero2__subtitle {
      font-size: 0.875rem;
      line-height: 1.2;
    }
  }
  .hero2__title {
    font-family: "DM Sans", sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 6vw + 1rem, 5rem);
    line-height: 5.625rem;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 1.5625rem;
  }
  @media (max-width: 1199px) {
    .hero2__title {
      font-size: clamp(2rem, 6vw + 1rem, 3.125rem);
      line-height: 1.2;
    }
  }
  .hero2__desc {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.875rem;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 44.375rem;
  }
  @media (max-width: 1199px) {
    .hero2__desc {
      font-size: 16px;
      line-height: 24px;
    }
  }
  .hero2__btn {
    background-color: #F3A319;
    color: #ffffff;
    padding: 0.9375rem 2.125rem;
    padding-right: 5rem;
    border-radius: 3.125rem;
    display: inline-flex;
    align-items: center;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  .hero2__btn span {
    position: relative;
    z-index: 2;
  }
  .hero2__btn::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    width: 3.4375rem;
    height: 3.4375rem;
    background-color: #191825;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: #ffffff;
    transition: all 0.3s ease;
  }
  .hero2__btn:hover {
    background-color: #191825;
    color: #ffffff;
  }
  .hero2__btn:hover::after {
    background-color: #F3A319;
    color: #ffffff;
  }
  @media (max-width: 767px) {
    .hero2__title {
      font-size: 2.5rem;
      line-height: 1.2;
    }
    .hero2__desc {
      font-size: 1rem;
      line-height: 1.6;
    }
  }

  /* ===========================
    WCU 2 (Why Choose Us 2)
    =========================== */
  .wcu2__card {
    background-color: #ffffff;
    border-radius: 5rem;
    padding: 2.5rem 2.1875rem 2.1875rem;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.0784313725);
  }
  .wcu2__card:hover, .wcu2__card--active {
    border-color: #F3A319;
    box-shadow: 0 1.25rem 3.75rem rgba(0, 115, 230, 0.1);
  }
  .wcu2__card-bg-shape {
    position: absolute;
    bottom: -25px;
    right: -62px;
    pointer-events: none;
    /* opacity: 0.5; */
    z-index: 0;
  }
  .wcu2__card-inner {
    position: relative;
    z-index: 1;
  }
  .wcu2__icon-wrap {
    width: 5rem;
    height: 5rem;
    background-color: rgb(0, 115, 230);
    border-top-left-radius: 3.125rem;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5625rem;
    flex-shrink: 0;
  }
  @media (max-width: 1199px) {
    .wcu2__icon-wrap {
      width: 4.375rem;
      height: 4.375rem;
      margin-bottom: 0.9375rem;
    }
  }
  .wcu2__icon-wrap img {
    width: 2.625rem;
    height: 2.625rem;
    object-fit: contain;
  }
  .wcu2__title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #121117;
    margin-bottom: 0;
  }
  @media (max-width: 1199px) {
    .wcu2__title {
      font-size: 20px;
      line-height: 28px;
    }
  }
  .wcu2__header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }
  @media (max-width: 1199px) {
    .wcu2__header {
      gap: 0.625rem;
      margin-bottom: 0.625rem;
    }
  }
  .wcu2__desc {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.75rem;
    letter-spacing: -0.02em;
    color: #6c757d;
    margin-top: 1.25rem;
    margin-bottom: 1.5625rem;
  }
  @media (max-width: 1199px) {
    .wcu2__desc {
      font-size: 14px;
      line-height: 24px;
      margin-top: 0.625rem;
      margin-bottom: 0.9375rem;
    }
  }
  .wcu2__link {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #121117;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    transition: color 0.3s ease;
  }
  @media (max-width: 1199px) {
    .wcu2__link {
      font-size: 14px;
      line-height: 24px;
    }
  }
  .wcu2__link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
  }
  .wcu2__link:hover {
    color: #F3A319;
    text-decoration: none;
  }
  .wcu2__link:hover i {
    transform: translateX(4px);
  }
  @media (max-width: 991px) {
    .wcu2__card {
      margin-bottom: 0;
    }
  }
  @media (max-width: 767px) {
    .wcu2__card {
      border-radius: 2.5rem;
      padding: 1.875rem 1.5625rem;
    }
  }

  .wcu3__wrap {
    position: relative;
  }
  .wcu3__thumb-wrap {
    overflow: hidden;
    height: 100%;
    min-height: 31.25rem;
    margin-left: -300px;
  }
  @media (max-width: 1199px) {
    .wcu3__thumb-wrap {
      margin-left: -200px;
      min-height: auto;
    }
  }
  @media (max-width: 991px) {
    .wcu3__thumb-wrap {
      margin-left: 0px;
    }
  }
  @media (max-width: 767px) {
    .wcu3__thumb-wrap {
      margin-left: 0;
    }
  }
  .wcu3__thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .wcu3 .section-top {
    padding-top: 80px;
  }
  @media (max-width: 1199px) {
    .wcu3 .section-top {
      padding-top: 60px;
    }
  }
  @media (max-width: 991px) {
    .wcu3 .section-top {
      padding-top: 40px;
    }
  }
  @media (max-width: 767px) {
    .wcu3 .section-top {
      padding-top: 20px;
    }
  }
  @media (max-width: 575px) {
    .wcu3 .section-top {
      padding-top: 0px;
    }
  }
  .wcu3__subtitle {
    font-family: "DM Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #F3A319;
    text-transform: uppercase;
    letter-spacing: 0.09375rem;
    display: inline-block;
    margin-bottom: 0.9375rem;
  }
  .wcu3__subtitle span {
    color: #878C8F;
  }
  .wcu3__subtitle::before {
    content: ">>>";
    margin-right: 0.5rem;
  }
  .wcu3 .section-top {
    max-width: 561px;
  }
  @media (max-width: 1199px) {
    .wcu3 .section-top {
      max-width: 100%;
    }
  }
  .wcu3 .section-top__title {
    max-width: 461px;
  }
  .wcu3__title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: #121117;
    margin-bottom: 1.5625rem;
    line-height: 1.2;
  }
  .wcu3__desc {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: #878C8F;
  }
  .wcu3__features-box {
    background-color: #191825;
    padding: 2.1875rem;
    border-radius: 0.9375rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-left: -130px;
  }
  @media (max-width: 1199px) {
    .wcu3__features-box {
      margin-left: 0px;
    }
  }
  @media (max-width: 575px) {
    .wcu3__features-box {
      padding: 1.5625rem;
    }
  }
  .wcu3__feature-item {
    background-color: #ffffff;
    padding: 9px 20px 9px 9px;
    border-radius: 0.625rem;
    flex: 1 1 calc(50% - 0.75rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    text-decoration: none;
    height: 80px;
  }
  @media (max-width: 767px) {
    .wcu3__feature-item {
      flex: 1 1 100%;
    }
  }
  .wcu3__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .wcu3__feature-item:hover .wcu3__feature-arrow {
    color: #F3A319;
  }
  .wcu3__feature-left {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
  }
  .wcu3__feature-icon {
    width: 4.0625rem;
    height: 4.0625rem;
    background-color: #F3A319;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .wcu3__feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #121117;
    margin: 0;
  }
  .wcu3__feature-arrow {
    width: 40px;
    height: 40px;
    color: #121117;
    font-size: 1.125rem;
    transition: 0.3s ease;
    transform: rotate(-45deg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .wcu3__video-item {
    flex: 1 1 calc(50% - 0.75rem);
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 7.5rem;
    margin-bottom: -70px;
  }
  @media (max-width: 1199px) {
    .wcu3__video-item {
      margin-bottom: 0px;
    }
  }
  @media (max-width: 767px) {
    .wcu3__video-item {
      flex: 1 1 100%;
      height: 12.5rem;
      margin-bottom: 0;
    }
  }
  .wcu3__video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .wcu3__video-item:hover img {
    transform: scale(1.05);
  }
  .wcu3__video-item:hover .wcu3__video-btn {
    background-color: #ffffff;
    color: #F3A319;
  }
  .wcu3__video-btn {
    position: absolute;
    width: 3.125rem;
    height: 3.125rem;
    background-color: #F3A319;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    font-size: 1.125rem;
    text-decoration: none;
  }

  /* ===========================
    About 2
    =========================== */
  .about2 {
    background-color: #ffffff;
  }
  .about2 .about2__subtitle span {
    color: #878C8F;
  }
  .about2__thumb-wrap {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    height: 100%;
  }
  .about2__thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.25rem;
    display: block;
  }
  @media (max-width: 991px) {
    .about2__thumb-wrap {
      max-height: 28.75rem;
      margin-bottom: 2.5rem;
    }
  }
  .about2__content {
    padding-left: 1.25rem;
  }
  @media (max-width: 991px) {
    .about2__content {
      padding-left: 0;
    }
  }
  .about2 .section-top {
    text-align: left;
    max-width: 501px;
    margin-bottom: 1.25rem !important;
  }
  .about2 .section-top__subtitle {
    color: #121117;
  }
  .about2 .section-top__subtitle::before {
    content: ">>>";
    color: #F3A319;
  }
  .about2 .section-top__subtitle .text {
    color: #878C8F;
  }
  .about2 .section-top__title {
    color: #121117;
  }
  .about2__desc {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75rem;
    color: #6c757d;
    margin-bottom: 1.875rem;
    max-width: 31.25rem;
  }
  @media (max-width: 1199px) {
    .about2__desc {
      font-size: 14px;
      line-height: 24px;
    }
  }
  .about2__skills {
    background-color: #EFF3FA;
    border-radius: 0.5rem;
    padding: 37px 45px 37px;
    margin-bottom: 2.5rem;
  }
  .about2__skill-item:not(:last-child) {
    margin-bottom: 1.875rem;
  }
  .about2__skill-header {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.625rem;
  }
  .about2__skill-label {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #121117;
    margin-bottom: 15px;
  }
  .about2__skill-percent {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    color: #121117;
  }
  .about2__skill-track {
    width: 100%;
    height: 0.375rem;
    background-color: #d5dce8;
    border-radius: 0.625rem;
    overflow: hidden;
  }
  .about2__skill-fill {
    height: 100%;
    border-radius: 0.625rem;
  }
  .about2__skill-fill--blue {
    background-color: #F3A319;
  }
  .about2__skill-fill--dark {
    background-color: #121117;
  }
  .about2__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }
  .about2__feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #121117;
  }
  .about2__feature-item i {
    color: #F3A319;
    font-size: 0.875rem;
    flex-shrink: 0;
  }
  .about2__bottom {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .about2__btn {
    background-color: #F3A319;
    color: #ffffff;
    padding: 1rem 2.125rem;
    padding-right: 5rem;
    border-radius: 3.125rem;
    display: inline-flex;
    align-items: center;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
  }
  .about2__btn span {
    position: relative;
    z-index: 2;
  }
  .about2__btn::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    width: 3.375rem;
    height: 3.375rem;
    background-color: #191825;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: #ffffff;
    transition: all 0.3s ease;
  }
  .about2__btn:hover {
    background-color: #191825;
    color: #ffffff;
    text-decoration: none;
  }
  .about2__btn:hover::after {
    background-color: #F3A319;
  }
  .about2__phone-cta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background-color: #191825;
    border-radius: 0.625rem;
    padding: 2.0625rem 2.1875rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
  }
  @media (max-width: 991px) {
    .about2__phone-cta {
      padding: 1.4375rem 1.5625rem;
    }
  }
  .about2__phone-cta:hover {
    background-color: #F3A319;
    text-decoration: none;
  }
  .about2__phone-icon {
    width: 3.625rem;
    height: 3.625rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #ffffff;
  }
  @media (max-width: 991px) {
    .about2__phone-icon {
      width: 3rem;
      height: 3rem;
    }
  }
  .about2__phone-icon i {
    font-size: 2rem;
    color: #191825;
  }
  .about2__phone-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
  }
  .about2__phone-label {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 2.125rem;
    letter-spacing: 5%;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
  }
  .about2__phone-number {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2.125rem;
    letter-spacing: -2%;
    color: #ffffff;
  }

  /* ===========================
    Courses 3
    =========================== */
  .courses3 {
    position: relative;
    background-color: #191825;
    overflow: hidden;
  }
  .courses3__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .courses3__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .courses3__bg::after {
    content: "";
    position: absolute;
    inset: 0;
  }
  .courses3 .container {
    position: relative;
    z-index: 1;
  }
  .courses3 .section-top__subtitle {
    color: #ffffff;
  }
  .courses3 .section-top__title {
    color: #ffffff;
  }
  .courses3__card {
    padding: 25px;
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .courses3__card:hover {
    transform: translateY(-0.375rem);
    box-shadow: 0 1.5rem 3.125rem rgba(0, 0, 0, 0.35);
  }
  .courses3__card--active {
    background: #3B3B46;
  }
  .courses3__card--active .courses3__card-title {
    color: #ffffff;
  }
  .courses3__card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
  }
  .courses3__card-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -3%;
    vertical-align: middle;
    text-transform: capitalize;
    color: #121117;
    margin: 0;
    flex: 1;
    color: #191825;
  }
  @media (max-width: 1199px) {
    .courses3__card-title {
      font-size: 20px;
      line-height: 28px;
    }
  }
  @media (max-width: 767px) {
    .courses3__card-title {
      font-size: 17px;
      line-height: 20px;
    }
  }
  .courses3__card-price {
    background-color: #F3A319;
    border-radius: 0.625rem;
    padding: 0.625rem 0.875rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    min-width: 4.875rem;
  }
  @media (max-width: 1199px) {
    .courses3__card-price {
      min-width: 3.75rem;
      padding: 0.5rem 0.625rem;
    }
  }
  .courses3__card-price-amount {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: -2%;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
  }
  @media (max-width: 1199px) {
    .courses3__card-price-amount {
      font-size: 16px;
      line-height: 24px;
    }
  }
  .courses3__card-price-label {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    display: block;
  }
  @media (max-width: 1199px) {
    .courses3__card-price-label {
      font-size: 12px;
      line-height: 20px;
    }
  }
  @media (max-width: 767px) {
    .courses3__card-price-label {
      font-size: 11px;
      line-height: 15px;
    }
  }
  .courses3__card-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 30px;
  }
  .courses3__card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .courses3__card:hover .courses3__card-thumb img {
    transform: scale(1.05);
  }
  .courses3__card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem;
    background-color: #121117;
    margin-top: auto;
    border-radius: 15px;
  }
  .courses3__card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.0625rem;
  }
  .courses3__card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 2.25rem;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: #ffffff;
  }
  @media (max-width: 1199px) {
    .courses3__card-meta-item {
      font-size: 14px;
      line-height: 24px;
    }
  }
  .courses3__card-meta-item i {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    width: 1rem;
    flex-shrink: 0;
  }
  .courses3__card-arrow {
    width: 4.6875rem;
    height: 2.8125rem;
    border-radius: 80px;
    background-color: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
  }
  .courses3__card-arrow i {
    font-size: 1rem;
    color: #ffffff;
  }
  .courses3__card-arrow:hover {
    background-color: #F3A319;
    text-decoration: none;
  }
  @media (max-width: 991px) {
    .courses3__card {
      margin-bottom: 0;
    }
  }

  /* ===========================
    Trending Courses 1
    =========================== */
  .trending-courses1 .container-fluid {
    max-width: 1600px;
  }
  .trending-courses1__wrap {
    background: #191825;
    border-radius: 30px;
  }
  .trending-courses1__card-wrap {
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    overflow: hidden;
  }
  .trending-courses1__card-wrap--active .trending-courses1__card {
    background-color: #fff;
  }
  .trending-courses1__card-wrap--active .trending-courses1__card .trending-courses1__card-title {
    color: #121117;
  }
  .trending-courses1__card-wrap--active .trending-courses1__card .trending-courses1__card-description {
    color: #6b7280;
  }
  .trending-courses1__card {
    background-color: #302F3B;
    border-radius: 15px;
    overflow: hidden;
    flex: 1;
  }
  .trending-courses1__card--active {
    background-color: #fff;
  }
  .trending-courses1__card--active .trending-courses1__card-title {
    color: #121117;
  }
  .trending-courses1__card--active .trending-courses1__card-description {
    color: #6b7280;
  }
  .trending-courses1__card-top {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 8.125rem;
  }
  .trending-courses1__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.0625rem 1.875rem;
    flex-shrink: 0;
  }
  .trending-courses1__card-icon img {
    width: 4.6875rem;
    height: 4.6875rem;
    object-fit: contain;
  }
  .trending-courses1__card-thumb {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    border-radius: 16px;
    width: 260px;
    height: 110px;
  }
  @media (max-width: 992px) {
    .trending-courses1__card-thumb {
      width: 180px;
      height: 100px;
    }
  }
  .trending-courses1__card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .trending-courses1__card-content {
    padding: 0.625rem 1.5rem 1.5rem;
  }
  .trending-courses1__card-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.2;
    letter-spacing: -1%;
    color: #ffffff;
    margin-bottom: 0.625rem;
  }
  .trending-courses1__card-description {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 28px;
    letter-spacing: 0%;
    color: #9DA6AE;
    margin: 0;
  }
  @media (max-width: 1099px) {
    .trending-courses1__card-description {
      font-size: 14px;
      line-height: 24px;
    }
  }
  .trending-courses1__card-button {
    position: relative;
    display: flex;
    align-items: stretch;
    text-decoration: none;
    border-radius: 0.875rem;
    margin-top: 0.5rem;
    overflow: hidden;
    border: 2px solid #F3A319;
    transition: border-color 0.3s ease;
  }
  .trending-courses1__card-button:hover .trending-courses1__btn-label, .trending-courses1__card-button--active .trending-courses1__btn-label {
    background-color: #F3A319;
  }
  .trending-courses1__card-button:hover .trending-courses1__btn-chevrons img:first-child, .trending-courses1__card-button--active .trending-courses1__btn-chevrons img:first-child {
    opacity: 0;
    display: none !important;
  }
  .trending-courses1__card-button:hover .trending-courses1__btn-chevrons img:last-child, .trending-courses1__card-button--active .trending-courses1__btn-chevrons img:last-child {
    opacity: 1;
    display: flex !important;
  }
  .trending-courses1__btn-label {
    position: relative;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1.1875rem 1.375rem;
    background-color: #2a2935;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 2%;
    text-transform: uppercase;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
    overflow: hidden;
    border-radius: 0.5rem;
  }
  .trending-courses1__btn-label i {
    color: #ffffff;
    font-size: 0.8125rem;
  }
  .trending-courses1__btn-text {
    white-space: nowrap;
  }
  .trending-courses1__btn-chevrons {
    position: absolute;
    top: 0;
    right: -7%;
    bottom: 0;
    z-index: 0;
    background-color: #2a2935;
    overflow: hidden;
    border-radius: 0.5rem;
  }
  .trending-courses1__btn-chevrons img {
    object-fit: cover;
    object-position: left center;
    display: block;
    transition: opacity 0.35s ease;
  }
  .trending-courses1__btn-chevrons img:first-child {
    opacity: 1;
    display: flex !important;
  }
  .trending-courses1__btn-chevrons img:last-child {
    opacity: 0;
    display: none !important;
  }
  @media (max-width: 767px) {
    .trending-courses1__card-top {
      min-height: 6.875rem;
    }
    .trending-courses1__card-icon {
      width: 4.75rem;
      padding: 1rem 0.875rem;
    }
    .trending-courses1__card-icon img {
      width: 2.75rem;
      height: 2.75rem;
    }
  }

  /* ============================================================
    Trending Courses 3 (Dual-Pill / Overlay Card Design)
    ============================================================ */
  .trending-courses3 {
    background-color: #F9FBFF;
  }
  .trending-courses3 .section-title {
    margin-bottom: 3.125rem;
  }
  @media (max-width: 991px) {
    .trending-courses3 .section-title {
      margin-bottom: 1.875rem;
    }
  }
  .trending-courses3 .section-title__subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: #F3A319;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    display: block;
    margin-bottom: 0.625rem;
  }
  .trending-courses3 .section-title__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #191825;
    margin: 0;
  }
  .trending-courses3__card {
    border-radius: 1.5rem;
    overflow: hidden;
    background-color: #191825;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none;
  }
  .trending-courses3__card:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 1.875rem 3.75rem rgba(0, 0, 0, 0.15);
  }
  .trending-courses3__card--active {
    background-color: #F3A319;
  }
  .trending-courses3__thumb {
    width: 100%;
    height: 18.75rem;
    overflow: hidden;
    position: relative;
  }
  .trending-courses3__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .trending-courses3__card:hover .trending-courses3__thumb img {
    transform: scale(1.1);
  }
  .trending-courses3__content {
    background-color: #ffffff;
    border-radius: 1.25rem;
    margin: -6.875rem 1.25rem 0;
    padding: 1.875rem 1.5625rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.05);
    flex-grow: 1;
  }
  @media (max-width: 1399px) {
    .trending-courses3__content {
      padding: 1.5625rem 1.25rem;
    }
  }
  .trending-courses3__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #191825;
    margin-bottom: 0.9375rem;
    padding-right: 5.625rem;
  }
  @media (max-width: 1399px) {
    .trending-courses3__card-title {
      font-size: 1.25rem;
    }
  }
  .trending-courses3__price-badge {
    position: absolute;
    top: 1.875rem;
    right: 1.5625rem;
    background-color: #F3A319;
    color: #ffffff;
    border-radius: 0.625rem;
    padding: 0.625rem 0.9375rem;
    text-align: center;
    min-width: 5.3125rem;
  }
  @media (max-width: 1399px) {
    .trending-courses3__price-badge {
      font-size: 1.125rem;
      min-width: 4.6875rem;
      padding: 0.5rem 0.75rem;
    }
  }
  .trending-courses3__price-badge .amount {
    display: block;
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1;
  }
  .trending-courses3__price-badge .text {
    display: block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0.25rem;
    opacity: 0.9;
  }
  @media (max-width: 1399px) {
    .trending-courses3__price-badge .text {
      font-size: 0.5rem;
    }
  }
  .trending-courses3--active .trending-courses3__price-badge, .trending-courses3__card--active .trending-courses3__price-badge {
    background-color: #121117;
  }
  .trending-courses3__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #9DA6AE;
    margin-bottom: 0;
  }
  @media (max-width: 1399px) {
    .trending-courses3__desc {
      font-size: 0.875rem;
    }
  }
  .trending-courses3__footer {
    padding: 1.5625rem 1.875rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
  }
  @media (max-width: 1399px) {
    .trending-courses3__footer {
      padding: 1.25rem 1.5625rem;
    }
  }
  .trending-courses3__meta-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .trending-courses3__meta-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
  }
  @media (max-width: 1399px) {
    .trending-courses3__meta-item {
      font-size: 0.875rem;
    }
  }
  .trending-courses3__meta-item i {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
  }
  .trending-courses3__btn {
    width: 4.6875rem;
    height: 3.125rem;
    background-color: rgba(255, 255, 255, 0.1490196078);
    border-radius: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  @media (max-width: 1399px) {
    .trending-courses3__btn {
      font-size: 1rem;
      width: 4.0625rem;
      height: 2.5rem;
    }
  }
  .trending-courses3__btn:hover {
    background-color: #ffffff;
    color: #F3A319;
  }
  .trending-courses3__card--active .trending-courses3__btn {
    background-color: #3b9bff;
  }
  .trending-courses3__card--active .trending-courses3__btn:hover {
    background-color: #ffffff;
    color: #F3A319;
  }
  .trending-courses3 {
    /* Responsive Adjustments */
  }
  @media (max-width: 991px) {
    .trending-courses3__content {
      margin-top: -5.625rem;
      padding: 1.5625rem 1.25rem;
    }
    .trending-courses3__card-title {
      font-size: 1.25rem;
      padding-right: 5rem;
    }
  }
  @media (max-width: 991px) and (max-width: 575px) {
    .trending-courses3__card-title {
      font-size: 1.125rem;
      padding-right: 4.6875rem;
    }
  }
  @media (max-width: 991px) {
    .trending-courses3__price-badge {
      top: 1.5625rem;
      right: 1.25rem;
      min-width: 4.6875rem;
    }
    .trending-courses3__price-badge .amount {
      font-size: 1.125rem;
    }
  }
  @media (max-width: 575px) {
    .trending-courses3__thumb {
      height: 15rem;
    }
    .trending-courses3__footer {
      padding: 1.25rem;
    }
  }

  .about1 .section-top__subtitle .text {
    color: #878C8F;
  }
  .about1__left {
    position: relative;
  }
  .about1__left-thumb {
    position: relative;
    z-index: 2;
  }
  .about1__left-thumb img {
    width: 100%;
  }
  .about1__left .shape {
    position: absolute;
    bottom: -2%;
    left: 33%;
    z-index: 0;
  }
  @media (max-width: 992px) {
    .about1__left .shape {
      display: none;
    }
  }
  .about1__left-thumb2 {
    position: absolute;
    bottom: 6%;
    right: 12%;
    z-index: 5;
  }
  @media (max-width: 1199px) {
    .about1__left-thumb2 {
      bottom: 6%;
      right: 31%;
    }
  }
  @media (max-width: 992px) {
    .about1__left-thumb2 {
      bottom: 6%;
      right: 19%;
    }
  }
  @media (max-width: 575px) {
    .about1__left-thumb2 {
      bottom: 6%;
      right: -5%;
    }
  }
  @media (max-width: 425px) {
    .about1__left-thumb2 {
      bottom: 6%;
      right: -20%;
    }
  }
  @media (max-width: 375px) {
    .about1__left-thumb2 {
      bottom: 0%;
      right: -25%;
    }
    .about1__left-thumb2 img {
      max-width: 85%;
    }
  }
  .about1__left-thumb2 .main-img {
    position: relative;
    z-index: 2;
    border: 20px solid #ffffff;
    border-radius: 50%;
    background: #ffffff;
  }
  .about1__right-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    padding: 28px 30px 28px 10px;
    background-color: #EFF3FA;
  }
  @media (max-width: 1399px) {
    .about1__right-feature {
      padding: 0.625rem 0.625rem;
    }
  }
  @media (max-width: 768px) {
    .about1__right-feature {
      flex-wrap: wrap;
    }
  }
  .about1__right-feature .about1__right-featurethumb {
    max-width: 236px;
  }
  .about1__right-featurecontent .item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 28px;
    letter-spacing: 0%;
  }
  .about1__right-featurecontent p {
    margin-bottom: 0;
  }
  .about1__right-bottom {
    margin-top: 35px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
  }
  @media (max-width: 1399px) {
    .about1__right-bottom {
      justify-content: flex-start;
      gap: 20px;
    }
  }
  @media (max-width: 768px) {
    .about1__right-bottom {
      flex-wrap: wrap;
    }
  }
  .about1__right-bottom .item {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .about1__right-bottom .item .icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #F3A319;
  }
  .about1__right-bottom .item .title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -2%;
    color: #191825;
  }
  .about1__right .theme__btn {
    margin-top: 35px;
  }

  .courses2 {
    background-color: #ffffff;
  }
  .courses2__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
  }
  @media (max-width: 575px) {
    .courses2__header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.25rem;
    }
  }
  .courses2__nav {
    display: flex;
    gap: 0rem;
    flex-shrink: 0;
  }
  .courses2__nav-btn {
    width: 6.25rem;
    height: 4.375rem;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
  }
  @media (max-width: 1199px) {
    .courses2__nav-btn {
      width: 5rem;
      height: 3.75rem;
      font-size: 1rem;
    }
  }
  @media (max-width: 991px) {
    .courses2__nav-btn {
      width: 3.75rem;
      height: 3.125rem;
      font-size: 0.875rem;
    }
  }
  .courses2__nav-btn--next {
    background-color: #F3A319;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
  }
  .courses2__nav-btn--next:hover {
    background-color: rgb(0, 98.4, 204);
  }
  .courses2__nav-btn--prev {
    background-color: #121117;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
  }
  .courses2__nav-btn--prev:hover {
    background-color: rgb(52.425, 49.5125, 66.9875);
  }
  .courses2__card {
    background: #EFF3FA;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
  }
  .courses2__card:hover {
    box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.1);
    transform: translateY(-0.3125rem);
  }
  .courses2__card-inner {
    display: flex;
  }
  @media (max-width: 575px) {
    .courses2__card-inner {
      flex-direction: column;
    }
  }
  .courses2__card-thumb {
    position: relative;
    flex: 0 0 45%;
    max-width: 45%;
    overflow: hidden;
  }
  @media (max-width: 575px) {
    .courses2__card-thumb {
      flex: 0 0 100%;
      max-width: 100%;
      height: 13.75rem;
    }
  }
  .courses2__card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .courses2__card-price {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: center;
    width: 110px;
    height: 75px;
    opacity: 1;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background: #EFF3FA;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .courses2__card-price-amount {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: #121117;
    line-height: 1;
  }
  .courses2__card-price-label {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    color: #6c757d;
    margin-top: 0.125rem;
  }
  .courses2__card-content {
    flex: 1;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .courses2__card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.875rem;
    background: #ffffff;
    padding: 10px;
    border-radius: 8px;
  }
  @media (max-width: 992px) {
    .courses2__card-meta {
      flex-wrap: wrap;
      gap: 10px;
    }
  }
  .courses2__card-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
  }
  .courses2__card-meta .meta-item i {
    color: #212529;
    font-size: 0.875rem;
  }
  .courses2__card-meta .meta-item span {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 36px;
    letter-spacing: -2%;
    text-transform: capitalize;
    color: #212529;
  }
  @media (max-width: 767px) {
    .courses2__card-meta .meta-item span {
      font-size: 16px;
    }
  }
  .courses2__card-arrow {
    margin-left: auto;
    width: 4.6875rem;
    height: 3.125rem;
    border-radius: 80px;
    background-color: #EFF1F6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #121117;
    font-size: 0.875rem;
  }
  @media (max-width: 1399px) {
    .courses2__card-arrow {
      width: 60px;
      height: 40px;
      font-size: 14px;
    }
  }
  .courses2__card-arrow:hover {
    background-color: #F3A319;
    color: #ffffff;
  }
  @media (max-width: 992px) {
    .courses2__card-arrow {
      margin-left: 0;
    }
  }
  .courses2__card-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -3%;
    text-transform: capitalize;
    color: #121117;
    margin-bottom: 0.625rem;
    max-width: 195px;
  }
  @media (max-width: 992px) {
    .courses2__card-title {
      max-width: 100%;
      font-size: 20px;
    }
  }
  @media (max-width: 1399px) {
    .courses2__card-title {
      font-size: 18px;
      line-height: 28px;
    }
  }
  .courses2__card-desc {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #6c757d;
    margin-bottom: 0;
    max-width: 264px;
  }
  @media (max-width: 992px) {
    .courses2__card-desc {
      max-width: 100%;
      font-size: 14px;
    }
  }

  .benefits1__wrap {
    background-color: #302F3B;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
  }
  .benefits1__wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(46.05deg, #191825 61.58%, rgba(25, 24, 37, 0) 85.17%);
    z-index: 2;
  }
  .benefits1__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
  }
  .benefits1__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .benefits1__shape {
    position: absolute;
    z-index: 2;
    pointer-events: none;
  }
  .benefits1__shape-1 {
    top: 5%;
    left: 0;
    z-index: 2;
  }
  .benefits1__shape-2 {
    bottom: 0%;
    left: 0%;
    z-index: 3;
  }
  .benefits1__shape-3 {
    bottom: 0%;
    right: 0;
    z-index: 3;
  }
  .benefits1__shape img {
    max-width: 100%;
  }
  .benefits1 .container {
    position: relative;
    z-index: 3;
  }
  .benefits1__content-top {
    margin-bottom: 5rem;
  }
  @media (max-width: 1199px) {
    .benefits1__content-top {
      margin-bottom: 2.5rem;
    }
  }
  @media (max-width: 768px) {
    .benefits1__content-top {
      margin-bottom: 1.25rem;
    }
  }
  .benefits1__subtitle {
    color: #F3A319;
  }
  .benefits1__title {
    color: #ffffff;
  }
  .benefits1__description {
    color: #9DA6AE;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-top: 1.25rem;
  }
  @media (max-width: 1399px) {
    .benefits1__description {
      font-size: 1rem;
      line-height: 1.5;
    }
  }
  @media (min-width: 992px) {
    .benefits1__description {
      margin-top: 0;
      padding-left: 3.125rem;
    }
  }
  .benefits1__image-box {
    position: relative;
    margin-bottom: 3.75rem;
  }
  @media (min-width: 992px) {
    .benefits1__image-box {
      margin-bottom: 0;
    }
  }
  .benefits1__car-img {
    width: 100%;
    margin-left: -100px;
    display: block;
    transition: transform 0.5s ease;
  }
  @media (max-width: 1399px) {
    .benefits1__car-img {
      margin-left: 0;
      max-width: 80%;
    }
  }
  .benefits1__car-img:hover {
    transform: translateY(-5px);
  }
  .benefits1__cta-box {
    background-color: #2b2a36;
    padding: 1.875rem 2.5rem;
    border-radius: 0.9375rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5625rem;
    margin-bottom: -15rem;
    width: 100%;
    max-width: 31.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }
  @media (max-width: 1399px) {
    .benefits1__cta-box {
      margin-bottom: -8.75rem;
      flex-wrap: wrap;
      padding: 15px;
    }
  }
  @media (max-width: 768px) {
    .benefits1__cta-box {
      position: relative;
      margin-bottom: 0;
      width: 100%;
      margin-top: 1.875rem;
      max-width: 100%;
    }
  }
  .benefits1__cta-box .icon {
    width: 4.375rem;
    height: 4.375rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .benefits1__cta-box .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .benefits1__cta-box .text {
    flex-grow: 1;
  }
  .benefits1__cta-box .text p {
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 34px;
    letter-spacing: -2%;
    margin-bottom: 1.25rem;
  }
  @media (max-width: 1399px) {
    .benefits1__cta-box .text p {
      font-size: 1.25rem;
      line-height: 30px;
    }
  }
  @media (max-width: 768px) {
    .benefits1__cta-box .text p {
      font-size: 1rem;
      line-height: 24px;
    }
  }
  .benefits1__cta-box .btn-wrap a {
    display: inline-flex;
    align-items: center;
    gap: 0.9375rem;
    background-color: #F3A319;
    color: #ffffff;
    padding: 1.125rem 2.1875rem;
    border-radius: 2.5rem 0 0 2.5rem;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.3s;
    position: relative;
    margin-right: 1.875rem;
  }
  .benefits1__cta-box .btn-wrap a::after {
    content: "";
    position: absolute;
    right: -1.875rem;
    top: 0;
    width: 3.75rem;
    height: 100%;
    background-color: #191825;
    border-radius: 50%;
    z-index: 1;
    clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
  }
  .benefits1__cta-box .btn-wrap a i {
    position: relative;
    z-index: 2;
  }
  .benefits1__cta-box .btn-wrap a:hover {
    background-color: #ffffff;
    color: #F3A319;
    text-decoration: none;
  }
  .benefits1__card {
    background-color: #ffffff;
    padding: 3.125rem;
    border-radius: 1.25rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  }
  @media (max-width: 1399px) {
    .benefits1__card {
      padding: 0.9375rem;
    }
  }
  .benefits1__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .benefits1__list li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background-color: #f1f6ff;
    padding: 1.5625rem;
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
    color: #121117;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
  }
  @media (max-width: 1399px) {
    .benefits1__list li {
      padding: 0.9375rem;
      font-size: 0.875rem;
    }
  }
  @media (max-width: 768px) {
    .benefits1__list li {
      padding: 0.625rem;
      font-size: 0.75rem;
    }
  }
  .benefits1__list li:last-child {
    margin-bottom: 0;
  }
  .benefits1__list li .check-icon {
    width: 1.875rem;
    height: 1.875rem;
    background-color: #F3A319;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
  }
  @media (max-width: 768px) {
    .benefits1__list li .check-icon {
      width: 1.25rem;
      height: 1.25rem;
      font-size: 0.625rem;
    }
  }
  .benefits1__list li.active {
    background-color: #F3A319;
    color: #ffffff;
    transform: scale(1.02);
  }
  .benefits1__list li.active .check-icon {
    background-color: #ffffff;
    color: #F3A319;
    box-shadow: none;
  }
  .benefits1__list li:hover:not(.active) {
    background-color: #e8f0ff;
    transform: translateX(5px);
  }

  .team1 {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
  }
  .team1__content-top {
    margin-bottom: 3.125rem;
  }
  .team1__subtitle {
    color: #F3A319;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.9375rem;
  }
  .team1__title {
    color: #121117;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
  }
  @media (max-width: 991px) {
    .team1__header-btn {
      margin-top: 0.3125rem;
    }
  }
  .team1__card {
    text-align: center;
    position: relative;
    background-color: transparent;
    transition: all 0.4s ease;
  }
  .team1__card-thumb {
    position: relative;
    padding: 0;
    overflow: visible;
  }
  @media (max-width: 767px) {
    .team1__card-thumb {
      margin-bottom: 0.625rem;
    }
  }
  .team1__card-thumb img {
    width: 100%;
    display: block;
    clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
  }
  .team1__card-thumb::after {
    content: "";
    position: absolute;
    top: -0.3125rem;
    right: 0.625rem;
    width: 8.75rem;
    height: 2.5rem;
    background-color: #F3A319;
    z-index: 5;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    opacity: 0;
    transition: all 0.4s ease;
  }
  .team1__card-thumb::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0rem;
    width: 8.75rem;
    height: 2.1875rem;
    background-color: #F3A319;
    z-index: 5;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    opacity: 0;
    transition: all 0.4s ease;
  }
  .team1__card-social {
    position: absolute;
    left: -1.875rem;
    bottom: 0%;
    background-color: #191825;
    padding: 1.5625rem 1.125rem;
    border-radius: 1.875rem 1.875rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 10;
  }
  .team1__card-social a {
    color: #ffffff;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .team1__card-social a:hover {
    color: #F3A319;
  }
  .team1__card-content .designation {
    color: #9DA6AE;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.625rem;
    text-align: end;
  }
  @media (max-width: 575px) {
    .team1__card-content .designation {
      font-size: 0.75rem;
      margin-bottom: 0.3125rem;
    }
  }
  .team1__card-content .name {
    color: #121117;
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 0;
    transition: color 0.3s;
    text-align: end;
  }
  @media (max-width: 992px) {
    .team1__card-content .name {
      font-size: 1.25rem;
    }
  }
  .team1__card-content .name a {
    color: #121117;
  }
  .team1__card-content .name:hover {
    color: #F3A319;
  }
  .team1__card:hover .team1__card-thumb img {
    transform: translateY(-5px);
  }
  .team1__card:hover .team1__card-thumb::before, .team1__card:hover .team1__card-thumb::after {
    opacity: 1;
  }
  .team1__card:hover .team1__card-social {
    opacity: 1;
    visibility: visible;
    left: 0.3125rem;
  }

  /* ===========================
    Team 2 (Qualified Instructors)
    =========================== */
  .team2 {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
  }
  .team2__subtitle {
    color: #F3A319;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.9375rem;
  }
  .team2__title {
    color: #121117;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
  }
  .team2__card {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    background-color: #f3f5f9;
    transition: all 0.4s ease;
  }
  .team2__card-thumb {
    position: relative;
    z-index: 1;
    padding: 0;
  }
  .team2__card-thumb img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
  }
  .team2__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 1.875rem 1.875rem;
    z-index: 2;
    transition: all 0.4s ease;
  }
  @media (max-width: 1024px) {
    .team2__card-content {
      padding: 1.25rem 1.25rem 1.25rem;
    }
  }
  .team2__card-content::before {
    content: "";
    position: absolute;
    top: -0.0625rem;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f3f5f9;
    mask-image: url("../images/hero/hero-thumb-shape.png");
    mask-size: 100% 3.75rem;
    mask-repeat: no-repeat;
    mask-position: top;
    z-index: -1;
    transition: all 0.4s ease;
  }
  .team2__card-content {
    /* clip-path: polygon(0 15%, 5% 10%, 10% 15%, 15% 5%, 20% 15%, 25% 10%, 30% 15%, 35% 5%, 40% 15%, 45% 10%, 50% 15%, 55% 5%, 60% 15%, 65% 10%, 70% 15%, 75% 5%, 80% 15%, 85% 10%, 90% 15%, 95% 5%, 100% 15%, 100% 100%, 0 100%); */
  }
  .team2__card-content .designation {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #9DA6AE;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  @media (max-width: 1024px) {
    .team2__card-content .designation {
      font-size: 0.75rem;
    }
  }
  .team2__card-content .name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #121117;
    margin: 0;
    transition: color 0.3s;
  }
  @media (max-width: 1024px) {
    .team2__card-content .name {
      font-size: 1.125rem;
    }
  }
  .team2__card-social {
    position: absolute;
    right: 1.5625rem;
    bottom: 1.5625rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .team2__card-social .social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9375rem;
    background-color: #2A8EF2;
    padding: 1.5625rem 0.5rem 0.9375rem;
    width: 55px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: -1.25rem;
  }
  .team2__card-social .social-links a {
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s;
  }
  .team2__card-social .social-links a:hover {
    transform: scale(1.2);
    color: #191825;
  }
  .team2__card-social .toggle-btn {
    width: 3.4375rem;
    height: 3.4375rem;
    background-color: #191825;
    color: #ffffff;
    border-bottom-left-radius: 150px;
    border-bottom-right-radius: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.125rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 11;
  }
  @media (max-width: 1024px) {
    .team2__card-social .toggle-btn {
      width: 2.1875rem;
      height: 2.1875rem;
      font-size: 0.875rem;
    }
  }
  .team2__card:hover .team2__card-thumb img {
    transform: scale(1.05);
  }
  .team2__card:hover .team2__card-content {
    background-color: #191825;
  }
  .team2__card:hover .team2__card-content::before {
    background-color: #191825;
  }
  .team2__card:hover .team2__card-content .designation {
    color: rgba(255, 255, 255, 0.7);
  }
  .team2__card:hover .team2__card-content .name {
    color: #ffffff;
  }
  .team2__card:hover .team2__card-social .social-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-bottom: 0;
  }
  .team2__card:hover .team2__card-social .toggle-btn {
    background-color: #F3A319;
  }

  /* ===========================
    Team 3
    =========================== */
  .team3 {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
  }
  .team3__header {
    text-align: center;
    margin-bottom: 3.125rem;
  }
  @media (max-width: 991.98px) {
    .team3__header {
      margin-bottom: 1.875rem;
    }
  }
  .team3__subtitle {
    display: block;
    color: #F3A319;
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .team3__title {
    font-size: 2.8125rem;
    font-weight: 800;
    color: #121117;
    line-height: 1.2;
    margin-bottom: 0;
  }
  @media (max-width: 767px) {
    .team3__title {
      font-size: 2rem;
    }
  }
  .team3 {
    /* ── Card Component ── */
  }
  .team3__card {
    position: relative;
    margin-bottom: 1.875rem;
    overflow: visible;
    transition: all 0.4s ease;
  }
  .team3__card:hover .team3__social-box {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    background: #302F3B;
  }
  .team3__card:hover .team3__more-btn {
    background: #45444F;
    color: #ffffff;
  }
  .team3__card:hover .team3__info {
    background: #191825;
  }
  .team3__card:hover .team3__info .team3__role {
    color: rgba(255, 255, 255, 0.6);
  }
  .team3__card:hover .team3__info .team3__name {
    color: #ffffff;
  }
  .team3__thumb {
    position: relative;
    border-radius: 0.9375rem;
    overflow: hidden;
    z-index: 1;
  }
  .team3__thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
  }
  .team3 {
    /* ── Slanted Accents ── */
  }
  .team3__accent {
    position: absolute;
    width: 7.5rem;
    height: 2.25rem;
    background-color: #F3A319;
    z-index: 2;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  }
  .team3__accent--top {
    top: 1.25rem;
    right: -1.25rem;
  }
  .team3__accent--bottom {
    bottom: 1.25rem;
    left: -1.25rem;
  }
  .team3 {
    /* ── Social Overlay ── */
  }
  .team3__social-box {
    position: absolute;
    right: 1.4375rem;
    bottom: 1.5625rem;
    background-color: #31303E;
    padding: 0.9375rem 1.3125rem;
    border-radius: 0.625rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.25rem);
    transition: all 0.4s ease;
  }
  @media (max-width: 1399px) {
    .team3__social-box {
      right: 0;
      bottom: 7px;
      border-radius: 0.9375rem 0.9375rem 0 0;
      padding: 18px 15px;
    }
  }
  .team3__social-box a {
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  .team3__social-box a:hover {
    color: #F3A319;
  }
  .team3 {
    /* ── Info Box ── */
  }
  .team3__info {
    position: absolute;
    left: 7.75rem;
    right: 0;
    bottom: -3.125rem;
    background-color: #EFF3FA;
    padding: 1.25rem 1.5625rem;
    border-radius: 3.125rem 0.9375rem 0.9375rem 3.125rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
  }
  @media (max-width: 1399px) {
    .team3__info {
      left: 0;
      right: 0;
      bottom: -49px;
      border-radius: 0.9375rem 0.9375rem 0 0;
      padding: 15px 5px;
    }
  }
  .team3__text {
    flex: 1;
    text-align: end;
  }
  .team3__role {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #9DA6AE;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
  }
  @media (max-width: 1399px) {
    .team3__role {
      font-size: 0.5rem;
    }
  }
  .team3__name {
    display: block;
    font-size: 1.375rem;
    font-weight: 800;
    color: #121117;
    line-height: 1.2;
  }
  @media (max-width: 1399px) {
    .team3__name {
      font-size: 1.125rem;
    }
  }
  .team3__more-btn {
    width: 3.4375rem;
    height: 3.4375rem;
    background-color: #ffffff;
    color: #F3A319;
    border-bottom-left-radius: 9.375rem;
    border-bottom-right-radius: 9.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-left: 18px;
  }
  @media (max-width: 1399px) {
    .team3__more-btn {
      width: 2.5rem;
      height: 2.5rem;
      font-size: 1rem;
    }
  }
  .team3__more-btn:hover {
    background-color: #F3A319;
    color: #ffffff;
  }

  .testimonial1 {
    background: #ffffff;
    position: relative;
    overflow: hidden;
  }
  .testimonial1__student-img {
    margin-bottom: -50px;
    margin-left: -250px;
  }
  @media (max-width: 1599px) {
    .testimonial1__student-img {
      margin-left: -70px;
      margin-bottom: -150px;
    }
  }
  @media (max-width: 1399px) {
    .testimonial1__student-img {
      margin-left: -30px;
      margin-bottom: -250px;
    }
  }
  @media (max-width: 1199px) {
    .testimonial1__student-img {
      margin-left: -30px;
      margin-bottom: 0px;
      margin-top: -30px;
    }
  }
  @media (max-width: 992px) {
    .testimonial1__student-img {
      margin-left: 0;
      margin-bottom: 0;
      margin-top: 0;
    }
  }
  .testimonial1__student-img img {
    width: 100%;
    display: block;
  }
  .testimonial1__content {
    margin-left: -230px;
  }
  @media (max-width: 1199px) {
    .testimonial1__content {
      margin-left: 0px;
    }
  }
  .testimonial1__nav {
    display: flex;
    gap: 0rem;
    margin-bottom: 3.125rem;
  }
  @media (max-width: 991px) {
    .testimonial1__nav {
      justify-content: center;
      margin-bottom: 0;
    }
  }
  .testimonial1__nav-btn {
    width: 6.25rem;
    height: 4.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
  }
  @media (max-width: 1199px) {
    .testimonial1__nav-btn {
      width: 5rem;
      height: 3.75rem;
      font-size: 1rem;
    }
  }
  @media (max-width: 991px) {
    .testimonial1__nav-btn {
      width: 3.75rem;
      height: 3.125rem;
      font-size: 0.875rem;
    }
  }
  .testimonial1__nav-btn--next {
    background-color: #F3A319;
    color: #ffffff;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .testimonial1__nav-btn--prev {
    background-color: #E2E2E2;
    color: #121117;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .testimonial1__nav-btn:hover {
    transform: scale(1.02);
  }
  .testimonial1__slider {
    position: relative;
    overflow: hidden;
    padding: 0 9.375rem 1.25rem;
    margin-left: -9.375rem;
    margin-right: -9.375rem;
    height: 44.375rem;
    margin-bottom: 120px;
  }
  @media (max-width: 2099px) {
    .testimonial1__slider {
      margin-left: 0;
      margin-right: 0;
      padding: 10px 0 10px;
      height: 780px;
      margin-bottom: 0;
    }
  }
  @media (max-width: 1399px) {
    .testimonial1__slider {
      margin-left: 0;
      margin-right: 0;
      padding: 0px 0 0;
      height: 650px;
      margin-bottom: 0;
    }
  }
  @media (max-width: 1199px) {
    .testimonial1__slider {
      height: 300px;
      padding-top: 0;
    }
  }
  @media (max-width: 1024px) {
    .testimonial1__slider {
      height: 272px;
      padding-top: 0;
    }
  }
  @media (max-width: 992px) {
    .testimonial1__slider {
      height: 290px;
    }
  }
  @media (max-width: 767px) {
    .testimonial1__slider {
      height: auto;
    }
  }
  .testimonial1__slider .swiper-wrapper {
    gap: 1.25rem;
  }
  @media (max-width: 1199px) {
    .testimonial1__slider .swiper-wrapper {
      gap: 0rem;
    }
  }
  .testimonial1__slider .testimonial1__card.swiper-slide.swiper-slide-active {
    padding-right: 141px;
    padding-left: 0;
    padding-top: 100px;
  }
  @media (max-width: 1399px) {
    .testimonial1__slider .testimonial1__card.swiper-slide.swiper-slide-active {
      padding-right: 0;
      padding-top: 0;
    }
  }
  .testimonial1__slider .testimonial1__card.swiper-slide {
    height: 350px !important;
  }
  @media (max-width: 1599px) {
    .testimonial1__slider .testimonial1__card.swiper-slide {
      height: 320px !important;
    }
  }
  @media (max-width: 1399px) {
    .testimonial1__slider .testimonial1__card.swiper-slide {
      height: 300px !important;
    }
  }
  @media (max-width: 1199px) {
    .testimonial1__slider .testimonial1__card.swiper-slide {
      height: 272px !important;
    }
  }
  @media (max-width: 1024px) {
    .testimonial1__slider .testimonial1__card.swiper-slide {
      height: auto !important;
    }
  }
  .testimonial1__card {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
    padding-left: 141px;
    margin-bottom: 0 !important;
  }
  @media (max-width: 1199px) {
    .testimonial1__card {
      padding-left: 0;
    }
  }
  .testimonial1__card-body {
    background-color: #f1f6ff;
    border: 2px solid #F3A319;
    border-radius: 0.9375rem;
    padding: 34px 38px 34px 129px;
    flex: 1;
    position: relative;
    z-index: 2;
  }
  @media (max-width: 1399px) {
    .testimonial1__card-body {
      padding: 20px 20px 20px 120px;
    }
  }
  @media (max-width: 767px) {
    .testimonial1__card-body {
      padding: 20px 20px 20px 80px;
    }
  }
  .testimonial1__card-body .quote-icon {
    width: 4.6875rem;
    height: 4.6875rem;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 2.125rem;
    left: 1.875rem;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1490196078);
    z-index: 5;
  }
  @media (max-width: 1399px) {
    .testimonial1__card-body .quote-icon {
      width: 50px;
      height: 50px;
      font-size: 18px;
    }
  }
  @media (max-width: 767px) {
    .testimonial1__card-body .quote-icon {
      width: 50px;
      height: 50px;
      font-size: 18px;
    }
  }
  @media (max-width: 767px) {
    .testimonial1__card-body .quote-icon {
      left: 0.625rem;
      top: 0.625rem;
    }
  }
  .testimonial1__card-body .quote-icon img {
    width: 2.1875rem;
    height: auto;
    object-fit: contain;
  }
  .testimonial1__card-body .text {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #878C8F;
    margin-bottom: 1.5625rem;
    position: relative;
    z-index: 2;
  }
  @media (max-width: 767px) {
    .testimonial1__card-body .text {
      font-size: 0.875rem;
      line-height: 1.3;
    }
  }
  .testimonial1__card-body .rating {
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
  }
  .testimonial1__card-body .rating .stars {
    color: #F3A319;
    font-size: 0.875rem;
    margin-bottom: 0.3125rem;
  }
  .testimonial1__card-body .rating .score {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #121117;
    text-transform: uppercase;
  }
  .testimonial1__card-user {
    width: 6.25rem;
    background-color: #0A0A0A;
    border-radius: 3.125rem;
    padding: 0.625rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-left: 0;
    position: relative;
    z-index: 3;
    height: 20rem;
  }
  @media (max-width: 1899px) {
    .testimonial1__card-user {
      height: 17rem;
    }
  }
  @media (max-width: 767px) {
    .testimonial1__card-user {
      padding: 1.25rem;
      max-width: 12.5rem;
      gap: 0.9375rem;
      border-radius: 6.25rem;
      display: none;
    }
  }
  @media (max-width: 575px) {
    .testimonial1__card-user {
      padding: 0.625rem;
      max-width: 4.375rem;
      gap: 0.625rem;
      border-radius: 6.25rem;
    }
  }
  @media (max-width: 325px) {
    .testimonial1__card-user {
      display: none;
    }
  }
  .testimonial1__card-user .avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #333;
    background: #222;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
  }
  @media (max-width: 767px) {
    .testimonial1__card-user .avatar {
      margin-bottom: 0;
      width: 3.75rem;
      height: 3.75rem;
    }
  }
  .testimonial1__card-user .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .testimonial1__card-user .info {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 0.3125rem;
    margin-top: auto;
    margin-bottom: 1.25rem;
  }
  .testimonial1__card-user .info .role {
    font-size: 0.625rem;
    color: #9DA6AE;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
  .testimonial1__card-user .info .name {
    font-size: 1.125rem;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
  }
  .testimonial1__card--alt {
    flex-direction: row-reverse;
    padding-right: 0;
  }
  .testimonial1__card--alt .testimonial1__card-user {
    margin-left: 0;
    margin-right: 0;
  }
  @media (max-width: 767px) {
    .testimonial1__card--alt .testimonial1__card-user {
      margin-right: 0;
      margin-bottom: -1.875rem;
      display: none;
    }
  }
  .testimonial1__card--alt .quote-icon {
    top: 2.125rem;
    left: 1.875rem;
  }
  @media (max-width: 767px) {
    .testimonial1__card--alt .quote-icon {
      left: 0.625rem;
      top: 0.625rem;
    }
  }

  .cta1 {
    display: block;
    position: relative;
    z-index: 10;
    background: #ffffff;
  }
  .cta1__card {
    position: relative;
    border-radius: 1.875rem;
    overflow: visible;
    margin-bottom: 1.875rem;
    height: 100%;
    min-height: 21.875rem;
  }
  @media (min-width: 992px) {
    .cta1__card {
      margin-bottom: 0;
    }
  }
  .cta1__card-thumb {
    width: 100%;
    height: 100%;
    border-radius: 1.875rem;
    overflow: hidden;
  }
  .cta1__card-thumb img {
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .cta1__card-overlay {
    position: absolute;
    top: 50%;
    right: 0rem;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid #F3A319;
    border-radius: 1.25rem;
    padding: 1.875rem 1.5625rem;
    width: 80%;
    max-width: 23.75rem;
    z-index: 5;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  @media (max-width: 767px) {
    .cta1__card-overlay {
      position: absolute;
      top: 50%;
      left: 2.5%;
      right: auto;
      transform: translateY(-50%);
      width: 100%;
      margin-top: -5rem;
      margin-left: auto;
      margin-right: auto;
      max-width: 95%;
      padding: 1.25rem 0.9375rem;
    }
  }
  .cta1__card-overlay .card-icon {
    position: absolute;
    top: 1.875rem;
    right: 1.5625rem;
    width: 4.375rem;
    height: 4.375rem;
    background: #2b2a36;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (max-width: 767px) {
    .cta1__card-overlay .card-icon {
      width: 3.125rem;
      height: 3.125rem;
      top: 0.3125rem;
      right: 0.3125rem;
    }
  }
  .cta1__card-overlay .card-icon img {
    width: 2.1875rem;
    height: 2.1875rem;
    object-fit: contain;
  }
  .cta1__card-overlay .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #121117;
    margin-bottom: 0.625rem;
    max-width: 60%;
    line-height: 1.2;
  }
  @media (max-width: 767px) {
    .cta1__card-overlay .card-title {
      max-width: 100%;
      font-size: 1.25rem;
    }
  }
  .cta1__card-overlay .card-subtitle {
    font-size: 0.9375rem;
    color: #9DA6AE;
    margin-bottom: 1.875rem;
    display: block;
  }
  .cta1__card-overlay .card-form,
  .cta1__card-overlay .card-download {
    position: relative;
    background: #f1f6ff;
    border-radius: 2.5rem;
    display: flex;
    align-items: center;
    padding: 0.3125rem;
  }
  .cta1__card-overlay .card-form input,
  .cta1__card-overlay .card-download input {
    background: transparent;
    border: none;
    padding: 0.9375rem 1.5625rem;
    width: 100%;
    font-size: 0.875rem;
    font-weight: 600;
    color: #121117;
    outline: none;
  }
  .cta1__card-overlay .card-form input::placeholder,
  .cta1__card-overlay .card-download input::placeholder {
    color: #9DA6AE;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .cta1__card-overlay .card-form .download-label,
  .cta1__card-overlay .card-download .download-label {
    padding: 0.9375rem 1.5625rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #121117;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-grow: 1;
  }
  @media (max-width: 767px) {
    .cta1__card-overlay .card-form .download-label,
    .cta1__card-overlay .card-download .download-label {
      font-size: 0.75rem;
      padding: 0.625rem 0.9375rem;
    }
  }
  .cta1__card-overlay .card-form .submit-btn,
  .cta1__card-overlay .card-form .download-btn,
  .cta1__card-overlay .card-download .submit-btn,
  .cta1__card-overlay .card-download .download-btn {
    width: 3.125rem;
    height: 3.125rem;
    background: #F3A319;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s;
    flex-shrink: 0;
  }
  .cta1__card-overlay .card-form .submit-btn:hover,
  .cta1__card-overlay .card-form .download-btn:hover,
  .cta1__card-overlay .card-download .submit-btn:hover,
  .cta1__card-overlay .card-download .download-btn:hover {
    background: #121117;
    transform: scale(1.05);
  }

  /* ===========================
    Counter 2
    =========================== */
  .counter2 {
    position: relative;
    z-index: 10;
    margin-left: -325px;
  }
  @media (max-width: 1899px) {
    .counter2 {
      margin-left: 0px;
    }
  }
  .counter2 .container-fluid {
    max-width: 1620px;
  }
  .counter2__wrapper {
    background: linear-gradient(90deg, #EFF3FA 0%, #FFFFFF 100%);
    border-radius: 15px;
    padding: 75px 0;
    border: 2px solid rgba(25, 24, 37, 0.2);
  }
  @media (max-width: 991px) {
    .counter2__wrapper {
      padding: 50px 0;
    }
  }
  .counter2__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.8125rem;
    flex-wrap: wrap;
  }
  @media (max-width: 1399px) {
    .counter2__wrap {
      gap: 1.25rem;
    }
  }
  @media (max-width: 767px) {
    .counter2__wrap {
      justify-content: center;
    }
  }
  @media (max-width: 575px) {
    .counter2__wrap {
      flex-direction: column;
    }
  }
  .counter2__item {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 13.75rem;
    position: relative;
  }
  @media (max-width: 575px) {
    .counter2__item {
      min-width: 100%;
    }
  }
  .counter2__item--blue .counter2__card {
    background-color: #F3A319;
    color: #ffffff;
  }
  .counter2__item--blue .counter2__card:before {
    border-left-color: #F3A319;
    border-radius: 10px;
  }
  .counter2__item--blue .counter2__card::after {
    border-left-color: #F3A319;
  }
  .counter2__item--blue .counter2__number {
    color: #ffffff;
  }
  .counter2__item--blue .counter2__label {
    color: rgba(255, 255, 255, 0.8);
  }
  .counter2__item--blue .counter2__icon-wrap {
    background-color: #001F3D;
  }
  .counter2__item--blue .counter2__icon-wrap img {
    filter: brightness(0) invert(1);
  }
  .counter2__icon-wrap {
    width: 6.25rem;
    height: 6.25rem;
    background-color: #ffffff;
    border: 2px solid #E8E8E8;
    border-right: none;
    border-radius: 100px 0 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
  }
  @media (max-width: 1399px) {
    .counter2__icon-wrap {
      width: 5rem;
      height: 5rem;
    }
  }
  .counter2__icon-wrap img {
    max-width: 2.8125rem;
  }
  .counter2__card {
    background-color: #ffffff;
    padding: 20px 0px 20px 20px;
    border: 2px solid #E8E8E8;
    border-left: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-radius: 0 10px 10px 0;
    position: relative;
    flex-grow: 1;
    min-height: 8.125rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
  }
  @media (max-width: 1399px) {
    .counter2__card {
      padding: 0.625rem 0.625rem;
      max-width: 125px;
    }
  }
  @media (max-width: 575px) {
    .counter2__card {
      padding: 0.3125rem 0.3125rem;
      max-width: 130px;
    }
  }
  .counter2__card::after {
    content: "";
    position: absolute;
    top: -2px;
    right: -1.875rem;
    width: 0;
    height: 0;
    border-top: 4.1875rem solid transparent;
    border-bottom: 4.1875rem solid transparent;
    border-left: 1.875rem solid #E8E8E8;
    z-index: 11;
  }
  .counter2__card::before {
    content: "";
    position: absolute;
    top: 0;
    right: -1.75rem;
    width: 0;
    height: 0;
    border-top: 4.0625rem solid transparent;
    border-bottom: 4.0625rem solid transparent;
    border-left: 1.75rem solid #ffffff;
    z-index: 12;
  }
  .counter2__number {
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 2.8125rem;
    line-height: 1.5rem;
    letter-spacing: 0%;
    color: #191825;
    margin-bottom: 1.25rem;
    display: block;
  }
  @media (max-width: 1399px) {
    .counter2__number {
      font-size: 1.5625rem;
      margin-bottom: 5px;
    }
  }
  .counter2__label {
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #818181;
    display: block;
  }
  @media (max-width: 1399px) {
    .counter2__label {
      font-size: 0.625rem;
    }
  }
  .counter2.bg-white {
    background-color: #ffffff;
    margin-left: 0;
  }
  .counter2.bg-white .counter2__wrapper {
    background: #ffffff;
  }
  .counter2.bg-white .counter2__icon-wrap {
    border: 4px solid #191825;
    border-right: none;
  }
  .counter2.bg-white .counter2__icon-wrap.bg-black {
    border: 4px solid #F3A319;
    border-right: none;
  }
  .counter2.bg-white .counter2__card {
    background-color: #EFF3FA;
  }
  .counter2.bg-white .counter2__card:before {
    content: "";
    position: absolute;
    top: 0;
    right: -1.75rem;
    width: 0;
    height: 0;
    border-top: 4.0625rem solid transparent;
    border-bottom: 4.0625rem solid transparent;
    border-left: 1.75rem solid #EFF3FA;
    z-index: 12;
  }

  /* ===========================
    Projects 2
    =========================== */
  .projects2 {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    background: white;
  }
  .projects2__bg {
    position: absolute;
    top: -130px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  @media (max-width: 1199px) {
    .projects2__bg {
      display: none;
    }
  }
  .projects2__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .projects2 .section-top__subtitle {
    color: #ffffff;
  }
  @media (max-width: 1199px) {
    .projects2 .section-top__subtitle {
      color: #121117;
    }
  }
  .projects2 .section-top__title {
    color: #ffffff;
  }
  @media (max-width: 1199px) {
    .projects2 .section-top__title {
      color: #121117;
    }
  }
  .projects2__item {
    position: relative;
    border-radius: 1.25rem;
    overflow: visible;
  }
  @media (max-width: 575px) {
    .projects2__item {
      margin-bottom: 0.625rem;
    }
  }
  .projects2__thumb {
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
    display: block;
    transition: transform 0.3s ease;
  }
  .projects2__content {
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border-radius: 1.25rem;
    padding: 25px;
    width: 85%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.3125rem;
    z-index: 2;
    max-width: 420px;
  }
  @media (max-width: 1399px) {
    .projects2__content {
      position: relative;
      bottom: 0;
      left: 0;
      right: 0;
      transform: none;
      width: 100%;
      margin-top: -1.25rem;
    }
  }
  @media (max-width: 575px) {
    .projects2__content {
      padding: 1.25rem;
      width: 90%;
      flex-direction: column;
      align-items: flex-start;
    }
  }
  .projects2__text-wrap {
    flex-grow: 1;
  }
  .projects2__badge {
    display: inline-block;
    background-color: #F3A319;
    color: #ffffff;
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.25rem;
  }
  @media (max-width: 1199px) {
    .projects2__badge {
      font-size: 12px;
      line-height: 20px;
      padding: 0.3125rem 0.625rem;
      margin-bottom: 0.625rem;
    }
  }
  .projects2__card-title {
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: #121117;
    margin-bottom: 0.9375rem;
  }
  @media (max-width: 1199px) {
    .projects2__card-title {
      font-size: 20px;
      line-height: 28px;
      margin-bottom: 0.625rem;
    }
  }
  .projects2__card-title a {
    color: inherit;
    text-decoration: none;
  }
  .projects2__card-title a:hover {
    color: #F3A319;
  }
  .projects2__desc {
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.75rem;
    letter-spacing: -0.02em;
    color: #6c757d;
    margin-bottom: 0;
  }
  @media (max-width: 1199px) {
    .projects2__desc {
      font-size: 14px;
      line-height: 24px;
    }
  }
  .projects2__arrow {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 4.6875rem;
    height: 3.125rem;
    background-color: #121117;
    color: #ffffff;
    border-radius: 6.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-left: auto;
  }
  @media (max-width: 1399px) {
    .projects2__arrow {
      position: relative;
      top: 0;
      left: 0;
      margin-right: auto;
      margin-left: 0;
      margin-top: 0.625rem;
      width: 3.75rem;
      height: 2.5rem;
    }
  }
  .projects2__arrow:hover {
    background-color: #F3A319;
    color: #ffffff;
    transform: rotate(-15deg);
  }

  /* ===========================
    Location 2
    =========================== */
  .location2 {
    position: relative;
    background-color: #ffffff;
  }
  .location2__subtitle {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  .location2__title {
    font-family: "DM Sans", sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw + 1rem, 3rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #121117;
    margin-bottom: 1.5rem;
  }
  .location2__desc {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.75rem;
    color: #9DA6AE;
    margin-bottom: 2.5rem;
  }
  .location2__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    background-color: #EFF4F9;
    padding: 0.625rem;
    border-radius: 0.75rem;
    margin-bottom: 2.5rem;
    width: fit-content;
  }
  @media (max-width: 575px) {
    .location2__tabs {
      width: 100%;
    }
  }
  .location2__tab-item {
    padding: 0.75rem 1.5rem;
    border-radius: 3.125rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #121117;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
  }
  @media (max-width: 575px) {
    .location2__tab-item {
      padding: 0.3125rem 0.3125rem;
      font-size: 0.75rem;
    }
  }
  .location2__tab-item--active {
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }
  .location2__tab-item:hover {
    color: #F3A319;
  }
  .location2__button {
    display: inline-flex;
    align-items: center;
    background-color: #F3A319;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 1.125rem 2.1875rem;
    border-radius: 6.25rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
  }
  .location2__button::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 3.75rem;
    height: 100%;
    background-color: #000;
    clip-path: ellipse(40% 100% at 100% 50%);
    z-index: -1;
    transition: all 0.3s ease;
  }
  .location2__button i {
    margin-left: 0.9375rem;
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
  }
  .location2__button:hover {
    background-color: #000;
    color: #ffffff;
  }
  .location2__button:hover::after {
    width: 100%;
    clip-path: ellipse(100% 100% at 50% 50%);
  }
  .location2__map-wrapper {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    background-color: #f0f0f0;
  }
  .location2__map-wrapper iframe {
    width: 100%;
    height: auto;
    display: block;
    min-height: 25.4375rem;
    object-fit: cover;
  }
  .location2__info-box {
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    background-color: #ffffff;
    padding: 1.875rem;
    border-radius: 15px;
    width: 18.75rem;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1019607843);
    z-index: 5;
  }
  @media (max-width: 575px) {
    .location2__info-box {
      width: 80%;
      padding: 1.25rem;
    }
  }
  .location2__info-address {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 28px;
    color: #000000;
    margin-bottom: 0.9375rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.9375rem;
  }
  .location2__info-phone {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    margin-bottom: 1.25rem;
    display: block;
    text-decoration: none;
  }
  .location2__info-link {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 2%;
    text-transform: uppercase;
    color: #878C8F;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    transition: color 0.3s ease;
  }
  .location2__info-link:hover {
    color: #F3A319;
  }
  .location2__pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  .location2__pin .pin-main {
    font-size: 3.125rem;
    color: #F3A319;
    animation: bounce 2s infinite;
  }
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }

  /* ===========================
    Testimonial 2
    =========================== */
  .testimonial2 {
    position: relative;
    background-color: #ffffff;
  }
  .testimonial2__subtitle {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F3A319;
    display: block;
    margin-bottom: 1rem;
  }
  .testimonial2__title {
    font-family: "DM Sans", sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw + 1rem, 3rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #121117;
  }
  .testimonial2__nav {
    display: flex;
    gap: 0rem;
    justify-content: flex-end;
    align-items: center;
  }
  @media (max-width: 991px) {
    .testimonial2__nav {
      justify-content: flex-start;
    }
  }
  .testimonial2__nav .swiper-nav-prev,
  .testimonial2__nav .swiper-nav-next {
    width: 6.25rem;
    height: 4.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    border: 1px solid #f0f0f0;
    background-color: #F4F7FA;
    color: #121117;
  }
  @media (max-width: 1199px) {
    .testimonial2__nav .swiper-nav-prev,
    .testimonial2__nav .swiper-nav-next {
      width: 4.375rem;
      height: 3.125rem;
    }
  }
  .testimonial2__nav .swiper-nav-prev:hover,
  .testimonial2__nav .swiper-nav-next:hover {
    background-color: #F3A319;
    color: #ffffff;
    border-color: #F3A319;
  }
  .testimonial2__nav .swiper-nav-prev.swiper-button-disabled,
  .testimonial2__nav .swiper-nav-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: default;
  }
  .testimonial2__nav .swiper-nav-prev.swiper-button-disabled:hover,
  .testimonial2__nav .swiper-nav-next.swiper-button-disabled:hover {
    background-color: #F4F7FA;
    color: #121117;
    border-color: #f0f0f0;
  }
  .testimonial2__nav .swiper-nav-prev {
    order: 2;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .testimonial2__nav .swiper-nav-next {
    order: 1;
    background-color: #F3A319;
    color: #ffffff;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .testimonial2__card {
    background-color: #ffffff;
    border: 1px solid #F3A319;
    border-radius: 1.25rem;
    padding: 0;
    margin-top: 3.125rem;
    height: 100%;
    width: 100%;
    max-width: 19.5rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    overflow: hidden;
  }
  @media (max-width: 1199px) {
    .testimonial2__card {
      max-width: 17.5rem;
    }
  }
  @media (max-width: 991px) {
    .testimonial2__card {
      max-width: 20rem;
      margin-top: 30px;
    }
  }
  @media (max-width: 575px) {
    .testimonial2__card {
      max-width: 100%;
    }
  }
  .testimonial2__card:hover {
    transform: translateY(-5px);
  }
  .testimonial2__card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
  }
  .testimonial2__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.1875rem;
    gap: 1.25rem;
    background-color: #EFF3FA;
    padding: 10px 0 20px 20px;
    border-radius: 15px;
  }
  @media (max-width: 1024px) {
    .testimonial2__header {
      padding: 10px 15px 15px 10px;
      gap: 0.625rem;
    }
  }
  @media (max-width: 767px) {
    .testimonial2__header {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  .testimonial2__quote-wrap {
    display: flex;
    align-items: center;
    gap: 1.5625rem;
  }
  @media (max-width: 1024px) {
    .testimonial2__quote-wrap {
      gap: 0.9375rem;
    }
  }
  .testimonial2__quote-icon {
    width: 4.6875rem;
    height: 4.6875rem;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  @media (max-width: 1024px) {
    .testimonial2__quote-icon {
      width: 3.125rem;
      height: 3.125rem;
    }
  }
  .testimonial2__quote-icon img {
    max-width: 2.8125rem;
  }
  @media (max-width: 1024px) {
    .testimonial2__quote-icon img {
      max-width: 1.875rem;
    }
  }
  .testimonial2__rating-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .testimonial2__stars {
    display: flex;
    gap: 0.25rem;
    color: #F3A319;
    font-size: 0.875rem;
  }
  .testimonial2__rating-text {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: #121117;
    letter-spacing: 0.05em;
  }
  @media (max-width: 1024px) {
    .testimonial2__rating-text {
      font-size: 0.75rem;
    }
  }
  .testimonial2__user-box {
    display: flex;
    align-items: center;
    background-color: #191825;
    padding: 0.75rem 0.75rem 0.75rem 2.1875rem;
    border-radius: 3.125rem 3.125rem 3.125rem 3.125rem;
    position: relative;
    min-width: 15rem;
    overflow: hidden;
  }
  @media (max-width: 767px) {
    .testimonial2__user-box {
      margin-left: 0;
      padding: 0.75rem 0.75rem 0.75rem 1.25rem;
    }
  }
  .testimonial2__user-text {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    text-align: end;
    margin-right: 0.9375rem;
  }
  .testimonial2__user-label {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9DA6AE;
    margin-bottom: 0.3125rem;
  }
  @media (max-width: 1024px) {
    .testimonial2__user-label {
      font-size: 0.625rem;
    }
  }
  .testimonial2__user-name {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    white-space: nowrap;
  }
  @media (max-width: 1024px) {
    .testimonial2__user-name {
      font-size: 1rem;
    }
  }
  .testimonial2__user-thumb {
    width: 4.0625rem;
    height: 4.0625rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    flex-shrink: 0;
  }
  .testimonial2__user-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .testimonial2__desc {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.75rem;
    color: #9DA6AE;
    text-align: center;
    margin-bottom: 0;
    padding: 0 1.25rem;
  }
  @media (max-width: 575px) {
    .testimonial2__desc {
      padding: 0;
      text-align: left;
    }
  }

  /* ============================================================
    Testimonial 3 (Dynamic Card Stack & Large Profile)
    ============================================================ */
  .testimonial3 {
    background-color: #121117;
    position: relative;
    overflow: hidden;
  }
  .testimonial3__slider {
    height: 536px;
  }
  @media (max-width: 1024px) {
    .testimonial3__slider {
      height: 565px;
    }
  }
  @media (max-width: 767px) {
    .testimonial3__slider {
      height: auto;
    }
  }
  .testimonial3__slider .swiper-slide {
    height: auto !important;
  }
  .testimonial3__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .testimonial3__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .testimonial3 .container {
    position: relative;
    z-index: 2;
  }
  .testimonial3__subtitle {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    display: block;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
  }
  .testimonial3__title {
    font-family: "DM Sans", sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 5vw, 3rem);
    line-height: 1.2;
    color: #fff;
    margin-bottom: 3.125rem;
  }
  .testimonial3 {
    /* ── Navigation ── */
  }
  .testimonial3__nav {
    display: flex;
    align-items: center;
    width: fit-content;
  }
  @media (min-width: 992px) {
    .testimonial3__nav {
      position: absolute;
      top: 0rem;
      right: 0rem;
      z-index: 999;
    }
  }
  @media (max-width: 991px) {
    .testimonial3__nav {
      margin-bottom: 2.5rem;
    }
  }
  .testimonial3__nav .nav-btn {
    width: 6.25rem;
    height: 4.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.125rem;
    border: none;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1490196078);
  }
  @media (max-width: 1024px) {
    .testimonial3__nav .nav-btn {
      width: 4.375rem;
      height: 3.125rem;
    }
  }
  .testimonial3__nav .nav-btn--prev {
    background-color: #ffffff;
    color: #191825;
    border-radius: 0 3.125rem 3.125rem 0;
  }
  .testimonial3__nav .nav-btn--next {
    background-color: #F3A319;
    color: #ffffff;
    border-radius: 3.125rem 0 0 3.125rem;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1490196078);
  }
  .testimonial3__nav .nav-btn:hover {
    transform: scale(1.05);
  }
  .testimonial3__card {
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 0rem 0rem 0rem 0rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #F3A319;
  }
  .testimonial3__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    background: #EFF3FA;
    padding: 8px 8px 8px 25px;
  }
  @media (max-width: 575px) {
    .testimonial3__card-header {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  .testimonial3__quote-group {
    display: flex;
    align-items: center;
    gap: 2.1875rem;
  }
  .testimonial3__quote-icon {
    width: 4.6875rem;
    height: 4.6875rem;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .testimonial3__quote-icon img {
    max-width: 2.8125rem;
  }
  .testimonial3__rating-info {
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
  }
  .testimonial3__stars {
    color: #F3A319;
    font-size: 0.8125rem;
    display: flex;
    gap: 0.125rem;
  }
  .testimonial3__rating-val {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #191825;
    text-transform: uppercase;
  }
  .testimonial3 {
    /* ── User Pill ── */
  }
  .testimonial3__user-box {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.375rem 0.375rem 1.5625rem;
    border-radius: 6.25rem;
    background-color: #191825;
    border: 1px solid #eee;
    transition: all 0.4s ease;
  }
  .testimonial3__user-box .label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.125rem;
  }
  .testimonial3__user-box .name {
    font-size: 1.125rem;
    font-weight: 800;
    display: block;
  }
  .testimonial3__user-box img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    margin-left: 0.75rem;
    object-fit: cover;
    border: 2px solid #ffffff;
  }
  .testimonial3__user-box .label {
    color: rgba(255, 255, 255, 0.6);
  }
  .testimonial3__user-box .name {
    color: #ffffff;
  }
  .testimonial3__user-box img {
    border-color: transparent;
  }
  .testimonial3__card--active .testimonial3__user-box {
    background-color: #fff;
    border-color: transparent;
    box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.0784313725);
  }
  .testimonial3__card--active .testimonial3__user-box .label {
    color: #9DA6AE;
  }
  .testimonial3__card--active .testimonial3__user-box .name {
    color: #191825;
  }
  .testimonial3__card--active .testimonial3__user-box img {
    border: 2px solid #ffffff;
  }
  .testimonial3__card-text {
    margin-top: 1.5625rem;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #9DA6AE;
    text-align: center;
    padding: 0 1.875rem;
  }
  @media (max-width: 1024px) {
    .testimonial3__card-text {
      padding: 0 1.25rem;
      font-size: 0.875rem;
    }
  }
  @media (max-width: 575px) {
    .testimonial3__card-text {
      padding: 0 10px;
      text-align: left;
    }
  }
  .testimonial3 {
    /* ── Profile Scene ── */
  }
  .testimonial3__thumb-wrap {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: -200px;
  }
  @media (max-width: 991px) {
    .testimonial3__thumb-wrap {
      display: none;
    }
  }
  .testimonial3__shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }
  .testimonial3__shape-stripe {
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 100%;
    height: 120%;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0.8) 45%, #191825 45%, #191825 55%, transparent 55%), linear-gradient(135deg, transparent 65%, #F3A319 65%, #F3A319 85%, transparent 85%);
    z-index: 1;
    transform: skewX(-15deg);
  }
  .testimonial3__student-img {
    position: relative;
    z-index: 2;
    max-width: 130%;
    margin-right: -30%;
    pointer-events: none;
  }
  .testimonial3__student-img img {
    display: block;
    width: 100%;
  }

  /* ===========================
    Blog 2
    =========================== */
  .blog2 {
    position: relative;
    background-color: #ffffff;
  }
  .blog2__subtitle {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F3A319;
    display: block;
    margin-bottom: 1rem;
  }
  .blog2__title {
    font-family: "DM Sans", sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw + 1rem, 3rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #121117;
    margin-bottom: 3.75rem;
  }
  .blog2__sidebar {
    background-color: #ffffff;
    border: 1px solid rgba(25, 24, 37, 0.1490196078);
    border-radius: 0.9375rem;
    padding: 2.1875rem;
    height: 100%;
  }
  @media (max-width: 575px) {
    .blog2__sidebar {
      padding: 1.25rem;
    }
  }
  .blog2__sidebar .blog2__sidebar-text {
    color: #818181;
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  .blog2__sidebar .blog2__sidebar-link {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #121117;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 5rem;
    transition: color 0.3s ease;
  }
  .blog2__sidebar .blog2__sidebar-link:hover {
    color: #F3A319;
  }
  .blog2__newsletter .blog2__newsletter-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #121117;
    margin-bottom: 0.625rem;
  }
  .blog2__newsletter .blog2__newsletter-desc {
    color: #818181;
    font-size: 1rem;
    margin-bottom: 1.875rem;
  }
  .blog2__newsletter .blog2__input {
    width: 100%;
    background-color: #F4F7FA;
    border: 1px solid rgba(25, 24, 37, 0.1215686275);
    padding: 1.125rem 1.5625rem;
    border-radius: 0.625rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    height: 70px;
  }
  .blog2__newsletter .blog2__input::placeholder {
    color: #9DA6AE;
  }
  .blog2__btn {
    display: inline-flex;
    align-items: center;
    background-color: #F3A319;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 1.125rem 2.1875rem;
    border-radius: 6.25rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
  }
  .blog2__btn::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 3.75rem;
    height: 100%;
    background-color: #000;
    clip-path: ellipse(40% 100% at 100% 50%);
    z-index: -1;
    transition: all 0.3s ease;
  }
  .blog2__btn i {
    margin-left: 0.9375rem;
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
  }
  .blog2__btn:hover {
    background-color: #000;
    color: #ffffff;
  }
  .blog2__btn:hover::after {
    width: 100%;
    clip-path: ellipse(100% 100% at 50% 50%);
  }
  .blog2__item {
    margin-bottom: 1.875rem;
  }
  .blog2__item:last-child {
    margin-bottom: 0;
  }
  .blog2__thumb {
    width: 100%;
    height: 100%;
    border-radius: 1.25rem;
    display: block;
    object-fit: cover;
    height: 280px;
  }
  @media (max-width: 767px) {
    .blog2__thumb {
      margin-bottom: 1.25rem;
      height: auto;
    }
  }
  .blog2__info-card {
    background-color: #F4F7FA;
    border-radius: 1.25rem;
    padding: 2.3125rem 1.5625rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  @media (max-width: 1024px) {
    .blog2__info-card {
      padding: 0.9375rem;
    }
  }
  @media (max-width: 767px) {
    .blog2__info-card {
      padding: 20px 10px;
    }
  }
  .blog2__card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.875rem;
  }
  @media (max-width: 767px) {
    .blog2__card-header {
      gap: 0.625rem;
      margin-bottom: 1.25rem;
    }
  }
  .blog2__date {
    width: 4.375rem;
    height: 6.25rem;
    border: 2px solid #F3A319;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #ffffff;
  }
  @media (max-width: 1024px) {
    .blog2__date {
      width: 3.75rem;
      height: 5rem;
    }
  }
  .blog2__date .blog2__day {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 24px;
    letter-spacing: -2%;
    text-align: center;
    color: #F3A319;
    margin-bottom: 10px;
  }
  @media (max-width: 1024px) {
    .blog2__date .blog2__day {
      font-size: 1.5rem;
      margin-bottom: 5px;
    }
  }
  .blog2__date .blog2__month {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -2%;
    text-align: center;
    text-transform: uppercase;
    color: #121117;
  }
  @media (max-width: 1024px) {
    .blog2__date .blog2__month {
      font-size: 0.875rem;
    }
  }
  .blog2__meta {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    margin-bottom: 13px;
  }
  @media (max-width: 1024px) {
    .blog2__meta {
      margin-bottom: 10px;
      gap: 0.3125rem;
    }
  }
  .blog2__meta .blog2__meta-item {
    font-size: 0.875rem;
    font-weight: 500;
    color: #818181;
    display: flex;
    align-items: center;
    gap: 0.4375rem;
  }
  .blog2__meta .blog2__meta-item i {
    color: #A4A4A4;
  }
  @media (max-width: 1024px) {
    .blog2__meta .blog2__meta-item {
      font-size: 0.75rem;
      gap: 0.1875rem;
    }
  }
  .blog2__card-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.4;
    color: #121117;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  @media (max-width: 1399px) {
    .blog2__card-title {
      font-size: 1.25rem;
    }
  }
  @media (max-width: 1024px) {
    .blog2__card-title {
      font-size: 1.125rem;
    }
  }
  .blog2__card-title:hover {
    color: #F3A319;
  }
  .blog2__user-box {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 0.625rem 0.625rem 0.625rem 0.625rem;
    border-radius: 6.25rem;
    position: relative;
    justify-content: space-between;
    gap: 0.625rem;
    max-width: 310px;
  }
  @media (max-width: 575px) {
    .blog2__user-box {
      padding: 0.625rem;
    }
  }
  .blog2__user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .blog2__user-thumb {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    overflow: hidden;
  }
  .blog2__user-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .blog2__user-text {
    display: flex;
    flex-direction: column;
  }
  .blog2__user-label {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #9DA6AE;
    letter-spacing: 0.1em;
  }
  .blog2__user-name {
    font-size: 0.875rem;
    font-weight: 800;
    color: #121117;
    white-space: nowrap;
  }
  .blog2__arrow-btn {
    width: 4.375rem;
    height: 3rem;
    background-color: #121117;
    color: #ffffff;
    border-radius: 6.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-right: -30px;
  }
  @media (max-width: 1024px) {
    .blog2__arrow-btn {
      margin-right: -10px;
      width: 50px;
      height: 40px;
      font-size: 0.875rem;
    }
  }
  .blog2__arrow-btn:hover {
    background-color: #F3A319;
    transform: rotate(-15deg);
  }

  /* ============================================================
    Blog 3 — Circular / Elegant Card Design
    ============================================================ */
  .blog3 {
    background-color: #ffffff;
  }
  .blog3 .mt-35 {
    margin-top: 35px;
  }
  @media (max-width: 1024px) {
    .blog3 .mt-35 {
      margin-top: 0;
    }
  }
  .blog3__card {
    overflow: hidden;
    transition: all 0.4s ease;
  }
  .blog3__card:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.1);
  }
  .blog3__thumb {
    max-width: 370px;
    margin: -30px auto 0;
    z-index: 8;
  }
  @media (max-width: 992px) {
    .blog3__thumb {
      max-width: 300px;
      margin: -5px auto 0;
    }
  }
  .blog3__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .blog3__card:hover .blog3__thumb img {
    transform: scale(1.1);
  }
  .blog3__info-card {
    background-color: #F4F7FA;
    border-radius: 1.25rem;
    padding: 1.875rem 1.5625rem 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  @media (max-width: 1399px) {
    .blog3__info-card {
      padding: 1.5625rem 1.25rem 80px;
    }
  }
  @media (max-width: 991px) {
    .blog3__info-card {
      padding: 1.5625rem;
    }
  }
  @media (max-width: 575px) {
    .blog3__info-card {
      padding: 0.625rem 0.9375rem 2.1875rem 0.625rem;
    }
  }
  .blog3__card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
  }
  @media (max-width: 1399px) {
    .blog3__card-header {
      gap: 0.625rem;
    }
  }
  .blog3__date {
    width: 4.375rem;
    height: 6.25rem;
    border: 2px solid #F3A319;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #ffffff;
  }
  @media (max-width: 1399px) {
    .blog3__date {
      width: 3.4375rem;
      height: 4.6875rem;
    }
  }
  .blog3__date .blog3__day {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 24px;
    letter-spacing: -2%;
    text-align: center;
    color: #F3A319;
    margin-bottom: 10px;
  }
  @media (max-width: 1399px) {
    .blog3__date .blog3__day {
      font-size: 1.25rem;
      margin-bottom: 5px;
    }
  }
  .blog3__date .blog3__month {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -2%;
    text-align: center;
    text-transform: uppercase;
    color: #121117;
  }
  @media (max-width: 1399px) {
    .blog3__date .blog3__month {
      font-size: 0.75rem;
    }
  }
  .blog3__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9375rem;
    margin-bottom: 13px;
  }
  @media (max-width: 1399px) {
    .blog3__meta {
      margin-bottom: 0.625rem;
    }
  }
  .blog3__meta .blog3__meta-item {
    font-size: 0.875rem;
    font-weight: 500;
    color: #818181;
    display: flex;
    align-items: center;
    gap: 0.4375rem;
  }
  @media (max-width: 1399px) {
    .blog3__meta .blog3__meta-item {
      font-size: 0.75rem;
    }
  }
  .blog3__meta .blog3__meta-item i {
    color: #A4A4A4;
  }
  .blog3__card-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.4;
    color: #121117;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  @media (max-width: 1399px) {
    .blog3__card-title {
      font-size: 1.25rem;
    }
  }
  .blog3__card-title:hover {
    color: #F3A319;
  }

  /* ===========================
    FAQ 3 (Have Questions In Your Mind?)
    =========================== */
  .faq3 {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
  }
  @media (max-width: 991px) {
    .faq3 {
      padding-bottom: 60px !important;
    }
  }
  .faq3::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 65%;
    bottom: 0;
    left: 0;
    background: #EFF3FA;
    z-index: 0;
  }
  @media (min-width: 2250px) {
    .faq3::before {
      height: 73%;
    }
  }
  .faq3__row {
    align-items: center;
  }
  .faq3__thumb {
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 1699px) {
    .faq3__thumb {
      margin-bottom: -100px;
    }
  }
  @media (max-width: 991px) {
    .faq3__thumb {
      margin-bottom: 3.75rem;
    }
  }
  .faq3__thumb::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 950px;
    height: 750px;
    clip-path: polygon(738.19px 750px, 0px 750px, 0px 0px, 826.269px 0px, 950px 238.235px, 738.19px 750px);
    z-index: 2;
  }
  @media (max-width: 1199px) {
    .faq3__thumb::after {
      width: 45%;
    }
  }
  @media (max-width: 991px) {
    .faq3__thumb::after {
      display: none;
    }
  }
  .faq3__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  @media (max-width: 1699px) {
    .faq3__thumb img {
      width: 100%;
      height: 900px;
    }
  }
  @media (max-width: 1499px) {
    .faq3__thumb img {
      width: 100%;
      height: 870px;
    }
  }
  @media (max-width: 1399px) {
    .faq3__thumb img {
      width: 100%;
      height: 730px;
    }
  }
  @media (max-width: 1199px) {
    .faq3__thumb img {
      width: 100%;
      height: 750px;
    }
  }
  @media (max-width: 991px) {
    .faq3__thumb img {
      width: 100%;
      height: auto;
    }
  }
  .faq3__content {
    position: relative;
    z-index: 5;
    padding-left: 2.5rem;
    padding-right: 0.9375rem;
  }
  @media (max-width: 1199px) {
    .faq3__content {
      padding-left: 1.25rem;
    }
  }
  @media (max-width: 991px) {
    .faq3__content {
      padding: 0 15px;
    }
  }
  .faq3__content .section-top__subtitle .text {
    color: #878C8F;
  }
  .faq3__content .section-top__title {
    margin-bottom: 121px;
  }
  @media (max-width: 1024px) {
    .faq3__content .section-top__title {
      margin-bottom: 3.125rem;
    }
  }
  @media (max-width: 991.98px) {
    .faq3__content .section-top__title {
      margin-bottom: 1.875rem;
    }
  }
  .faq3__subtitle {
    color: #F3A319;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.9375rem;
  }
  .faq3__title {
    color: #121117;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 3.125rem;
  }
  .faq3 .accordion {
    border: none;
  }
  .faq3 .accordion-item {
    border: none;
    margin-bottom: 1.25rem;
    overflow: hidden;
    border-radius: 40px !important;
    background: #ffffff;
  }
  @media (max-width: 1399px) {
    .faq3 .accordion-item {
      border-radius: 28px !important;
    }
  }
  .faq3 .accordion-item:last-child {
    margin-bottom: 0;
  }
  @media (max-width: 1199px) {
    .faq3 .accordion-item {
      border-radius: 25px !important;
    }
  }
  @media (max-width: 991px) {
    .faq3 .accordion-item {
      box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    }
  }
  .faq3 .accordion-button {
    padding: 0 10px 0 0;
    background-color: #ffffff;
    border-radius: 6.25rem !important;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: #121117;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: none !important;
    border: none;
    transition: all 0.3s ease;
    text-align: left;
  }
  @media (max-width: 1399px) {
    .faq3 .accordion-button {
      font-size: 1.0625rem;
      gap: 0.9375rem;
    }
  }
  @media (max-width: 575px) {
    .faq3 .accordion-button {
      font-size: 0.75rem;
      gap: 0.9375rem;
    }
  }
  .faq3 .accordion-button::after {
    display: none;
  }
  .faq3 .accordion-button:not(.collapsed) {
    background-color: #F3A319;
    color: #ffffff;
    border-radius: 6.25rem !important;
  }
  .faq3 .accordion-button:not(.collapsed) .faq3__number {
    background-color: #191825;
  }
  .faq3 .accordion-button:not(.collapsed) .faq3__icon {
    background-color: #ffffff;
    color: #F3A319;
    transform: rotate(180deg);
  }
  .faq3 .accordion-collapse {
    border: none;
  }
  .faq3 .accordion-body {
    position: relative;
    z-index: 6;
    background-color: #ffffff;
    padding: 1.875rem 2.5rem 2.5rem 2.75rem;
    font-size: 1rem;
    color: #9DA6AE;
    line-height: 1.7;
    border-bottom-left-radius: 2.5rem;
    border-bottom-right-radius: 2.5rem;
  }
  @media (max-width: 1399px) {
    .faq3 .accordion-body {
      font-size: 0.875rem;
      padding: 1.25rem 1.5625rem 1.25rem 1.25rem;
    }
  }
  @media (max-width: 1199px) {
    .faq3 .accordion-body {
      padding-left: 3.125rem;
    }
  }
  @media (max-width: 575px) {
    .faq3 .accordion-body {
      padding: 1.25rem 1.25rem 1.25rem 1.25rem;
      font-size: 0.75rem;
    }
  }
  .faq3__number {
    width: 4.6875rem;
    height: 5rem;
    background-color: #F3A319;
    color: #ffffff;
    border-radius: 50%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }
  @media (max-width: 1399px) {
    .faq3__number {
      width: 3.4375rem;
      height: 3.4375rem;
      font-size: 1.25rem;
    }
  }
  @media (max-width: 575px) {
    .faq3__number {
      width: 3.4375rem;
      height: 3.4375rem;
      font-size: 1.25rem;
    }
  }
  .faq3__icon {
    width: 3.125rem;
    height: 3.125rem;
    background-color: #F4F7FB;
    color: #121117;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    margin-left: auto;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  @media (max-width: 1399px) {
    .faq3__icon {
      width: 2.5rem;
      height: 2.5rem;
      font-size: 0.9375rem;
    }
  }
  @media (max-width: 575px) {
    .faq3__icon {
      width: 2.5rem;
      height: 2.5rem;
      font-size: 0.9375rem;
    }
  }

  /* ===========================
    Enroll Form 1 (CTA Bar)
    =========================== */
  .enroll-form1 {
    background-color: #ffffff;
  }
  .enroll-form1__wrap {
    background-color: #F3A319;
    border-radius: 1.25rem;
    padding: 3.75rem 3.125rem;
    position: relative;
    overflow: visible;
  }
  @media (max-width: 991px) {
    .enroll-form1__wrap {
      padding: 2.8125rem 1.875rem;
    }
  }
  .enroll-form1__title {
    color: #ffffff;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3.125rem;
    line-height: 1.1;
  }
  @media (max-width: 991px) {
    .enroll-form1__title {
      margin-bottom: 1.875rem;
    }
  }
  .enroll-form1__form {
    position: relative;
  }
  .enroll-form1__form-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: flex-end;
  }
  .enroll-form1__field {
    width: 100%;
  }
  @media (min-width: 768px) {
    .enroll-form1__field {
      width: calc(50% - 0.75rem);
    }
  }
  @media (min-width: 1200px) {
    .enroll-form1__field {
      width: calc(20.2% - 1.2rem);
    }
  }
  .enroll-form1__field {
    margin-bottom: 0;
  }
  .enroll-form1__field label {
    display: block;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.125rem;
    letter-spacing: -0.01em;
  }
  @media (max-width: 1399px) {
    .enroll-form1__field label {
      font-size: 0.875rem;
      margin-bottom: 0.625rem;
    }
  }
  .enroll-form1__field input,
  .enroll-form1__field select {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 0.625rem;
    padding: 1.125rem 1.5625rem;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    outline: none;
    transition: all 0.3s ease;
  }
  @media (max-width: 1399px) {
    .enroll-form1__field input,
    .enroll-form1__field select {
      font-size: 0.75rem;
      padding: 0.75rem 0.9375rem;
    }
  }
  .enroll-form1__field input::placeholder,
  .enroll-form1__field select::placeholder {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .enroll-form1__field input:focus,
  .enroll-form1__field select:focus {
    background-color: rgba(255, 255, 255, 0.3);
  }
  .enroll-form1__field input.contact__field--invalid,
  .enroll-form1__field select.contact__field--invalid {
    border: 1px solid #ffffff;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.22);
  }
  .enroll-form1__field select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5625rem center;
  }
  .enroll-form1__field select option {
    background-color: #F3A319;
    color: #191825;
  }
  .enroll-form1__btn-wrap {
    width: 100%;
  }
  @media (min-width: 768px) {
    .enroll-form1__btn-wrap {
      width: calc(50% - 0.75rem);
    }
  }
  @media (min-width: 1200px) {
    .enroll-form1__btn-wrap {
      width: calc(18.5% - 1.2rem);
    }
  }
  .enroll-form1__btn-wrap .theme__btn:disabled {
    opacity: 0.72;
    cursor: wait;
  }

  /* ===========================
    Header 3
    =========================== */
  .header3 {
    width: 100%;
    position: relative;
    z-index: 1000;
  }
  .header3__top {
    background-color: #F3A319;
    padding: 0.75rem 0;
    position: relative;
    z-index: 2;
  }
  @media (max-width: 991px) {
    .header3__top {
      display: none;
    }
  }
  .header3__top .container {
    position: relative;
  }
  .header3__top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header3__top .social-links {
    display: flex;
    gap: 1.25rem;
  }
  .header3__top .social-links a {
    color: #ffffff;
    font-size: 0.875rem;
    transition: all 0.3s;
  }
  .header3__top .social-links a:hover {
    opacity: 0.7;
  }
  .header3__top .nav-links ul {
    display: flex;
    gap: 1.875rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .header3__top .nav-links ul li a {
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s;
  }
  .header3__top .nav-links ul li a:hover {
    opacity: 0.7;
  }
  .header3__top .login-btn {
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s;
  }
  .header3__top .login-btn:hover {
    opacity: 0.7;
  }
  .header3__main {
    background-color: #1A1926;
    padding: 1.25rem 0;
    position: relative;
  }
  @media (max-width: 991px) {
    .header3__main {
      padding: 0.9375rem 0;
    }
  }
  .header3__main .container {
    position: relative;
  }
  .header3__logo-box {
    position: absolute;
    top: 0rem;
    left: 0;
    border-radius: 6.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 5;
    min-width: 13.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (max-width: 991px) {
    .header3__logo-box {
      position: relative;
      top: 0;
      padding: 0.625rem 1.25rem;
      min-width: auto;
    }
  }
  .header3__logo-box img {
    max-width: 9.375rem;
    display: block;
  }
  .header3__contact {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-left: 15.625rem;
  }
  @media (max-width: 1400px) {
    .header3__contact {
      margin-left: 14.375rem;
      gap: 1.25rem;
    }
  }
  @media (max-width: 991px) {
    .header3__contact {
      display: none;
    }
  }
  .header3__contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .header3__contact-item .icon {
    width: 2.1875rem;
    height: 2.1875rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #F3A319;
    border: 1px solid rgba(0, 115, 230, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
  }
  .header3__contact-item .text {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
  }
  .header3__right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    justify-content: flex-end;
  }
  @media (max-width: 991px) {
    .header3__right {
      flex-grow: 1;
    }
  }
  .header3__search {
    background-color: #ffffff;
    border-radius: 3.125rem;
    padding: 0.3125rem;
    display: flex;
    align-items: center;
    min-width: 18.75rem;
  }
  @media (max-width: 1199px) {
    .header3__search {
      min-width: 13.75rem;
    }
  }
  @media (max-width: 575px) {
    .header3__search {
      display: none;
    }
  }
  .header3__search input {
    background: transparent;
    border: none;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    outline: none;
    width: 100%;
  }
  .header3__search input::placeholder {
    color: #9DA6AE;
  }
  .header3__search .icon-search {
    margin-left: 0.9375rem;
    color: #121117;
  }
  .header3__search .search-btn {
    background-color: #F3A319;
    color: #ffffff;
    border: none;
    border-radius: 1.875rem;
    padding: 0.625rem 1.5625rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
  }
  .header3__search .search-btn:hover {
    background-color: #191825;
  }
  .header3__cart {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
  }
  .header3__cart:hover {
    background-color: #F3A319;
  }
  .header3__mobile-trigger {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    padding: 0;
    display: none;
  }
  @media (max-width: 991px) {
    .header3__mobile-trigger {
      display: block;
    }
  }

  /* ===========================
    Hero 3
    =========================== */
  .hero3 {
    position: relative;
    background-color: #F8F9FA;
    background-image: url("../images/hero/hero-thumbbg3_1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    overflow: hidden;
    margin-top: -97px;
  }
  @media (max-width: 1600px) {
    .hero3 {
      margin-top: -100px;
    }
  }
  @media (max-width: 1399px) {
    .hero3 {
      margin-top: 0;
    }
  }
  .hero3__content {
    position: relative;
    z-index: 5;
    padding: 230px 0 75px;
  }
  @media (max-width: 1399px) {
    .hero3__content {
      padding: 150px 0 25px;
    }
  }
  @media (max-width: 991px) {
    .hero3__content {
      padding: 100px 0 25px;
    }
  }
  @media (max-width: 767px) {
    .hero3__content {
      padding: 75px 0 25px;
    }
  }
  .hero3__badge {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 3.125rem;
    margin-bottom: 1.875rem;
    gap: 0.9375rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  @media (max-width: 767px) {
    .hero3__badge {
      padding: 0.75rem 1.25rem;
      margin-bottom: 1.25rem;
    }
  }
  .hero3__badge::before {
    content: "";
    display: inline-block;
    width: 1.875rem;
    height: 0.375rem;
    background-color: #121117;
    border-radius: 0.3125rem;
  }
  .hero3__badge span {
    color: #F3A319;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  @media (max-width: 767px) {
    .hero3__badge span {
      font-size: 0.75rem;
    }
  }
  .hero3__title {
    color: #121117;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2.1875rem;
  }
  @media (max-width: 767px) {
    .hero3__title {
      font-size: 2.1875rem;
      line-height: 1.25;
    }
  }
  .hero3__desc {
    color: #5C5B66;
    font-size: 1.125rem;
    line-height: 2rem;
    margin-bottom: 3.125rem;
    max-width: 40.625rem;
  }
  @media (max-width: 767px) {
    .hero3__desc {
      font-size: 1rem;
      line-height: 1.6;
    }
  }
  .hero3__btn {
    display: inline-flex;
    align-items: center;
    padding: 0.9375rem 2.375rem;
    background-color: #F3A319;
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 6.25rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    border: none;
    letter-spacing: 0.05em;
  }
  .hero3__btn::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 3.75rem;
    height: 100%;
    background-color: #191825;
    clip-path: ellipse(40% 100% at 100% 50%);
    z-index: -1;
    transition: all 0.4s ease;
  }
  .hero3__btn i {
    margin-left: 0.9375rem;
    font-size: 1.125rem;
  }
  .hero3__btn:hover {
    color: #ffffff;
  }
  .hero3__btn:hover::after {
    width: 100%;
    clip-path: ellipse(100% 100% at 50% 50%);
  }
  .hero3__thumb {
    position: relative;
    z-index: 2;
  }
  @media (max-width: 991px) {
    .hero3__thumb {
      text-align: center;
    }
  }
  .hero3__thumb img {
    max-width: 100%;
    display: block;
  }
  @media (max-width: 991px) {
    .hero3__thumb img {
      margin: 0 auto;
      max-width: 70%;
    }
  }
  @media (max-width: 767px) {
    .hero3__thumb img {
      max-width: 100%;
    }
  }

  /* ===========================
    Feature 3
    =========================== */
  .feature3__card {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 400px;
  }
  @media (max-width: 991px) {
    .feature3__card {
      margin-bottom: 1.875rem;
    }
  }
  .feature3__card-thumb {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 345px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
  }
  .feature3__card-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
    border-radius: 4px;
    overflow: hidden;
  }
  @media (max-width: 1399px) {
    .feature3__card-thumb {
      height: 100%;
      object-fit: contain;
    }
  }
  .feature3__card-icon {
    position: absolute;
    top: 1.875rem;
    right: 1.875rem;
    width: 5rem;
    height: 5rem;
    background-color: #ffffff;
    border: 2px solid #F3A319;
    border-radius: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  @media (max-width: 991px) {
    .feature3__card-icon {
      width: 3.75rem;
      height: 3.75rem;
      top: 1.25rem;
      right: 1.25rem;
    }
  }
  .feature3__card-icon img {
    height: auto;
  }
  @media (max-width: 991px) {
    .feature3__card-icon img {
      width: 2.5rem;
      height: 2.5rem;
    }
  }
  .feature3__card-body {
    position: relative;
    z-index: 3;
    padding: 7.5rem 1.875rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: auto;
    max-width: 320px;
  }
  .feature3__card-body:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 340px;
    height: 150px;
    background: rgba(25, 24, 37, 0.7490196078);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.0784313725);
    border-radius: 8px;
    z-index: -1;
  }
  .feature3__card-title {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.9375rem;
    line-height: 1.2;
    transition: all 0.3s ease;
  }
  @media (max-width: 1399px) {
    .feature3__card-title {
      font-size: 1.5rem;
      margin-bottom: 0.625rem;
    }
  }
  .feature3__card-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
  }
  @media (max-width: 1399px) {
    .feature3__card-desc {
      font-size: 0.875rem;
    }
  }
  .feature3__card:hover .feature3__link-bar {
    background-color: #F3A319;
  }
  .feature3__card:hover .feature3__link-bar .shape1 {
    opacity: 0;
    visibility: hidden;
  }
  .feature3__card:hover .feature3__link-bar .shape2 {
    opacity: 1;
    visibility: visible;
  }
  @media (max-width: 1399px) {
    .feature3__card:hover .feature3__link-bar {
      background-image: none;
    }
  }
  .feature3__card:hover .feature3__link-bar .text,
  .feature3__card:hover .feature3__link-bar i {
    color: #ffffff;
  }
  .feature3__card--active .feature3__link-bar {
    background-color: #F3A319;
  }
  .feature3__card--active .feature3__link-bar .shape1 {
    opacity: 0;
    visibility: hidden;
    width: 100%;
  }
  .feature3__card--active .feature3__link-bar .shape2 {
    opacity: 1;
    visibility: visible;
    width: 100%;
  }
  .feature3__card--active .feature3__link-bar .text,
  .feature3__card--active .feature3__link-bar i {
    color: #ffffff;
  }
  .feature3__link-bar {
    position: relative;
    z-index: 4;
    background-color: #ffffff;
    padding: 0.8125rem 0 0.9375rem 2.1875rem;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.4s ease-in-out;
    text-decoration: none;
    border: 2px solid #F3A319;
    border-radius: 8px;
    overflow: hidden;
  }
  @media (max-width: 1399px) {
    .feature3__link-bar {
      padding: 0.6875rem 0 0.6875rem 2.1875rem;
      font-size: 0.75rem;
    }
  }
  .feature3__link-bar .shape1,
  .feature3__link-bar .shape2 {
    position: absolute;
    top: 0;
    right: -30px;
    object-fit: cover;
    z-index: -1;
    transition: all 0.4s ease-in-out;
    width: 100%;
  }
  .feature3__link-bar .shape2 {
    opacity: 0;
    visibility: hidden;
  }
  .feature3__link-bar .text {
    color: #121117;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
  }
  @media (max-width: 1399px) {
    .feature3__link-bar .text {
      font-size: 0.75rem;
    }
  }
  .feature3__link-bar i {
    color: #F3A319;
    font-size: 1.125rem;
    transition: all 0.3s ease;
  }

  /* ===========================
    About 3
    =========================== */
  .about3 {
    overflow: hidden;
  }
  @media (max-width: 991px) {
    .about3__content {
      margin-bottom: 3.125rem;
    }
  }
  .about3__desc {
    font-size: 1rem;
    color: #9DA6AE;
    line-height: 1.75rem;
    margin-bottom: 1.5625rem;
    margin-top: 0.9375rem;
    max-width: 32.5rem;
  }
  .about3__feature-box {
    background: #F1F5F9;
    border-radius: 0.9375rem;
    padding: 28px 38px 28px 10px;
    margin-bottom: 2.1875rem;
  }
  @media (max-width: 575px) {
    .about3__feature-box {
      padding: 1.5625rem;
    }
  }
  @media (max-width: 575px) {
    .about3__feature-thumb {
      margin-bottom: 1.25rem;
      text-align: center;
    }
  }
  .about3__feature-thumb img {
    max-width: 100%;
    height: auto;
  }
  .about3__feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .about3__feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: #121117;
    margin-bottom: 0.75rem;
  }
  @media (max-width: 1399px) {
    .about3__feature-list li {
      font-size: 0.875rem;
    }
  }
  .about3__feature-list li:last-child {
    margin-bottom: 0;
  }
  .about3__feature-list li i {
    color: #F3A319;
    font-size: 0.875rem;
  }
  .about3__icon-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
  .about3__icon-box-icon {
    width: 4.0625rem;
    height: 4.0625rem;
    border: 1.7px solid #F3A319;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #ffffff;
  }
  .about3__icon-box-icon img {
    width: 2.5rem;
    height: auto;
  }
  .about3__icon-box-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #121117;
    line-height: 1.625rem;
    margin: 0;
  }
  @media (max-width: 1399px) {
    .about3__icon-box-title {
      font-size: 1.125rem;
    }
  }
  .about3 .theme__btn {
    margin-top: 2.1875rem;
  }
  .about3__thumb-wrap {
    position: relative;
    padding-top: 2.5rem;
    padding-right: 2.5rem;
  }
  @media (max-width: 991px) {
    .about3__thumb-wrap {
      padding-right: 0;
      padding-top: 0;
    }
  }
  .about3__thumb-main {
    border-radius: 1.25rem;
    overflow: hidden;
  }
  .about3__thumb-main img {
    width: 100%;
    height: auto;
    display: block;
  }
  @media (max-width: 575px) {
    .about3__thumb-main img {
      height: 100%;
    }
  }
  .about3__thumb-video {
    position: absolute;
    top: 0;
    right: -1.25rem;
    width: 16.25rem;
    border-radius: 1.25rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    z-index: 2;
  }
  @media (max-width: 1399px) {
    .about3__thumb-video {
      right: -0.625rem;
      top: 15%;
    }
  }
  @media (max-width: 1199px) {
    .about3__thumb-video {
      right: 0;
      top: 0;
    }
  }
  .about3__thumb-video .img-wrap {
    position: relative;
    border-radius: 0.9375rem;
    overflow: hidden;
    display: block;
  }
  .about3__thumb-video .img-wrap img {
    width: 100%;
    height: auto;
  }
  .about3__video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.4375rem;
    height: 3.4375rem;
    background-color: #F3A319;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  .about3__video-btn:hover {
    background-color: #121117;
    color: #ffffff;
  }
  .about3__experience-badge {
    position: absolute;
    bottom: 2.5rem;
    left: -6.25rem;
    background: #ffffff;
    padding: 0.9375rem 1.875rem;
    border-radius: 6.25rem;
    display: flex;
    align-items: center;
    gap: 1.5625rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    z-index: 2;
  }
  @media (max-width: 1399px) {
    .about3__experience-badge {
      left: -2.5rem;
    }
  }
  @media (max-width: 1199px) {
    .about3__experience-badge {
      left: 0;
      padding: 1.5625rem 2.1875rem;
    }
  }
  @media (max-width: 575px) {
    .about3__experience-badge {
      padding: 0.9375rem 1.5625rem;
      bottom: 0.625rem;
      left: 0.625rem;
    }
  }
  .about3__experience-badge-number {
    font-size: 4.375rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #F3A319;
    line-height: 1;
  }
  @media (max-width: 1399px) {
    .about3__experience-badge-number {
      font-size: 3.125rem;
    }
  }
  @media (max-width: 575px) {
    .about3__experience-badge-number {
      font-size: 2.5rem;
    }
  }
  .about3__experience-badge-text {
    font-size: 1rem;
    font-weight: 800;
    color: #121117;
    line-height: 1.3;
    text-transform: uppercase;
  }
  @media (max-width: 1399px) {
    .about3__experience-badge-text {
      font-size: 0.875rem;
    }
  }
  @media (max-width: 575px) {
    .about3__experience-badge-text {
      font-size: 0.75rem;
    }
  }

  /* ===========================
    Guide 3
    =========================== */
  .guide3 {
    position: relative;
    background-color: #EFF3FA;
    z-index: 1;
    overflow: hidden;
  }
  .guide3 .row {
    margin-bottom: -50px;
  }
  @media (max-width: 1399px) {
    .guide3 .row {
      margin-bottom: 0px;
    }
  }
  .guide3 .container {
    max-width: 1500px;
    margin: 0 auto;
  }
  .guide3__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    mix-blend-mode: multiply;
    z-index: -1;
  }
  .guide3__card1 {
    text-align: start;
    border-bottom: 0.25rem solid #F3A319;
    margin-bottom: 134px;
    margin-right: 50px;
  }
  @media (max-width: 1399px) {
    .guide3__card1 {
      margin-right: 0;
      margin-bottom: 30px;
    }
  }
  .guide3__card2 {
    margin-bottom: 200px;
    margin-right: 50px;
    border-top: 0.25rem solid #F3A319;
  }
  @media (max-width: 1399px) {
    .guide3__card2 {
      margin-right: 0;
      margin-bottom: 0px;
    }
  }
  .guide3__card3 {
    margin-bottom: 134px;
    margin-left: 50px;
    border-bottom: 0.25rem solid #F3A319;
  }
  @media (max-width: 1399px) {
    .guide3__card3 {
      margin-left: 0;
      margin-bottom: 30px;
    }
  }
  .guide3__card4 {
    margin-left: 50px;
    border-top: 0.25rem solid #F3A319;
    margin-bottom: 200px;
  }
  @media (max-width: 1399px) {
    .guide3__card4 {
      margin-left: 0;
      margin-bottom: 0px;
    }
  }
  .guide3__card5 {
    border-top: 0.25rem solid #F3A319;
  }
  .guide3__card {
    background: #ffffff;
    border-radius: 0.9375rem;
    padding: 1.875rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
  }
  .guide3__card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  @media (max-width: 1399px) {
    .guide3__card {
      padding: 1.25rem;
      gap: 0.9375rem;
    }
  }
  @media (max-width: 1199px) {
    .guide3__card {
      padding: 1.5625rem;
      gap: 0.9375rem;
    }
  }
  @media (max-width: 991px) {
    .guide3__card {
      justify-content: center;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
  }
  @media (max-width: 575px) {
    .guide3__card {
      flex-direction: column;
      text-align: center;
    }
    .guide3__card--reverse {
      flex-direction: column;
      text-align: center;
    }
  }
  .guide3__card-icon {
    width: 5rem;
    height: 5rem;
    background: #F1F5F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  @media (max-width: 1399px) {
    .guide3__card-icon {
      width: 3.75rem;
      height: 3.75rem;
    }
  }
  .guide3__card-icon img {
    width: 2.8125rem;
    height: auto;
  }
  @media (max-width: 1399px) {
    .guide3__card-icon img {
      width: 2.1875rem;
    }
  }
  .guide3__card-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: #121117;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    text-align: start;
    max-width: 205px;
  }
  @media (max-width: 1399px) {
    .guide3__card-title {
      font-size: 1.25rem;
      max-width: 100%;
    }
  }
  .guide3__card-desc {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #9DA6AE;
    margin-bottom: 0;
    text-align: start;
  }
  @media (max-width: 1399px) {
    .guide3__card-desc {
      font-size: 0.875rem;
    }
  }
  .guide3__card--reverse {
    flex-direction: row-reverse;
    text-align: right;
    padding-right: 1.875rem;
  }
  @media (max-width: 1199px) {
    .guide3__card--reverse {
      padding-right: 1.5625rem;
    }
  }
  @media (max-width: 575px) {
    .guide3__card--reverse {
      padding-right: 1.5625rem;
      flex-direction: column-reverse;
    }
  }
  .guide3__thumb-wrap {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .guide3__thumb {
    position: relative;
    width: 100%;
    max-width: 26.25rem;
    border-radius: 1.25rem;
    overflow: hidden;
    z-index: 2;
    margin-bottom: 50px;
  }
  .guide3__thumb-shape1 {
    position: absolute;
    top: 29%;
    left: -130px;
    transform: translateY(-29%);
    z-index: 1;
  }
  @media (max-width: 1399px) {
    .guide3__thumb-shape1 {
      display: none;
    }
  }
  .guide3__thumb-shape2 {
    position: absolute;
    top: 29%;
    right: -130px;
    transform: translateY(-29%);
    z-index: 1;
  }
  @media (max-width: 1399px) {
    .guide3__thumb-shape2 {
      display: none;
    }
  }
  .guide3__thumb-shape3 {
    position: absolute;
    left: 50%;
    bottom: 188px;
    transform: translateX(-50%);
    z-index: 1;
  }
  @media (max-width: 1399px) {
    .guide3__thumb-shape3 {
      display: none;
    }
  }
  .guide3__thumb img {
    width: 100%;
    height: auto;
    display: block;
  }

  .blog1__card {
    position: relative;
  }
  .blog1__card::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(25, 24, 37, 0) 0%, #191825 100%);
    z-index: 2;
    border-radius: 15px;
  }
  .blog1__card-thumb {
    position: relative;
    border-radius: 15px;
  }
  .blog1__card-thumb img {
    border-radius: 15px;
    width: 100%;
  }
  .blog1__card-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 3;
  }
  .blog1__card-top {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  @media (max-width: 1399px) {
    .blog1__card-top {
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 20px;
    }
  }
  @media (max-width: 575px) {
    .blog1__card-top {
      margin-bottom: 10px;
      gap: 5px;
    }
  }
  .blog1__card-date {
    width: 65px;
    height: 90px;
    border-radius: 50px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 22px;
    letter-spacing: -2%;
    text-align: center;
    color: #F3A319;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: none;
  }
  @media (max-width: 1399px) {
    .blog1__card-date {
      width: 50px;
      height: 70px;
      font-size: 18px;
    }
  }
  @media (max-width: 1399px) {
    .blog1__card-date {
      width: 50px;
      height: 70px;
      font-size: 18px;
    }
  }
  .blog1__card-date span {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -2%;
    text-align: center;
    color: #000;
  }
  @media (max-width: 1399px) {
    .blog1__card-date span {
      font-size: 12px;
      line-height: 18px;
    }
  }
  .blog1__card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .blog1__card-metaitem {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
  }
  .blog1__card-metaitem i {
    color: #fff;
    font-size: 14px;
  }
  .blog1__card-metaitem span {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 34px;
    letter-spacing: -2%;
    color: #fff;
  }
  @media (max-width: 767px) {
    .blog1__card-metaitem span {
      font-size: 12px;
    }
  }
  .blog1__card-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -2%;
    color: #fff;
    margin-bottom: 18px;
  }
  @media (max-width: 1199px) {
    .blog1__card-title {
      margin-bottom: 5px;
      font-size: 23px;
    }
  }
  @media (max-width: 767px) {
    .blog1__card-title {
      font-size: 20px;
      line-height: 1.3;
    }
  }
  .blog1__card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 50px;
    padding: 8px 8px 8px 14px;
    margin-inline-end: 22px;
  }
  @media (max-width: 767px) {
    .blog1__card-bottom {
      margin-right: 10px;
    }
  }
  .blog1__card-profile {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .blog1__card-profilethumb {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }
  .blog1__card-profilethumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  .blog1__card-profileinfo {
    display: flex;
    flex-direction: column;
  }
  .blog1__card-profiledesignation {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #888;
  }
  @media (max-width: 767px) {
    .blog1__card-profiledesignation {
      font-size: 10px;
    }
  }
  .blog1__card-profilename {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
    color: #191825;
  }
  @media (max-width: 767px) {
    .blog1__card-profilename {
      font-size: 12px;
    }
  }
  .blog1__card-readmore {
    margin-right: -30px;
  }
  @media (max-width: 767px) {
    .blog1__card-readmore {
      margin-right: -20px;
    }
  }
  .blog1__card-readmore a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 48px;
    border-radius: 100px;
    background: #F3A319;
    color: #fff;
    font-size: 16px;
    transition: background 0.3s ease;
    flex-shrink: 0;
  }
  @media (max-width: 767px) {
    .blog1__card-readmore a {
      width: 60px;
      height: 40px;
      font-size: 14px;
    }
  }
  .blog1__card-readmore a:hover {
    background: #0059b3;
  }
  .blog1__card-readmore a i {
    line-height: 1;
  }

  .breadcrumb-section {
    position: relative;
    width: 100%;
    padding: 14.375rem 0 8.4375rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
    margin-top: -110px;
  }
  @media (max-width: 1699px) {
    .breadcrumb-section {
      padding: 14.375rem 0 8.4375rem;
    }
  }
  .breadcrumb-section__content {
    position: relative;
    z-index: 2;
  }
  .breadcrumb-section__breadcrumb {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 0.625rem 1.875rem;
    border-radius: 3.125rem;
    margin-bottom: 1.5625rem;
  }
  .breadcrumb-section__breadcrumb-dash {
    width: 0.9375rem;
    height: 0.25rem;
    background: #121117;
    margin-right: 0.9375rem;
    border-radius: 0.125rem;
  }
  .breadcrumb-section__breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .breadcrumb-section__breadcrumb-item {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
  }
  .breadcrumb-section__breadcrumb-item a {
    color: #F3A319;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .breadcrumb-section__breadcrumb-item a:hover {
    color: rgb(0, 86.1, 178.5);
  }
  .breadcrumb-section__breadcrumb-item.active {
    color: #F3A319;
  }
  .breadcrumb-section__breadcrumb-sep {
    color: #F3A319;
    font-weight: 700;
  }
  .breadcrumb-section__title {
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.1;
  }
  @media (max-width: 991px) {
    .breadcrumb-section__title {
      font-size: 3.75rem;
    }
  }
  @media (max-width: 767px) {
    .breadcrumb-section__title {
      font-size: 3rem;
    }
  }
  @media (max-width: 575px) {
    .breadcrumb-section__title {
      font-size: 2.25rem;
    }
  }
  .breadcrumb-section--location {
    padding: 13.5rem 0 7.5rem;
  }
  .location-breadcrumb__content .breadcrumb-section__title {
    max-width: 11ch;
    font-size: clamp(2.75rem, 4vw + 1rem, 4.75rem);
  }
  .location-breadcrumb__text {
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 1.25rem;
    margin-bottom: 0;
  }
  .location-breadcrumb__panel {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(243, 163, 25, 0.22);
    border-radius: 1.5rem;
    padding: 1.75rem;
    box-shadow: 0 24px 60px rgba(18, 17, 23, 0.18);
  }
  .location-breadcrumb__panel-title {
    font-size: 1.5rem;
    line-height: 1.2;
    color: #121117;
    margin-bottom: 0.625rem;
  }
  .location-breadcrumb__panel-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #68707a;
    margin-bottom: 1rem;
  }
  .location-breadcrumb__fields .form-group {
    margin-bottom: 0.75rem;
  }
  .location-breadcrumb__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .location-breadcrumb__row .form-group {
    margin-bottom: 0;
  }
  .location-breadcrumb__fields input,
  .location-breadcrumb__fields select {
    width: 100%;
    height: 3.4375rem;
    background: #f7f9fc;
    border: none;
    border-radius: 0.875rem;
    padding: 0 1.125rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #5f6670;
    outline: none;
  }
  .location-breadcrumb__fields input::placeholder,
  .location-breadcrumb__fields select::placeholder {
    color: #9DA6AE;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
  }
  .location-breadcrumb__fields select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%239DA6AE' d='M201.4 342.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 274.7 86.6 137.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.125rem center;
    background-size: 0.875rem;
  }
  .location-breadcrumb__fields input.contact__field--invalid,
  .location-breadcrumb__fields select.contact__field--invalid {
    border: 1px solid #ef4444;
  }
  .location-breadcrumb__submit {
    width: 100%;
    height: 3.75rem;
    border: none;
    border-radius: 999px;
    background: #F3A319;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
  }
  .location-breadcrumb__submit:hover {
    background: #121117;
  }
  .location-breadcrumb__submit:disabled {
    opacity: 0.72;
    cursor: wait;
  }
  .location-page {
    background: #ffffff;
  }
  .location-page__intro-card,
  .location-page__content-card,
  .location-page__faq-card {
    background: #ffffff;
    border: 1px solid rgba(243, 163, 25, 0.18);
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(18, 17, 23, 0.08);
  }
  .location-page__intro-card,
  .location-page__content-card,
  .location-page__faq-card {
    padding: 2.5rem;
  }
  .location-page__intro-card,
  .location-page__content-card {
    margin-bottom: 2rem;
  }
  .location-page__intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.78fr);
    gap: 2rem;
    align-items: center;
  }
  .location-page__lead {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #5f6670;
  }
  .location-page__link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-top: 1.5rem;
  }
  .location-page__inline-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.9375rem 1.25rem;
    border-radius: 999px;
    background: #121117;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(18, 17, 23, 0.18);
    transition: all 0.3s ease;
  }
  .location-page__inline-btn:hover {
    background: #F3A319;
    color: #ffffff;
    text-decoration: none;
  }
  .location-page__inline-btn--alt {
    background: #f7f9fc;
    color: #121117;
    box-shadow: 0 14px 30px rgba(18, 17, 23, 0.08);
  }
  .location-page__image img {
    width: 100%;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 1.25rem;
  }
  .location-page__feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .location-page__card,
  .location-page__course-card,
  .location-page__check-item {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    border: 1px solid #eef1f5;
    border-radius: 1.375rem;
    box-shadow: 0 18px 40px rgba(18, 17, 23, 0.08);
  }
  .location-page__card,
  .location-page__course-card {
    padding: 1.625rem;
    height: 100%;
  }
  .location-page__card-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1rem;
    background: #fff5df;
    color: #F3A319;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  .location-page__card h3 {
    font-size: 1.375rem;
    line-height: 1.25;
    color: #121117;
    margin-bottom: 0.75rem;
  }
  .location-page__card p,
  .location-page__course-card p {
    color: #68707a;
    line-height: 1.75;
    margin-bottom: 0;
  }
  .location-page__section-head {
    max-width: 48rem;
    margin-bottom: 1.5rem;
  }
  .location-page__course-wrap {
    background: #FFE8B3;
    border: 1px solid rgba(243, 163, 25, 0.28);
    border-radius: 1.75rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
  }
  .location-page__section-head h3 {
    font-size: clamp(1.75rem, 1.4vw + 1.1rem, 2.5rem);
    color: #121117;
    margin-bottom: 0.75rem;
  }
  .location-page__section-head p {
    color: #68707a;
    line-height: 1.8;
    margin: 0;
  }
  .location-page__course-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 0;
  }
  .location-page__course-card h4 {
    font-size: 1.25rem;
    line-height: 1.35;
    color: #121117;
    margin-bottom: 0.625rem;
  }
  .location-page__course-card p {
    margin-bottom: 1rem;
  }
  .location-page__course-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #F3A319;
    text-decoration: none;
  }
  .location-page__course-card a:hover {
    text-decoration: underline;
  }
  .location-page__course-card--cta {
    background: #121117;
    border-color: #121117;
  }
  .location-page__course-card--cta h4,
  .location-page__course-card--cta p,
  .location-page__course-card--cta a {
    color: #ffffff;
  }
  .location-page__course-card--cta a {
    text-decoration: none;
  }
  .location-page__course-card--cta a:hover {
    color: #FFE8B3;
    text-decoration: none;
  }
  .location-page__check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
    margin: 1.5rem 0;
  }
  .location-page__check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.125rem;
  }
  .location-page__check-item i {
    color: #F3A319;
    margin-top: 0.25rem;
  }
  .location-page__check-item span {
    color: #5f6670;
    line-height: 1.7;
  }
  @media (max-width: 1199px) {
    .location-page__intro-grid {
      grid-template-columns: 1fr;
    }
    .location-page__feature-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .location-page__course-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 991px) {
    .breadcrumb-section--location {
      padding: 12.5rem 0 6rem;
    }
    .location-breadcrumb__panel {
      margin-top: 0.5rem;
    }
  }
  @media (max-width: 767px) {
    .location-page__intro-card,
    .location-page__content-card,
    .location-page__faq-card {
      padding: 1.5rem;
    }
    .location-page__course-wrap {
      padding: 1.5rem;
    }
    .location-breadcrumb__row {
      grid-template-columns: 1fr;
    }
    .location-page__feature-grid,
    .location-page__course-grid,
    .location-page__check-grid {
      grid-template-columns: 1fr;
    }
    .location-page__inline-btn {
      width: 100%;
      justify-content: center;
    }
  }

  .form-select:focus {
    border-color: transparent !important;
    outline: 0;
    box-shadow: none !important;
  }

  .service-details {
    position: relative;
    padding: 6.25rem 0;
  }
  @media (max-width: 1399px) {
    .service-details {
      padding: 5.625rem 0;
    }
  }
  @media (max-width: 1199px) {
    .service-details {
      padding: 5rem 0;
    }
  }
  @media (max-width: 991px) {
    .service-details {
      padding: 4.375rem 0;
    }
  }
  @media (max-width: 767px) {
    .service-details {
      padding: 3.75rem 0;
    }
  }
  @media (max-width: 575px) {
    .service-details {
      padding: 3.125rem 0;
    }
  }
  .service-details__content {
    padding-right: 1.875rem;
  }
  @media (max-width: 991px) {
    .service-details__content {
      padding-right: 0;
    }
  }
  .service-details__title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: -2%;
    margin-bottom: 1.25rem;
    color: #191825;
  }
  @media (max-width: 1199px) {
    .service-details__title {
      font-size: 1.75rem;
    }
  }
  @media (max-width: 991px) {
    .service-details__title {
      font-size: 1.5rem;
    }
  }
  @media (max-width: 767px) {
    .service-details__title {
      font-size: 1.25rem;
    }
  }
  @media (max-width: 575px) {
    .service-details__title {
      font-size: 1.5rem;
    }
  }
  .service-details__subtitle {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: -2%;
    margin-bottom: 1.875rem;
    color: #191825;
  }
  @media (max-width: 1199px) {
    .service-details__subtitle {
      font-size: 26px;
    }
  }
  @media (max-width: 767px) {
    .service-details__subtitle {
      font-size: 24px;
      margin-bottom: 1.25rem;
    }
  }
  .service-details__subtitle-two {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -2%;
    margin-bottom: 30px;
  }
  @media (max-width: 1199px) {
    .service-details__subtitle-two {
      font-size: 22px;
    }
  }
  @media (max-width: 767px) {
    .service-details__subtitle-two {
      font-size: 20px;
    }
  }
  .service-details__text {
    color: #878C8F;
    margin-bottom: 1.875rem;
    line-height: 1.5;
  }
  @media (max-width: 767px) {
    .service-details__text {
      font-size: 0.9375rem;
      margin-bottom: 1.25rem;
    }
  }
  .service-details__sub-section {
    margin-top: 3.125rem;
    margin-bottom: 1.875rem;
  }
  @media (max-width: 1199px) {
    .service-details__sub-section {
      margin-top: 1.875rem;
      margin-bottom: 10px;
    }
  }
  .service-details__mistakes-img {
    border-radius: 0.625rem;
    overflow: hidden;
  }
  .service-details__mistakes-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .service-details__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .service-details__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    margin-bottom: 1.25rem;
    color: #878C8F;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.75rem;
    letter-spacing: 0%;
  }
  .service-details__list li:last-child {
    margin-bottom: 0;
  }
  @media (max-width: 767px) {
    .service-details__list li {
      font-size: 0.9375rem;
      margin-bottom: 0.9375rem;
    }
  }
  .service-details__list li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: #F3A319;
    font-size: 1.125rem;
  }
  @media (max-width: 767px) {
    .service-details__list li i {
      font-size: 1rem;
    }
  }
  .service-details__doc-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2.5rem;
    flex-wrap: wrap;
  }
  @media (max-width: 767px) {
    .service-details__doc-wrapper {
      gap: 1.25rem;
    }
  }
  .service-details__doc-item {
    display: flex;
    gap: 1.25rem;
    border-radius: 0.9375rem;
    height: 100%;
    transition: transform 0.3s ease;
    max-width: 342px;
  }
  @media (max-width: 1199px) {
    .service-details__doc-item {
      max-width: 100%;
    }
  }
  .service-details__doc-item:hover {
    transform: translateY(-5px);
  }
  .service-details__doc-item-icon i {
    font-size: 2.8125rem;
    color: #F3A319;
  }
  @media (max-width: 767px) {
    .service-details__doc-item-icon i {
      font-size: 2.1875rem;
    }
  }
  .service-details__doc-item-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: #191825;
  }
  @media (max-width: 767px) {
    .service-details__doc-item-info h4 {
      font-size: 1.125rem;
    }
  }
  .service-details__doc-item-info p {
    margin: 0;
    color: #878C8F;
    font-size: 0.9375rem;
  }
  @media (max-width: 767px) {
    .service-details__doc-item-info p {
      font-size: 0.875rem;
    }
  }
  .service-details__sidebar {
    padding-left: 1.25rem;
  }
  @media (max-width: 991px) {
    .service-details__sidebar {
      padding-left: 0;
    }
  }
  .service-details__widget {
    background: #f1f3f9;
    padding: 2.5rem 1.875rem;
    border-radius: 0.625rem;
    margin-bottom: 1.875rem;
  }
  .service-details__widget:last-child {
    margin-bottom: 0;
  }
  @media (max-width: 1199px) {
    .service-details__widget {
      padding: 1.875rem 1.5625rem;
    }
  }
  @media (max-width: 575px) {
    .service-details__widget {
      padding: 1.5625rem 1.25rem;
    }
  }
  .service-details__widget-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #191825;
    margin-bottom: 1.875rem;
    display: inline-block;
  }
  @media (max-width: 1199px) {
    .service-details__widget-title {
      font-size: 1.375rem;
      margin-bottom: 1.5625rem;
    }
  }
  @media (max-width: 575px) {
    .service-details__widget-title {
      font-size: 1.25rem;
      margin-bottom: 1.25rem;
    }
  }
  .service-details__search-inner {
    position: relative;
    background: #fff;
    border-radius: 0.5rem;
    padding: 0.3125rem;
    display: flex;
    align-items: center;
  }
  .service-details__search input {
    flex: 1;
    height: 3.125rem;
    border: none;
    background: transparent;
    padding: 0 1.5625rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #878C8F;
    outline: none;
  }
  @media (max-width: 575px) {
    .service-details__search input {
      padding: 0 0.9375rem;
      font-size: 0.875rem;
    }
  }
  .service-details__search input::placeholder {
    color: #9DA6AE;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
  }
  .service-details__search button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: 2.8125rem;
    height: 2.8125rem;
    background: #F3A319;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    flex: none;
  }
  @media (max-width: 575px) {
    .service-details__search button {
      width: 2.5rem;
      height: 2.5rem;
      font-size: 1.125rem;
    }
  }
  .service-details__search button:hover {
    background: #191825;
  }
  .service-details__cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .service-details__cat-list li {
    margin-bottom: 0.9375rem;
  }
  .service-details__cat-list li:last-child {
    margin-bottom: 0;
  }
  .service-details__cat-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 7px 7px 7px 20px;
    border-radius: 0.5rem;
    color: #878C8F;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: -2%;
  }
  @media (max-width: 1199px) {
    .service-details__cat-list li a {
      font-size: 1rem;
      padding: 6px 6px 6px 15px;
    }
  }
  @media (max-width: 575px) {
    .service-details__cat-list li a {
      font-size: 0.9375rem;
    }
  }
  .service-details__cat-list li a .count {
    background: #f1f3f9;
    color: #191825;
    width: 2.8125rem;
    height: 2.8125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1.5625rem;
    letter-spacing: 0%;
    text-align: center;
    background: #EFF3FA;
    flex-shrink: 0;
    margin-left: 0.75rem;
  }
  .service-details__cat-list li a .count i {
    font-size: 0.9375rem;
    line-height: 1;
  }
  @media (max-width: 1199px) {
    .service-details__cat-list li a .count {
      width: 2.5rem;
      height: 2.5rem;
      font-size: 0.875rem;
    }
  }
  .service-details__cat-list li a:hover, .service-details__cat-list li a.active {
    color: #191825;
  }
  .service-details__cat-list li a:hover .count, .service-details__cat-list li a.active .count {
    background: #F3A319;
    color: #fff;
  }
  .service-details__cat-list li.active a {
    color: #191825;
  }
  .service-details__cat-list li.active a .count {
    background: #F3A319;
    color: #fff;
  }
  .service-details__quote-form .form-group {
    margin-bottom: 0.9375rem;
  }
  .service-details__quote-form input,
  .service-details__quote-form select,
  .service-details__quote-form textarea {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 0.625rem;
    height: 4.0625rem;
    padding: 0 1.875rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #878C8F;
    outline: none;
    appearance: none;
  }
  @media (max-width: 1199px) {
    .service-details__quote-form input,
    .service-details__quote-form select,
    .service-details__quote-form textarea {
      height: 3.4375rem;
      padding: 0 1.25rem;
      font-size: 0.875rem;
    }
  }
  .service-details__quote-form input::placeholder,
  .service-details__quote-form select::placeholder,
  .service-details__quote-form textarea::placeholder {
    color: #9DA6AE;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
  }
  .service-details__quote-form textarea {
    height: 11.25rem;
    padding-top: 1.5625rem;
    resize: none;
  }
  @media (max-width: 1199px) {
    .service-details__quote-form textarea {
      height: 8.75rem;
      padding-top: 0.9375rem;
    }
  }
  .service-details__quote-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%239DA6AE' d='M201.4 342.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 274.7 86.6 137.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.875rem center;
    background-size: 0.9375rem;
  }
  @media (max-width: 1199px) {
    .service-details__quote-form select {
      background-position: right 1.25rem center;
    }
  }
  .service-details__quote-form .submit-btn {
    width: 100%;
    height: 5rem;
    background: #F3A319;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    border-radius: 2.5rem;
    border: none;
    display: flex;
    align-items: center;
    padding-left: 2.5rem;
    position: relative;
    overflow: hidden;
    margin-top: 1.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  @media (max-width: 1199px) {
    .service-details__quote-form .submit-btn {
      height: 4.0625rem;
      padding-left: 1.875rem;
      font-size: 0.875rem;
    }
  }
  .service-details__quote-form .submit-btn::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background: #000;
    width: 7.5rem;
    height: 7.5rem;
    position: absolute;
    right: -0.9375rem;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border-radius: 40% 60% 40% 60%/50%;
    padding-right: 0.9375rem;
    transition: all 0.3s ease;
  }
  @media (max-width: 1199px) {
    .service-details__quote-form .submit-btn::after {
      width: 6.25rem;
      height: 6.25rem;
      font-size: 1rem;
    }
  }
  .service-details__quote-form .submit-btn:hover {
    background: #191825;
  }
  .service-details__quote-form .submit-btn:hover::after {
    right: 0;
    color: #F3A319;
  }
  .service-details__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .service-details__tags .tag-link {
    background: #fff;
    padding: 0.8125rem 1.25rem;
    border-radius: 0.625rem;
    color: #191825;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0%;
    text-transform: capitalize;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  @media (max-width: 1199px) {
    .service-details__tags .tag-link {
      padding: 0.625rem 0.9375rem;
      font-size: 0.875rem;
    }
  }
  .service-details__tags .tag-link:hover {
    background: #F3A319;
    color: #fff;
  }
  .service-details__faq {
    margin-top: 3.125rem;
  }
  @media (max-width: 767px) {
    .service-details__faq {
      margin-top: 1.875rem;
    }
  }
  .service-details__faq .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 1.25rem;
    border-radius: 8px;
  }
  .service-details__faq .accordion-item:last-child {
    margin-bottom: 0;
  }
  .service-details__faq .accordion-button {
    background: #fff;
    border: 0.0625rem solid rgba(0, 0, 0, 0.1490196078);
    border-radius: 0.5rem !important;
    padding: 1.875rem 2.5rem;
    font-size: 1.375rem;
    font-weight: 700;
    color: #191825;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 1.5625rem;
    flex-direction: row;
  }
  @media (max-width: 1199px) {
    .service-details__faq .accordion-button {
      padding: 1.25rem 1.5625rem;
      font-size: 1.125rem;
      gap: 0.9375rem;
    }
  }
  .service-details__faq .accordion-button::before {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.25rem;
    color: #9DA6AE;
    transition: all 0.3s ease;
  }
  @media (max-width: 1199px) {
    .service-details__faq .accordion-button::before {
      font-size: 1rem;
    }
  }
  .service-details__faq .accordion-button::after {
    display: none;
  }
  .service-details__faq .accordion-button:not(.collapsed) {
    background: #f1f3f9;
    border-color: #f1f3f9;
    color: #191825;
  }
  .service-details__faq .accordion-button:not(.collapsed)::before {
    transform: rotate(180deg);
    color: #F3A319;
  }
  .service-details__faq .accordion-body {
    background: #EFF3FA;
    padding: 1.25rem 2.5rem 1.875rem 5.3125rem;
    color: #878C8F;
    font-size: 1.0625rem;
    line-height: 1.5;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  @media (max-width: 1199px) {
    .service-details__faq .accordion-body {
      padding: 1.25rem 1.5625rem 1.25rem 3.4375rem;
      font-size: 0.9375rem;
    }
  }
  .service-details__faq .accordion-item .accordion-button:not(.collapsed) {
    background: #f1f3f9;
    padding-bottom: 0;
  }

  .course-details {
    position: relative;
    padding: 6.25rem 0;
  }
  @media (max-width: 1399px) {
    .course-details {
      padding: 5.625rem 0;
    }
  }
  @media (max-width: 1199px) {
    .course-details {
      padding: 5rem 0;
    }
  }
  @media (max-width: 991px) {
    .course-details {
      padding: 4.375rem 0;
    }
  }
  @media (max-width: 767px) {
    .course-details {
      padding: 3.75rem 0;
    }
  }
  @media (max-width: 575px) {
    .course-details {
      padding: 3.125rem 0;
    }
  }
  .course-details__main-thumb {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    margin-bottom: 2.5rem;
  }
  @media (max-width: 767px) {
    .course-details__main-thumb {
      margin-bottom: 1.875rem;
    }
  }
  .course-details__main-thumb img {
    width: 100%;
    height: auto;
    display: block;
  }
  .course-details__main-thumb .price-tag {
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    background: #fff;
    padding: 0.9375rem 1.25rem;
    text-align: center;
    z-index: 2;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  @media (max-width: 575px) {
    .course-details__main-thumb .price-tag {
      padding: 0.625rem 0.9375rem;
    }
  }
  .course-details__main-thumb .price-tag div {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: -2%;
    text-align: center;
    text-transform: capitalize;
    margin: 0;
  }
  @media (max-width: 575px) {
    .course-details__main-thumb .price-tag div {
      font-size: 20px;
    }
  }
  .course-details__main-thumb .price-tag span {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    display: block;
    color: #878C8F;
  }
  @media (max-width: 575px) {
    .course-details__main-thumb .price-tag span {
      font-size: 12px;
      line-height: 22px;
    }
  }
  .course-details__content {
    padding-right: 1.875rem;
  }
  @media (max-width: 991px) {
    .course-details__content {
      padding-right: 0;
      margin-bottom: 2.5rem;
    }
  }
  .course-details__title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: -2%;
    margin-bottom: 30px;
    color: #191825;
  }
  @media (max-width: 1199px) {
    .course-details__title {
      font-size: 26px;
    }
  }
  @media (max-width: 767px) {
    .course-details__title {
      font-size: 24px;
      margin-bottom: 20px;
    }
  }
  @media (max-width: 575px) {
    .course-details__title {
      font-size: 22px;
    }
  }
  .course-details__text {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 1.875rem;
    color: #878C8F;
  }
  @media (max-width: 767px) {
    .course-details__text {
      font-size: 15px;
      line-height: 26px;
      margin-bottom: 1.25rem;
    }
  }
  .course-details__sub-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 30px;
    color: #191825;
  }
  @media (max-width: 1199px) {
    .course-details__sub-title {
      font-size: 26px;
    }
  }
  @media (max-width: 767px) {
    .course-details__sub-title {
      font-size: 24px;
      margin-bottom: 20px;
    }
  }
  .course-details__features {
    margin: 2.5rem 0;
  }
  @media (max-width: 767px) {
    .course-details__features {
      margin: 1.875rem 0 10px;
    }
  }
  .course-details__features-img {
    border-radius: 0.9375rem;
    overflow: hidden;
    margin-bottom: 1.25rem;
  }
  .course-details__features-img img {
    width: 100%;
    height: auto;
  }
  .course-details__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .course-details__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    margin-bottom: 1.25rem;
    color: #878C8F;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
  }
  @media (max-width: 767px) {
    .course-details__list li {
      font-size: 15px;
      margin-bottom: 0.9375rem;
    }
  }
  .course-details__list li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: #F3A319;
    font-size: 1rem;
  }
  .course-details__resources {
    margin: 3.125rem 0;
  }
  @media (max-width: 767px) {
    .course-details__resources {
      margin: 1.875rem 0;
    }
  }
  .course-details__card {
    background: #EFF3FA;
    padding: 30px;
    border-radius: 0.9375rem;
    height: 100%;
    transition: all 0.3s ease;
  }
  @media (max-width: 1199px) {
    .course-details__card {
      padding: 25px;
    }
  }
  .course-details__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.05);
  }
  .course-details__card div {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #191825;
    margin-bottom: 21px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  @media (max-width: 1199px) {
    .course-details__card div {
      font-size: 24px;
      gap: 15px;
    }
  }
  @media (max-width: 575px) {
    .course-details__card div {
      font-size: 20px;
    }
  }
  .course-details__card p {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    margin-bottom: 1.875rem;
    color: #878C8F;
  }
  @media (max-width: 767px) {
    .course-details__card p {
      font-size: 15px;
      line-height: 26px;
      margin-bottom: 1.25rem;
    }
  }
  .course-details__enroll {
    margin-top: 3.125rem;
    padding-top: 1.875rem;
    border-top: 0.0625rem solid #eee;
  }
  @media (max-width: 767px) {
    .course-details__enroll {
      margin-top: 0.3125rem;
      padding-top: 0.625rem;
    }
  }
  .course-details .organic-btn {
    display: inline-flex;
    align-items: center;
    background: #F3A319;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    border-radius: 2.1875rem;
    height: 4.0625rem;
    padding: 0 0.3125rem 0 1.875rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  @media (max-width: 575px) {
    .course-details .organic-btn {
      height: 3.4375rem;
      padding: 0 0.3125rem 0 1.25rem;
      font-size: 0.75rem;
    }
  }
  .course-details .organic-btn .btn-text {
    flex: 1;
    margin-right: 1.25rem;
  }
  .course-details .organic-btn .btn-icon {
    background: #000;
    width: 5rem;
    height: 3.4375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40% 60% 40% 60%/50%;
    font-size: 1.125rem;
    transition: all 0.3s ease;
  }
  @media (max-width: 575px) {
    .course-details .organic-btn .btn-icon {
      width: 3.75rem;
      height: 2.8125rem;
      font-size: 1rem;
    }
  }
  .course-details .organic-btn:hover {
    background: #121117;
  }
  .course-details .organic-btn:hover .btn-icon {
    background: #F3A319;
  }
  .course-details .organic-btn--small {
    height: 3.4375rem;
    padding-left: 1.25rem;
  }
  .course-details .organic-btn--small .btn-icon {
    width: 3.75rem;
    height: 2.8125rem;
  }
  .course-details__sidebar {
    padding-left: 1.25rem;
  }
  @media (max-width: 991px) {
    .course-details__sidebar {
      padding-left: 0;
    }
  }
  .course-details__widget {
    background: #f1f3f9;
    padding: 2.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2.5rem;
  }
  .course-details__widget:last-child {
    margin-bottom: 0;
  }
  @media (max-width: 1199px) {
    .course-details__widget {
      padding: 1.875rem;
    }
  }
  @media (max-width: 575px) {
    .course-details__widget {
      padding: 1.5625rem;
    }
  }
  .course-details__widget-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -2%;
    color: #121117;
    margin-bottom: 25px;
  }
  @media (max-width: 575px) {
    .course-details__widget-title {
      font-size: 20px;
      margin-bottom: 20px;
    }
  }
  .course-details__info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.875rem 0;
  }
  .course-details__info-list li {
    background: #fff;
    padding: 1.1875rem 1.5625rem;
    border-radius: 0.5rem;
    margin-bottom: 0.9375rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 500;
  }
  @media (max-width: 575px) {
    .course-details__info-list li {
      padding: 0.75rem 0.9375rem;
      font-size: 0.875rem;
    }
  }
  .course-details__info-list li .label {
    color: #121117;
    font-weight: 700;
  }
  .course-details__info-list li .value {
    color: #9DA6AE;
  }
  .course-details__reviews-card {
    background: #fff;
    padding: 1.875rem;
    border-radius: 0.9375rem;
    margin-bottom: 1.875rem;
  }
  @media (max-width: 575px) {
    .course-details__reviews-card {
      padding: 1.25rem;
    }
  }
  .course-details__reviews-card .stars-box {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
  }
  .course-details__reviews-card .stars-box .stars {
    color: #F3A319;
    font-size: 1rem;
    display: flex;
    gap: 0.25rem;
  }
  .course-details__reviews-card .stars-box .count {
    color: #121117;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    letter-spacing: -2%;
  }
  @media (max-width: 575px) {
    .course-details__reviews-card .stars-box .count {
      font-size: 16px;
    }
  }
  .course-details__reviews-card .review-text {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #878C8F;
    margin: 0;
  }
  @media (max-width: 575px) {
    .course-details__reviews-card .review-text {
      font-size: 14px;
      line-height: 24px;
    }
  }

  .project__header {
    margin-bottom: 3.125rem;
  }
  .project__subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: #F3A319;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.9375rem;
    letter-spacing: 0.0625rem;
  }
  .project__subtitle::before {
    content: ">>>";
    margin-right: 0.625rem;
  }
  .project__title {
    font-size: 2.625rem;
    font-weight: 800;
    color: #121117;
    line-height: 1.2;
    margin: 0;
  }
  @media (max-width: 767px) {
    .project__title {
      font-size: 2rem;
    }
  }
  .project__item {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    cursor: pointer;
  }
  .project__item:hover .project__hover-card {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 12%);
  }
  .project__item:hover .project__img img {
    transform: scale(1.1);
  }
  .project__img {
    overflow: hidden;
  }
  .project__img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
  }
  .project__hover-card {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    width: 90%;
    background: #fff;
    padding: 1.875rem;
    border-radius: 0.9375rem;
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -15%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    max-width: 420px;
  }
  .project__hover-card .tag {
    display: inline-block;
    background: #F3A319;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 0.9375rem;
    text-transform: uppercase;
  }
  .project__hover-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #121117;
    margin-bottom: 0.625rem;
    transition: color 0.3s ease;
  }
  .project__hover-card h3:hover {
    color: #F3A319;
  }
  .project__hover-card p {
    font-size: 0.875rem;
    color: #9DA6AE;
    margin-bottom: 0;
    line-height: 1.5;
  }
  .project__hover-card .arrow-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 4.6875rem;
    height: 3.125rem;
    background: #1C1B21;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  @media (max-width: 575px) {
    .project__hover-card .arrow-btn {
      font-size: 0.75rem;
      width: 3.125rem;
      height: 2.1875rem;
    }
  }
  .project__hover-card .arrow-btn:hover {
    background: #F3A319;
    color: #fff;
  }
  .project .organic-btn {
    display: inline-flex;
    align-items: center;
    background: #F3A319;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    border-radius: 2.1875rem;
    height: 4.0625rem;
    padding: 0 0.3125rem 0 2.1875rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .project .organic-btn .btn-text {
    flex: 1;
    margin-right: 1.5625rem;
  }
  .project .organic-btn .btn-icon {
    background: #000;
    width: 5.625rem;
    height: 3.4375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40% 60% 40% 60%/50%;
    font-size: 1.25rem;
    transition: all 0.3s ease;
  }
  .project .organic-btn:hover {
    background: #121117;
  }
  .project .organic-btn:hover .btn-icon {
    background: #F3A319;
  }

  .project-details {
    padding: 6.25rem 0;
  }
  @media (max-width: 1399px) {
    .project-details {
      padding: 5.625rem 0;
    }
  }
  @media (max-width: 1199px) {
    .project-details {
      padding: 5rem 0;
    }
  }
  @media (max-width: 991px) {
    .project-details {
      padding: 4.375rem 0;
    }
  }
  @media (max-width: 767px) {
    .project-details {
      padding: 3.75rem 0;
    }
  }
  @media (max-width: 575px) {
    .project-details {
      padding: 3.125rem 0;
    }
  }
  .project-details__hero {
    position: relative;
    margin-bottom: 6.25rem;
  }
  @media (max-width: 1199px) {
    .project-details__hero {
      margin-bottom: 5rem;
    }
  }
  @media (max-width: 991px) {
    .project-details__hero {
      margin-bottom: 3.125rem;
    }
  }
  @media (max-width: 767px) {
    .project-details__hero {
      margin-bottom: 2.5rem;
    }
  }
  .project-details__thumb {
    border-radius: 1.875rem;
    overflow: hidden;
  }
  @media (max-width: 767px) {
    .project-details__thumb {
      border-radius: 1.25rem;
    }
  }
  .project-details__thumb img {
    width: 100%;
    height: auto;
    display: block;
  }
  .project-details__info-box {
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    background: #fff;
    padding: 1.875rem 3.125rem;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.1);
    z-index: 2;
  }
  @media (max-width: 1199px) {
    .project-details__info-box {
      padding: 2.1875rem 2.5rem;
      width: 90%;
    }
  }
  @media (max-width: 991px) {
    .project-details__info-box {
      position: static;
      transform: none;
      width: 100%;
      margin-top: 1.875rem;
      padding: 1.875rem;
    }
  }
  @media (max-width: 767px) {
    .project-details__info-box {
      padding: 0.625rem 0.9375rem;
    }
  }
  @media (max-width: 575px) {
    .project-details__info-box {
      padding: 0.625rem 0.3125rem;
    }
  }
  @media (max-width: 767px) {
    .project-details__info-box .info-item {
      margin-bottom: 0.625rem;
    }
    .project-details__info-box .info-item:last-child {
      margin-bottom: 0;
    }
  }
  .project-details__info-box .info-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #121117;
    margin-bottom: 0.625rem;
  }
  @media (max-width: 575px) {
    .project-details__info-box .info-item h4 {
      font-size: 1rem;
      margin-bottom: 0.3125rem;
    }
  }
  .project-details__info-box .info-item__title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    margin-bottom: 0.125rem;
    color: #191825;
  }
  @media (max-width: 1199px) {
    .project-details__info-box .info-item__title {
      font-size: 14px;
    }
  }
  .project-details__info-box .info-item p {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #9DA6AE;
    margin-bottom: 0;
  }
  @media (max-width: 1199px) {
    .project-details__info-box .info-item p {
      font-size: 13px;
    }
  }
  @media (max-width: 575px) {
    .project-details__info-box .info-item p {
      font-size: 12px;
    }
  }
  .project-details__content h2,
  .project-details__content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #121117;
    margin-bottom: 1.5625rem;
  }
  @media (max-width: 1199px) {
    .project-details__content h2,
    .project-details__content h3 {
      font-size: 1.75rem;
    }
  }
  @media (max-width: 991px) {
    .project-details__content h2,
    .project-details__content h3 {
      font-size: 1.625rem;
    }
  }
  @media (max-width: 767px) {
    .project-details__content h2,
    .project-details__content h3 {
      font-size: 1.5rem;
      margin-bottom: 1.25rem;
    }
  }
  @media (max-width: 575px) {
    .project-details__content h2,
    .project-details__content h3 {
      font-size: 1.375rem;
    }
  }
  .project-details__content p {
    color: #9DA6AE;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.875rem;
  }
  @media (max-width: 767px) {
    .project-details__content p {
      font-size: 0.9375rem;
      line-height: 1.6;
      margin-bottom: 1.25rem;
    }
  }
  .project-details__content .emphasized {
    color: #F3A319;
    font-weight: 700;
    font-size: 1.125rem;
  }
  @media (max-width: 767px) {
    .project-details__content .emphasized {
      font-size: 1rem;
    }
  }
  .project-details__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.875rem 0;
  }
  .project-details__list li {
    position: relative;
    margin-bottom: 0.9375rem;
    color: #121117;
    font-weight: 700;
    font-size: 1rem;
  }
  @media (max-width: 767px) {
    .project-details__list li {
      font-size: 0.9375rem;
      margin-bottom: 0.625rem;
    }
  }
  .project-details__list li img {
    margin-right: 12px;
  }

  .blog-standard {
    padding: 6.25rem 0;
  }
  @media (max-width: 1399px) {
    .blog-standard {
      padding: 5.625rem 0;
    }
  }
  @media (max-width: 1199px) {
    .blog-standard {
      padding: 5rem 0;
    }
  }
  @media (max-width: 991px) {
    .blog-standard {
      padding: 4.375rem 0;
    }
  }
  @media (max-width: 767px) {
    .blog-standard {
      padding: 3.75rem 0;
    }
  }
  @media (max-width: 575px) {
    .blog-standard {
      padding: 3.125rem 0;
    }
  }
  .blog-standard__post {
    margin-bottom: 3.125rem;
  }
  @media (max-width: 991px) {
    .blog-standard__post {
      margin-bottom: 2.5rem;
    }
  }
  @media (max-width: 767px) {
    .blog-standard__post {
      margin-bottom: 1.875rem;
    }
  }
  .blog-standard__img-wrapper {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    margin-bottom: 1.5625rem;
  }
  .blog-standard__img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }
  .blog-standard__date {
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    width: 4.375rem;
    height: 6.25rem;
    background: #fff;
    color: #F3A319;
    border: 0.125rem solid #F3A319;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 2;
  }
  @media (max-width: 1199px) {
    .blog-standard__date {
      width: 4.0625rem;
      height: 5.625rem;
    }
  }
  @media (max-width: 767px) {
    .blog-standard__date {
      width: 3.75rem;
      height: 5.3125rem;
    }
  }
  .blog-standard__date span {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 24px;
    letter-spacing: -2%;
    text-align: center;
    margin-bottom: 10px;
  }
  @media (max-width: 1199px) {
    .blog-standard__date span {
      font-size: 36px;
    }
  }
  @media (max-width: 767px) {
    .blog-standard__date span {
      font-size: 32px;
      margin-bottom: 5px;
    }
  }
  .blog-standard__date small {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -2%;
    text-align: center;
    text-transform: uppercase;
    color: #191825;
  }
  @media (max-width: 1199px) {
    .blog-standard__date small {
      font-size: 15px;
    }
  }
  @media (max-width: 767px) {
    .blog-standard__date small {
      font-size: 14px;
    }
  }
  .blog-standard__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 0.9375rem 0;
    display: flex;
    gap: 1.5625rem;
    flex-wrap: wrap;
  }
  @media (max-width: 1199px) {
    .blog-standard__meta {
      gap: 1.25rem;
    }
  }
  @media (max-width: 767px) {
    .blog-standard__meta {
      gap: 0.9375rem;
    }
  }
  .blog-standard__meta li {
    font-size: 0.875rem;
    color: #9DA6AE;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  @media (max-width: 575px) {
    .blog-standard__meta li {
      font-size: 0.8125rem;
    }
  }
  .blog-standard__meta li i {
    color: #F3A319;
    font-size: 1rem;
  }
  .blog-standard__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #121117;
    margin-bottom: 0.9375rem;
    transition: color 0.3s ease;
  }
  .blog-standard__title a {
    transition: inherit;
    color: #121117;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: -2%;
  }
  @media (max-width: 1399px) {
    .blog-standard__title a {
      font-size: 28px;
    }
  }
  @media (max-width: 1199px) {
    .blog-standard__title a {
      font-size: 26px;
    }
  }
  @media (max-width: 991px) {
    .blog-standard__title a {
      font-size: 24px;
    }
  }
  @media (max-width: 767px) {
    .blog-standard__title a {
      font-size: 22px;
    }
  }
  @media (max-width: 575px) {
    .blog-standard__title a {
      font-size: 20px;
    }
  }
  .blog-standard__excerpt {
    font-size: 1rem;
    line-height: 1.5;
    color: #9DA6AE;
    margin-bottom: 1.5625rem;
  }
  @media (max-width: 767px) {
    .blog-standard__excerpt {
      font-size: 0.9375rem;
      line-height: 1.6;
    }
  }
  @media (max-width: 575px) {
    .blog-standard__excerpt {
      font-size: 0.875rem;
      margin-bottom: 1.25rem;
    }
  }
  .blog-standard__btn {
    display: inline-flex;
    align-items: center;
    background: #F3A319;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    border-radius: 1.875rem;
    height: 3.125rem;
    padding: 0 0.3125rem 0 1.5625rem;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  @media (max-width: 575px) {
    .blog-standard__btn {
      height: 2.8125rem;
      padding: 0 0.3125rem 0 1.25rem;
      font-size: 0.75rem;
    }
  }
  .blog-standard__btn .btn-icon {
    background: #000;
    width: 3.4375rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40% 60% 40% 60%/50%;
    margin-left: 0.9375rem;
    transition: all 0.3s ease;
  }
  @media (max-width: 575px) {
    .blog-standard__btn .btn-icon {
      width: 2.8125rem;
      height: 2.1875rem;
      margin-left: 0.625rem;
    }
  }
  .blog-standard__btn:hover {
    background: #121117;
    color: #fff;
  }
  .blog-standard__btn:hover .btn-icon {
    background: #F3A319;
  }
  .blog-standard__widget {
    background: #EFF3FA;
    padding: 2.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.875rem;
  }
  .blog-standard__widget:last-child {
    margin-bottom: 0;
  }
  @media (max-width: 1399px) {
    .blog-standard__widget {
      padding: 2.1875rem;
    }
  }
  @media (max-width: 1199px) {
    .blog-standard__widget {
      padding: 1.875rem;
    }
  }
  @media (max-width: 767px) {
    .blog-standard__widget {
      padding: 1.5625rem;
    }
  }
  @media (max-width: 575px) {
    .blog-standard__widget {
      padding: 1.25rem;
    }
  }
  .blog-standard__widget-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 101%;
    letter-spacing: -2%;
    color: #121117;
    margin-bottom: 1.5625rem;
    position: relative;
  }
  @media (max-width: 1199px) {
    .blog-standard__widget-title {
      font-size: 1.25rem;
      margin-bottom: 1.25rem;
    }
  }
  @media (max-width: 575px) {
    .blog-standard__widget-title {
      font-size: 1.125rem;
    }
  }
  .blog-standard__search {
    position: relative;
  }
  .blog-standard__search input {
    width: 100%;
    height: 3.75rem;
    border: none;
    background: #fff;
    padding: 0 3.75rem 0 1.5625rem;
    border-radius: 0.625rem;
    font-size: 0.875rem;
  }
  @media (max-width: 575px) {
    .blog-standard__search input {
      height: 3.125rem;
      padding: 0 3.125rem 0 0.9375rem;
    }
  }
  .blog-standard__search input::placeholder {
    color: #9DA6AE;
  }
  .blog-standard__search button {
    position: absolute;
    top: 50%;
    right: 0.625rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: #F3A319;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  @media (max-width: 575px) {
    .blog-standard__search button {
      width: 2.1875rem;
      height: 2.1875rem;
      font-size: 0.875rem;
    }
  }
  .blog-standard__search button:hover {
    background: #121117;
  }
  .blog-standard__latest-posts {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .blog-standard__latest-posts li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5625rem;
  }
  @media (max-width: 575px) {
    .blog-standard__latest-posts li {
      gap: 0.9375rem;
    }
  }
  .blog-standard__latest-posts li:last-child {
    margin-bottom: 0;
  }
  .blog-standard__latest-posts .thumb {
    width: 6.25rem;
    height: 6.25rem;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
  }
  @media (max-width: 575px) {
    .blog-standard__latest-posts .thumb {
      width: 5.625rem;
      height: 5.625rem;
    }
  }
  .blog-standard__latest-posts .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .blog-standard__latest-posts .info .date {
    font-size: 0.8125rem;
    color: #9DA6AE;
    margin-bottom: 0.625rem;
    display: flex;
    align-items: center;
    gap: 0.3125rem;
  }
  @media (max-width: 575px) {
    .blog-standard__latest-posts .info .date {
      font-size: 0.75rem;
    }
  }
  .blog-standard__latest-posts .info .date i {
    color: #7D8978;
  }
  .blog-standard__latest-posts .info h4 {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -2%;
    color: #121117;
    margin: 0;
  }
  @media (max-width: 575px) {
    .blog-standard__latest-posts .info h4 {
      font-size: 0.9375rem;
    }
  }
  .blog-standard__latest-posts .info h4 a {
    color: #191825;
  }
  .blog-standard__latest-posts .info h4 a:hover {
    color: #F3A319;
  }
  .blog-standard__cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .blog-standard__cat-list li {
    margin-bottom: 0.9375rem;
  }
  .blog-standard__cat-list li:last-child {
    margin-bottom: 0;
  }
  .blog-standard__cat-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 0.46875rem 0.46875rem 0.46875rem 1.375rem;
    border-radius: 0.5rem;
    color: #878C8F;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -2%;
    transition: all 0.3s ease;
  }
  @media (max-width: 1199px) {
    .blog-standard__cat-list li a {
      font-size: 16px;
      padding: 0.375rem 0.375rem 0.375rem 1.25rem;
    }
  }
  @media (max-width: 575px) {
    .blog-standard__cat-list li a {
      font-size: 15px;
      padding: 0.3125rem 0.3125rem 0.3125rem 0.9375rem;
    }
  }
  .blog-standard__cat-list li a .count {
    background: #f1f3f9;
    color: #121117;
    font-size: 0.75rem;
    font-weight: 700;
    width: 45px;
    height: 45px;
    border-radius: 0.5rem;
    transition: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (max-width: 1199px) {
    .blog-standard__cat-list li a .count {
      width: 40px;
      height: 40px;
    }
  }
  @media (max-width: 575px) {
    .blog-standard__cat-list li a .count {
      width: 35px;
      height: 35px;
    }
  }
  .blog-standard__cat-list li a:hover, .blog-standard__cat-list li a.active {
    color: #121117;
  }
  .blog-standard__cat-list li a:hover .count, .blog-standard__cat-list li a.active .count {
    background: #F3A319;
    color: #fff;
  }
  .blog-standard__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
  }
  .blog-standard__tags a {
    background: #fff;
    padding: 0.78125rem 1.34375rem;
    border-radius: 0.5rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #121117;
    transition: all 0.3s ease;
  }
  @media (max-width: 575px) {
    .blog-standard__tags a {
      padding: 0.5rem 0.9375rem;
      font-size: 0.8125rem;
    }
  }
  .blog-standard__tags a:hover {
    background: #F3A319;
    color: #fff;
  }
  .blog-standard__pagination {
    display: flex;
    gap: 0.625rem;
    margin-top: 1.25rem;
  }
  @media (max-width: 767px) {
    .blog-standard__pagination {
      margin-top: 0.625rem;
      gap: 0.5rem;
    }
  }
  .blog-standard__pagination .page-link {
    width: 3.75rem;
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EFF3FA;
    color: #121117;
    font-weight: 700;
    border-radius: 0.5rem;
    border: none;
    transition: all 0.3s ease;
  }
  @media (max-width: 1199px) {
    .blog-standard__pagination .page-link {
      width: 3.4375rem;
      height: 3.4375rem;
    }
  }
  @media (max-width: 767px) {
    .blog-standard__pagination .page-link {
      width: 3.125rem;
      height: 3.125rem;
      font-size: 0.9375rem;
    }
  }
  @media (max-width: 480px) {
    .blog-standard__pagination .page-link {
      width: 2.8125rem;
      height: 2.8125rem;
      font-size: 0.875rem;
    }
  }
  .blog-standard__pagination .page-link:hover, .blog-standard__pagination .page-link.active {
    background: #F3A319;
    color: #fff;
  }

  .blog-details {
    padding: 6.25rem 0;
  }
  @media (max-width: 1399px) {
    .blog-details {
      padding: 5.625rem 0;
    }
  }
  @media (max-width: 1199px) {
    .blog-details {
      padding: 5rem 0;
    }
  }
  @media (max-width: 991px) {
    .blog-details {
      padding: 4.375rem 0;
    }
  }
  @media (max-width: 767px) {
    .blog-details {
      padding: 3.75rem 0;
    }
  }
  @media (max-width: 575px) {
    .blog-details {
      padding: 3.125rem 0;
    }
  }
  .blog-details__img-wrapper {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    margin-bottom: 2.5rem;
  }
  @media (max-width: 767px) {
    .blog-details__img-wrapper {
      margin-bottom: 1.25rem;
      height: 12.5rem;
    }
  }
  .blog-details__img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }
  @media (max-width: 575px) {
    .blog-details__img-wrapper img {
      object-fit: cover;
      height: 100%;
    }
  }
  .blog-details__date {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    width: 4.375rem;
    height: 4.375rem;
    background: #fff;
    color: #F3A319;
    border: 0.125rem solid #F3A319;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 2;
  }
  @media (max-width: 767px) {
    .blog-details__date {
      width: 3.75rem;
      height: 3.75rem;
      bottom: 0.9375rem;
      left: 0.9375rem;
    }
  }
  .blog-details__date span {
    font-size: 1.375rem;
    font-weight: 800;
  }
  @media (max-width: 767px) {
    .blog-details__date span {
      font-size: 1.125rem;
    }
  }
  .blog-details__date small {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  @media (max-width: 767px) {
    .blog-details__date small {
      font-size: 0.625rem;
    }
  }
  .blog-details__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    display: flex;
    gap: 1.875rem;
    flex-wrap: wrap;
  }
  @media (max-width: 1199px) {
    .blog-details__meta {
      gap: 1.25rem;
    }
  }
  @media (max-width: 767px) {
    .blog-details__meta {
      gap: 0.9375rem;
      margin-bottom: 0.9375rem;
    }
  }
  .blog-details__meta li {
    color: #878C8F;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -2%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  @media (max-width: 575px) {
    .blog-details__meta li {
      font-size: 0.875rem;
    }
  }
  .blog-details__meta li i {
    color: #F3A319;
    font-size: 1.125rem;
  }
  @media (max-width: 575px) {
    .blog-details__meta li i {
      font-size: 1rem;
    }
  }
  .blog-details__date {
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    width: 4.375rem;
    height: 6.25rem;
    background: #fff;
    color: #F3A319;
    border: 0.125rem solid #F3A319;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 2;
  }
  @media (max-width: 1199px) {
    .blog-details__date {
      width: 4.0625rem;
      height: 5.625rem;
    }
  }
  @media (max-width: 767px) {
    .blog-details__date {
      width: 3.75rem;
      height: 5.3125rem;
    }
  }
  .blog-details__date span {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 24px;
    letter-spacing: -2%;
    text-align: center;
    margin-bottom: 10px;
  }
  @media (max-width: 1199px) {
    .blog-details__date span {
      font-size: 36px;
    }
  }
  @media (max-width: 767px) {
    .blog-details__date span {
      font-size: 32px;
      margin-bottom: 5px;
    }
  }
  .blog-details__date small {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -2%;
    text-align: center;
    text-transform: uppercase;
    color: #191825;
  }
  @media (max-width: 1199px) {
    .blog-details__date small {
      font-size: 15px;
    }
  }
  @media (max-width: 767px) {
    .blog-details__date small {
      font-size: 14px;
    }
  }
  .blog-details__title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: -2%;
    margin-bottom: 1.25rem;
    color: #191825;
  }
  @media (max-width: 1399px) {
    .blog-details__title {
      font-size: 1.75rem;
    }
  }
  @media (max-width: 991px) {
    .blog-details__title {
      font-size: 1.625rem;
    }
  }
  @media (max-width: 767px) {
    .blog-details__title {
      font-size: 1.5rem;
      margin-bottom: 1.25rem;
    }
  }
  @media (max-width: 575px) {
    .blog-details__title {
      font-size: 1.375rem;
    }
  }
  .blog-details__text p {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    margin-bottom: 0.75rem;
    color: #878C8F;
  }
  @media (max-width: 767px) {
    .blog-details__text p {
      font-size: 15px;
      line-height: 26px;
      margin-bottom: 0.625rem;
    }
  }
  .blog-details__text h3 {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -2%;
    color: #191825;
    margin: 0 0 20 0;
  }
  @media (max-width: 991px) {
    .blog-details__text h3 {
      font-size: 22px;
    }
  }
  @media (max-width: 767px) {
    .blog-details__text h3 {
      font-size: 20px;
      margin: 0.9375rem 0 0.9375rem;
    }
  }
  @media (max-width: 575px) {
    .blog-details__text h3 {
      font-size: 18px;
    }
  }
  .blog-details__blockquote {
    background: #EFF3FA;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    padding: 2.5rem;
    border-radius: 0.9375rem;
    border: 1px solid rgba(87, 89, 92, 0.3019607843);
    margin-top: 40px;
    margin-bottom: 40px;
    position: relative;
  }
  @media (max-width: 1199px) {
    .blog-details__blockquote {
      padding: 2.1875rem;
    }
  }
  @media (max-width: 767px) {
    .blog-details__blockquote {
      padding: 1.875rem 1.5625rem;
      margin: 1.875rem 0;
    }
  }
  .blog-details__blockquote .quote-icon {
    font-size: 2.8125rem;
    color: #F3A319;
    margin-bottom: 1.25rem;
  }
  @media (max-width: 767px) {
    .blog-details__blockquote .quote-icon {
      font-size: 2.1875rem;
      margin-bottom: 0.9375rem;
    }
  }
  .blog-details__blockquote p {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    color: #878C8F;
    margin: 0;
  }
  @media (max-width: 991px) {
    .blog-details__blockquote p {
      font-size: 17px;
      line-height: 28px;
    }
  }
  @media (max-width: 767px) {
    .blog-details__blockquote p {
      font-size: 16px;
      line-height: 26px;
    }
  }
  .blog-details__footer {
    padding: 1.25rem 0;
    border-top: 0.0625rem solid #D9D9D9;
    border-bottom: 0.0625rem solid #D9D9D9;
    margin: 2.8125rem 0 3.4375rem;
  }
  @media (max-width: 991px) {
    .blog-details__footer {
      margin: 2.1875rem 0 2.5rem;
    }
  }
  @media (max-width: 767px) {
    .blog-details__footer {
      margin: 1.875rem 0 2.1875rem;
      padding: 0.9375rem 0;
    }
  }
  .blog-details__tags {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    flex-wrap: wrap;
  }
  .blog-details__tags .tags-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 101%;
    letter-spacing: -2%;
    color: #121117;
    position: relative;
  }
  @media (max-width: 1199px) {
    .blog-details__tags .tags-title {
      font-size: 1.25rem;
    }
  }
  @media (max-width: 575px) {
    .blog-details__tags .tags-title {
      font-size: 1.125rem;
    }
  }
  .blog-details__tags a {
    background: #EFF3FA;
    padding: 0.5rem 1.125rem;
    border-radius: 0.25rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    color: #121117;
    transition: all 0.3s ease;
  }
  @media (max-width: 767px) {
    .blog-details__tags a {
      font-size: 14px;
      padding: 0.375rem 0.9375rem;
    }
  }
  .blog-details__tags a:hover {
    background: #F3A319;
    color: #fff;
  }
  .blog-details__social {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    justify-content: flex-end;
  }
  @media (max-width: 767px) {
    .blog-details__social {
      justify-content: flex-start;
      margin-top: 0.625rem;
    }
  }
  .blog-details__social .share-title {
    font-weight: 700;
    color: #121117;
  }
  .blog-details__social a {
    font-size: 1rem;
    color: #121117;
    transition: all 0.3s ease;
  }
  .blog-details__social a:hover {
    color: #F3A319;
  }
  .blog-details__reply-form {
    margin-top: 3.125rem;
  }
  @media (max-width: 767px) {
    .blog-details__reply-form {
      margin-top: 2.5rem;
    }
  }
  .blog-details__reply-form .reply-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -2%;
    color: #121117;
    margin-bottom: 1.5625rem;
  }
  @media (max-width: 991px) {
    .blog-details__reply-form .reply-title {
      font-size: 22px;
      margin-bottom: 1.25rem;
    }
  }
  @media (max-width: 767px) {
    .blog-details__reply-form .reply-title {
      font-size: 20px;
      margin-bottom: 1.25rem;
    }
  }
  .blog-details__reply-form input,
  .blog-details__reply-form textarea {
    width: 100%;
    background: #EFF3FA;
    border: none;
    padding: 1.25rem 1.5625rem;
    border-radius: 0.9375rem;
    font-size: 0.9375rem;
    color: #121117;
  }
  @media (max-width: 767px) {
    .blog-details__reply-form input,
    .blog-details__reply-form textarea {
      padding: 0.9375rem 1.25rem;
      font-size: 0.875rem;
    }
  }
  .blog-details__reply-form input::placeholder,
  .blog-details__reply-form textarea::placeholder {
    color: #9DA6AE;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
  }
  .blog-details__reply-form input:focus,
  .blog-details__reply-form textarea:focus {
    outline: none;
  }
  .blog-details__reply-form input {
    height: 3.75rem;
    border-radius: 3.125rem;
  }
  @media (max-width: 767px) {
    .blog-details__reply-form input {
      height: 3.125rem;
    }
  }
  .blog-details__reply-form input[type=checkbox] {
    width: 1.0625rem;
    height: 1.0625rem;
    border: 0.0625rem solid #191825;
    padding: 0 !important;
  }
  .blog-details__reply-form input[type=checkbox]:focus {
    outline: none;
    box-shadow: none;
    padding: 0 !important;
  }
  .blog-details__reply-form textarea {
    height: 8.125rem;
    resize: none;
  }
  @media (max-width: 767px) {
    .blog-details__reply-form textarea {
      height: 7.5rem;
    }
  }
  .blog-details__reply-form .form-check {
    margin-top: 0.9375rem;
    margin-bottom: 12;
    display: flex;
    align-items: center;
  }
  .blog-details__reply-form .form-check-input {
    border-radius: 0.25rem;
    border: 0.0625rem solid #ccc;
    margin-top: 0;
  }
  .blog-details__reply-form .form-check-label {
    font-size: 0.875rem;
    color: #9DA6AE;
    font-weight: 500;
    padding-left: 0.625rem;
  }

  .contact {
    padding: 6.25rem 0;
  }
  @media (max-width: 1399px) {
    .contact {
      padding: 5.625rem 0;
    }
  }
  @media (max-width: 1199px) {
    .contact {
      padding: 5rem 0;
    }
  }
  @media (max-width: 991px) {
    .contact {
      padding: 4.375rem 0;
    }
  }
  @media (max-width: 767px) {
    .contact {
      padding: 3.75rem 0;
    }
  }
  @media (max-width: 575px) {
    .contact {
      padding: 3.125rem 0;
    }
  }
  .contact__header {
    margin-bottom: 3.125rem;
  }
  @media (max-width: 767px) {
    .contact__header {
      margin-bottom: 1.875rem;
    }
  }
  .contact__subtitle {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #F3A319;
    display: block;
    margin-bottom: 0.625rem;
    letter-spacing: 0.0625rem;
  }
  @media (max-width: 767px) {
    .contact__subtitle {
      font-size: 0.875rem;
      margin-bottom: 0.3125rem;
    }
  }
  .contact__title {
    font-size: 2.625rem;
    font-weight: 800;
    color: #121117;
    line-height: 1.2;
    margin: 0;
  }
  @media (max-width: 1199px) {
    .contact__title {
      font-size: 2.25rem;
    }
  }
  @media (max-width: 991px) {
    .contact__title {
      font-size: 2rem;
    }
  }
  @media (max-width: 767px) {
    .contact__title {
      font-size: 1.75rem;
    }
  }
  @media (max-width: 575px) {
    .contact__title {
      font-size: 1.5rem;
    }
  }
  .contact__desc {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #9DA6AE;
    margin-top: 0.9375rem;
  }
  @media (max-width: 767px) {
    .contact__desc {
      font-size: 15px;
      line-height: 26px;
      margin-top: 0.625rem;
    }
  }
  .contact__info-row {
    margin-bottom: 3.75rem;
  }
  @media (max-width: 767px) {
    .contact__info-row {
      margin-bottom: 2.5rem;
    }
  }
  .contact__card {
    background: #EFF3FA;
    padding: 1.875rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s ease;
    height: 100%;
  }
  @media (max-width: 1199px) {
    .contact__card {
      padding: 1.5625rem;
      gap: 0.9375rem;
    }
  }
  @media (max-width: 991px) {
    .contact__card {
      margin-bottom: 1.25rem;
    }
  }
  .contact__card .icon-box {
    width: 3.75rem;
    height: 3.75rem;
    background: #1C1B21;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }
  @media (max-width: 575px) {
    .contact__card .icon-box {
      width: 3.125rem;
      height: 3.125rem;
      font-size: 1.125rem;
    }
  }
  .contact__card .icon-box.active {
    background: #F3A319;
  }
  .contact__card .info .label {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 5%;
    text-transform: uppercase;
    color: #9DA6AE;
    display: block;
    margin-bottom: 0.5rem;
  }
  @media (max-width: 575px) {
    .contact__card .info .label {
      font-size: 12px;
      margin-bottom: 0.3125rem;
    }
  }
  .contact__card .info div {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0%;
    color: #121117;
    margin: 0;
  }
  @media (max-width: 1199px) {
    .contact__card .info div {
      font-size: 16px;
    }
  }
  @media (max-width: 575px) {
    .contact__card .info div {
      font-size: 15px;
    }
  }
  .contact__card:hover {
    background: #fff;
    box-shadow: 0 0.9375rem 2.5rem rgba(0, 0, 0, 0.05);
  }
  .contact__card:hover .icon-box {
    background: #F3A319;
  }
  .contact__map-wrapper {
    height: 100%;
    min-height: 31.25rem;
    border-radius: 0.9375rem;
    overflow: hidden;
  }
  @media (max-width: 991px) {
    .contact__map-wrapper {
      min-height: 25rem;
      margin-bottom: 1.875rem;
    }
  }
  @media (max-width: 575px) {
    .contact__map-wrapper {
      min-height: 18.75rem;
    }
  }
  .contact__map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
  .contact__map-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .contact__form-container {
    background: #EFF3FA;
    padding: 3.75rem 3.125rem;
    border-radius: 0.9375rem;
  }
  @media (max-width: 1199px) {
    .contact__form-container {
      padding: 2.5rem;
    }
  }
  @media (max-width: 767px) {
    .contact__form-container {
      padding: 1.875rem 1.25rem;
    }
  }
  .contact__form .form-group {
    margin-bottom: 1.25rem;
  }
  .contact__form-hp {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }
  @media (max-width: 767px) {
    .contact__form .form-group {
      margin-bottom: 0.9375rem;
    }
  }
  .contact__form .form-group label {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -2%;
    color: #121117;
    display: block;
    margin-bottom: 0.9375rem;
  }
  @media (max-width: 767px) {
    .contact__form .form-group label {
      font-size: 16px;
      margin-bottom: 0.625rem;
    }
  }
  .contact__form .form-group label span {
    color: #F3A319;
    margin-left: 0.1875rem;
  }
  .contact__form .form-group input,
  .contact__form .form-group textarea,
  .contact__form .form-group select {
    width: 100%;
    background: #fff;
    border: none;
    height: 4.0625rem;
    padding: 0 1.5625rem;
    border-radius: 1.875rem;
    font-size: 0.9375rem;
    color: #121117;
  }
  @media (max-width: 1199px) {
    .contact__form .form-group input,
    .contact__form .form-group textarea,
    .contact__form .form-group select {
      height: 3.4375rem;
    }
  }
  @media (max-width: 767px) {
    .contact__form .form-group input,
    .contact__form .form-group textarea,
    .contact__form .form-group select {
      font-size: 0.875rem;
      padding: 0 1.25rem;
    }
  }
  .contact__form .form-group input::placeholder,
  .contact__form .form-group textarea::placeholder,
  .contact__form .form-group select::placeholder {
    color: #9DA6AE;
    text-transform: uppercase;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 5%;
  }
  .contact__form .form-group input:focus,
  .contact__form .form-group textarea:focus,
  .contact__form .form-group select:focus {
    outline: none;
  }
  .contact__form .form-group input.contact__field--invalid,
  .contact__form .form-group textarea.contact__field--invalid,
  .contact__form .form-group select.contact__field--invalid,
  .service-details__quote-form input.contact__field--invalid,
  .service-details__quote-form textarea.contact__field--invalid,
  .service-details__quote-form select.contact__field--invalid {
    border: 1px solid #ef4444;
  }
  .contact__form .form-group textarea {
    height: 9.375rem;
    padding: 1.25rem 1.5625rem;
    border-radius: 0.9375rem;
    resize: none;
  }
  @media (max-width: 1199px) {
    .contact__form .form-group textarea {
      height: 7.5rem;
    }
  }
  .contact__form .form-group .select-wrapper {
    position: relative;
  }
  .contact__form .form-group .select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
  }
  .contact__form .form-group .select-wrapper i {
    position: absolute;
    top: 50%;
    right: 1.5625rem;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: #9DA6AE;
    pointer-events: none;
  }
  .contact__form .theme-btn {
    width: 100%;
    height: 4.0625rem;
    font-size: 1rem;
    border-radius: 2.1875rem;
  }
  .contact__form .theme__btn:disabled {
    opacity: 0.72;
    cursor: wait;
  }
  .service-details__quote-form .theme__btn:disabled {
    opacity: 0.72;
    cursor: wait;
  }
  @media (max-width: 1199px) {
    .contact__form .theme-btn {
      height: 3.4375rem;
      font-size: 0.875rem;
    }
  }
  .contact__form-message {
    margin: 1rem 0 0;
    font-family: "DM Sans", sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.5;
  }
  .contact__form-message--success {
    color: #16a34a;
  }
  .contact__form-message--error {
    color: #dc2626;
  }
  .vc-cta-service-message {
    width: 100%;
    margin: 1rem 0 0;
    font-family: "DM Sans", sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.5;
  }
  .vc-cta-service-message--success {
    color: #16a34a;
  }
  .vc-cta-service-message--error {
    color: #dc2626;
  }
  .vc-cta-service-message--light {
    color: #ffffff;
  }
  .vc-cta-service-message--light.vc-cta-service-message--success {
    color: #14532d;
  }
  .vc-cta-service-message--light.vc-cta-service-message--error {
    color: #7f1d1d;
  }

  .pricing-section {
    background: linear-gradient(0deg, #FFFFFF 0%, #EFF3FA 100%);
  }

  .pricing-card {
    position: relative;
    padding: 1.5625rem 2.125rem;
    border: 2px solid #F3A319;
    border-radius: 0.9375rem;
    background: #fff;
    transition: all 0.3s ease;
    margin-bottom: 1.875rem;
    overflow: hidden;
  }
  @media (max-width: 1399px) {
    .pricing-card {
      padding: 1.25rem 1.25rem;
    }
  }
  .pricing-card__bg {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .pricing-card--dark {
    background-color: #15141D;
    position: relative;
    z-index: 2;
    background-size: cover;
    border-color: #15141D;
    color: #fff;
  }
  .pricing-card--dark .pricing-card__title,
  .pricing-card--dark .pricing-card__text {
    color: #15141D;
  }
  .pricing-card--dark .pricing-card__list-item {
    color: #fff;
  }
  .pricing-card--dark .pricing-card__package {
    background-color: #fff;
    color: #15141D;
  }
  .pricing-card--dark .pricing-card__price-decimal,
  .pricing-card--dark .pricing-card__price-sub {
    color: rgba(255, 255, 255, 0.7);
  }
  .pricing-card__badge {
    position: absolute;
    top: 1.25rem;
    right: -2.5rem;
    background-color: #F3A319;
    color: #fff;
    padding: 0.3125rem 3.125rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(12px, 0.5vw + 0.75rem, 14px);
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 10;
    pointer-events: none;
  }
  .pricing-card__header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.875rem;
  }
  .pricing-card__price-currency {
    font-size: clamp(18px, 2vw + 0.5rem, 24px);
    font-weight: 700;
    margin-top: 0.625rem;
    margin-right: 0.3125rem;
  }
  .pricing-card__price-amount {
    font-size: clamp(32px, 5vw + 1rem, 60px);
    font-weight: 800;
    line-height: 1;
  }
  .pricing-card__price-details {
    margin-left: 0.625rem;
    margin-top: 0.625rem;
  }
  @media (max-width: 575px) {
    .pricing-card__price-details {
      margin-top: 0.3125rem;
      margin-left: 0.3125rem;
    }
  }
  .pricing-card__price-decimal {
    display: block;
    font-size: clamp(15px, 1vw + 1rem, 18px);
    font-weight: 700;
    color: #6D6C80;
  }
  .pricing-card__price-sub {
    display: block;
    font-size: clamp(12px, 0.5vw + 0.75rem, 14px);
    color: #6D6C80;
  }
  .pricing-card__package {
    background-color: #F4F6F9;
    padding: 1.875rem;
    border-radius: 0.625rem;
    margin-bottom: 1.875rem;
  }
  @media (max-width: 1399px) {
    .pricing-card__package {
      padding: 1.25rem 1.25rem;
    }
  }
  .pricing-card__title {
    font-size: clamp(16px, 1vw + 1rem, 22px);
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: #121117;
  }
  @media (max-width: 1399px) {
    .pricing-card__title {
      font-size: clamp(17px, 1vw + 1rem, 18px);
    }
  }
  .pricing-card__text {
    font-size: clamp(12px, 0.5vw + 0.75rem, 14px);
    line-height: 1.6;
    color: #6D6C80;
    margin: 0;
  }
  .pricing-card__list {
    list-style: none;
    padding: 0;
  }
  .pricing-card__list-item {
    font-size: clamp(14px, 0.5vw + 0.75rem, 16px);
    color: #6D6C80;
    margin-bottom: 0.9375rem;
    display: flex;
    align-items: center;
  }
  .pricing-card__list-item i {
    color: #F3A319;
    margin-right: 0.9375rem;
    font-size: clamp(12px, 0.5vw + 0.75rem, 14px);
  }
  .pricing-card__list-item:last-child {
    margin-bottom: 0;
  }
  .pricing-card__button-wrap {
    position: relative;
    z-index: 2;
    margin-top: 1.25rem;
  }
  .pricing-card__button-wrap .btn-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
  .pricing-card__btn {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background-color: #f1f3f7;
    border: 1px solid #F3A319;
    border-radius: 3.125rem;
    text-decoration: none;
    color: #15141d;
    font-weight: 700;
    font-size: clamp(12px, 0.5vw + 0.75rem, 14px);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 1399px) {
    .pricing-card__btn {
      padding: 15px 25px;
      font-size: 14px;
    }
  }
  .pricing-card__btn i {
    margin-left: 0.625rem;
    transition: transform 0.3s ease;
  }
  .pricing-card__btn::after {
    content: "";
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 4.0625rem;
    height: 3.125rem;
    background-color: #d1d5db;
    border-radius: 50% 0 0 50%;
    z-index: -1;
    opacity: 0.5;
    transition: background-color 0.3s ease;
  }
  .pricing-card__btn:hover {
    background-color: #F3A319;
    color: #fff;
  }
  .pricing-card__btn:hover::after {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .pricing-card__btn:hover i {
    transform: translateX(5px);
  }
  .pricing-card--dark + .pricing-card__button-wrap .pricing-card__btn {
    background-color: #F3A319;
    color: #fff;
    border: none;
  }
  .pricing-card--dark + .pricing-card__button-wrap .pricing-card__btn::after {
    background-color: #000;
    opacity: 1;
    width: 4.0625rem;
    height: 3.125rem;
    bottom: -20px;
    right: -10px;
    border-radius: 50% 50% 0 50%;
  }
  .pricing-card--dark + .pricing-card__button-wrap .pricing-card__btn:hover {
    background-color: #fff;
    color: #F3A319;
  }

  /* ===========================
    Work Process 2 (Zigzag)
    =========================== */
  .work-process2 {
    overflow: hidden;
    background: #ffffff;
  }
  .work-process2__wrap {
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
    margin: 0 auto;
    position: relative;
  }
  .work-process2__item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 48.125rem;
    margin-left: auto;
  }
  @media (max-width: 991px) {
    .work-process2__item {
      max-width: 100%;
      margin-left: 0;
    }
  }
  .work-process2__item .work-process2__number {
    background-color: #121117;
    color: #ffffff;
    left: -25px;
  }
  @media (max-width: 991px) {
    .work-process2__item .work-process2__number {
      left: 5px;
    }
  }
  .work-process2__item .work-process2__card {
    background-color: #ffffff;
    border-color: #F3A319;
    padding-left: 3.125rem;
    padding-right: 2.8125rem;
  }
  .work-process2__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10rem;
    left: 2.3125rem;
    width: 9.25rem;
    height: 2px;
    background-color: #F3A319;
    z-index: 1;
    transform-origin: left center;
    transform: rotate(26deg);
    pointer-events: none;
  }
  @media (max-width: 1199px) {
    .work-process2__item:not(:last-child)::after {
      display: none;
    }
  }
  .work-process2__item--reverse {
    margin-left: 0;
    margin-right: auto;
  }
  .work-process2__item--reverse:after {
    display: none;
  }
  .work-process2__item--reverse:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 14.0625rem;
    right: 2.3125rem;
    width: 9.25rem;
    height: 2px;
    background-color: #F3A319;
    z-index: 1;
    transform-origin: left center;
    transform: rotate(-26deg);
    pointer-events: none;
  }
  @media (max-width: 1199px) {
    .work-process2__item--reverse:not(:last-child)::before {
      display: none;
    }
  }
  .work-process2__item--reverse .work-process2__card {
    background-color: #121117;
    border-color: #121117;
    flex-direction: row-reverse;
    padding-right: 3.125rem;
    padding-left: 2.5rem;
  }
  .work-process2__item--reverse .work-process2__card .work-process2__title,
  .work-process2__item--reverse .work-process2__card .work-process2__desc {
    color: #ffffff;
  }
  .work-process2__item--reverse .work-process2__card .work-process2__separator {
    background-color: rgba(217, 217, 217, 0.5019607843);
  }
  .work-process2__item--reverse .work-process2__number {
    left: auto;
    right: 0;
    background-color: #F3A319;
  }
  @media (max-width: 991px) {
    .work-process2__item--reverse .work-process2__number {
      right: 5px;
    }
  }
  .work-process2__item--reverse::after {
    left: auto;
    right: 2.3125rem;
    transform-origin: right center;
    transform: rotate(-26deg);
  }
  @media (max-width: 1199px) {
    .work-process2__item--reverse::after {
      transform: rotate(-30deg);
    }
  }
  .work-process2__item:hover .work-process2__card {
    background-color: #121117 !important;
    border-color: #121117 !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
  }
  .work-process2__item:hover .work-process2__card .work-process2__title,
  .work-process2__item:hover .work-process2__card .work-process2__desc {
    color: #ffffff !important;
  }
  .work-process2__item:hover .work-process2__card .work-process2__separator {
    background-color: rgba(255, 255, 255, 0.1) !important;
  }
  .work-process2__item:hover .work-process2__number {
    background-color: #F3A319 !important;
    color: #ffffff !important;
  }
  .work-process2__number {
    position: absolute;
    z-index: 5;
    width: 3.125rem;
    height: 4.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6.25rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }
  .work-process2__card {
    width: 98%;
    border: 2px solid #F3A319;
    border-radius: 1.5625rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    gap: 2.5rem;
    position: relative;
    z-index: 3;
    padding: 1.875rem 0;
  }
  @media (max-width: 991px) {
    .work-process2__card {
      width: 100%;
      flex-direction: column !important;
      padding: 2.5rem !important;
      gap: 1.25rem;
      text-align: center;
    }
  }
  .work-process2__left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
  }
  @media (max-width: 991px) {
    .work-process2__left {
      flex-direction: column;
      gap: 0.625rem;
    }
  }
  .work-process2__title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 100%;
    letter-spacing: -2%;
    color: #121117;
    margin: 0;
    transition: color 0.3s ease;
    text-align: end;
  }
  @media (max-width: 991px) {
    .work-process2__title {
      font-size: 1.25rem;
    }
  }
  .work-process2__icon {
    width: 4.375rem;
    height: 4.375rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .work-process2__icon img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
  }
  .work-process2__separator {
    width: 2px;
    height: 6.25rem;
    background-color: #D9D9D9;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
  }
  @media (max-width: 991px) {
    .work-process2__separator {
      width: 100%;
      height: 1px;
    }
  }
  @media (max-width: 767px) {
    .work-process2__separator {
      height: 1px;
      width: 80%;
    }
  }
  .work-process2__right {
    flex-grow: 1;
  }
  .work-process2__desc {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 28px;
    letter-spacing: 0%;
    color: #9DA6AE;
    margin: 0;
    transition: color 0.3s ease;
  }
  @media (max-width: 991px) {
    .work-process2__desc {
      font-size: 0.875rem;
      line-height: 24px;
    }
  }
  @media (max-width: 767px) {
    .work-process2__desc {
      font-size: 0.75rem;
      line-height: 22px;
    }
  }

  .team-details {
    padding: 6.25rem 0;
  }
  @media (max-width: 1399px) {
    .team-details {
      padding: 5.625rem 0;
    }
  }
  @media (max-width: 1199px) {
    .team-details {
      padding: 5rem 0;
    }
  }
  @media (max-width: 991px) {
    .team-details {
      padding: 4.375rem 0;
    }
  }
  @media (max-width: 767px) {
    .team-details {
      padding: 3.75rem 0;
    }
  }
  @media (max-width: 575px) {
    .team-details {
      padding: 3.125rem 0;
    }
  }
  .team-details__content {
    padding-right: 60px;
  }
  @media (max-width: 1399px) {
    .team-details__content {
      padding-right: 1.875rem;
    }
  }
  @media (max-width: 1199px) {
    .team-details__content {
      padding-right: 0;
      margin-bottom: 1.25rem;
    }
  }
  .team-details__content .section-top__subtitle {
    font-family: "DM Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #F3A319;
    text-transform: uppercase;
    letter-spacing: 0.09375rem;
    display: inline-block;
    margin-bottom: 0.9375rem;
  }
  @media (max-width: 1199px) {
    .team-details__content .section-top__subtitle {
      font-size: 0.8125rem;
    }
  }
  @media (max-width: 767px) {
    .team-details__content .section-top__subtitle {
      margin-bottom: 0.625rem;
    }
  }
  .team-details__content .section-top__subtitle::before {
    content: ">>>";
    margin-right: 0.5rem;
  }
  .team-details__content .section-top__title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5625rem;
    line-height: 1.2;
    color: #121117;
  }
  @media (max-width: 1199px) {
    .team-details__content .section-top__title {
      font-size: 2rem;
    }
  }
  @media (max-width: 991px) {
    .team-details__content .section-top__title {
      font-size: 1.875rem;
    }
  }
  @media (max-width: 767px) {
    .team-details__content .section-top__title {
      font-size: 1.75rem;
      margin-bottom: 1.25rem;
    }
  }
  @media (max-width: 575px) {
    .team-details__content .section-top__title {
      font-size: 1.5rem;
    }
  }
  .team-details__desc {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #878C8F;
    margin-bottom: 30px;
  }
  @media (max-width: 1199px) {
    .team-details__desc {
      font-size: 15px;
      line-height: 26px;
    }
  }
  @media (max-width: 767px) {
    .team-details__desc {
      margin-bottom: 20px;
    }
  }
  .team-details__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .team-details__list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.375rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #878C8F;
    margin-bottom: 25px;
  }
  @media (max-width: 1199px) {
    .team-details__list li {
      font-size: 15px;
      line-height: 26px;
      gap: 1.125rem;
    }
  }
  @media (max-width: 767px) {
    .team-details__list li {
      gap: 0.9375rem;
      margin-bottom: 20px;
    }
  }
  .team-details__list li img {
    margin-top: 8px;
  }
  @media (max-width: 767px) {
    .team-details__list li img {
      margin-top: 6px;
      width: 18px;
    }
  }
  .team-details__list li:last-child {
    margin-bottom: 0;
  }
  .team-details__list li i {
    position: absolute;
    left: 0;
    top: 0.3125rem;
    color: #F3A319;
    font-size: 1rem;
  }
  .team-details__info-box {
    background-color: #EFF3FA;
    border-radius: 0.9375rem;
    padding: 40px;
  }
  @media (max-width: 1199px) {
    .team-details__info-box {
      padding: 30px;
    }
  }
  @media (max-width: 575px) {
    .team-details__info-box {
      padding: 1.5625rem 1.25rem;
    }
  }
  .team-details__info-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .team-details__info-list li {
    font-size: 0.9375rem;
    color: #121117;
    font-weight: 500;
    line-height: 1.6;
  }
  @media (max-width: 1199px) {
    .team-details__info-list li {
      font-size: 0.875rem;
    }
  }
  .team-details__info-list li span {
    font-weight: 700;
    color: #F3A319;
  }
  .team-details__info-list-divider {
    height: 0.5rem;
    background: transparent;
    pointer-events: none;
  }
  .team-details__photo-card {
    position: relative;
    border-radius: 0.875rem;
    overflow: hidden;
  }
  .team-details__photo-img {
    display: block;
    line-height: 0;
  }
  .team-details__photo-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  .team-details__photo-social {
    position: absolute;
    left: 0;
    bottom: 30px;
    background-color: #302F3B;
    border-radius: 1.875rem 1.875rem 0 0;
    padding: 1.375rem 0.875rem;
    width: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    z-index: 10;
  }
  @media (max-width: 1199px) {
    .team-details__photo-social {
      width: 50px;
      padding: 1.125rem 0.75rem;
      gap: 1.125rem;
    }
  }
  @media (max-width: 767px) {
    .team-details__photo-social {
      width: 45px;
      padding: 0.9375rem 0.625rem;
      gap: 0.9375rem;
      bottom: 36px;
    }
  }
  .team-details__photo-social a {
    color: #ffffff;
    font-size: 0.9375rem;
    line-height: 1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  @media (max-width: 1199px) {
    .team-details__photo-social a {
      font-size: 0.875rem;
    }
  }
  @media (max-width: 767px) {
    .team-details__photo-social a {
      font-size: 0.8125rem;
    }
  }
  .team-details__photo-social a:hover {
    color: #F3A319;
    text-decoration: none;
  }
  .team-details__photo-caption {
    margin-top: -10px;
    text-align: right;
  }
  @media (max-width: 1199px) {
    .team-details__photo-caption {
      margin-top: 0;
    }
  }
  .team-details__photo-designation {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09375rem;
    color: #9DA6AE;
    margin-bottom: 0.25rem;
  }
  @media (max-width: 1199px) {
    .team-details__photo-designation {
      font-size: 0.625rem;
    }
  }
  .team-details__photo-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #121117;
    margin: 0;
    line-height: 1.2;
  }
  @media (max-width: 1199px) {
    .team-details__photo-name {
      font-size: 1rem;
    }
  }
  @media (max-width: 767px) {
    .team-details__photo-name {
      font-size: 0.9375rem;
    }
  }
  .team-details__photo-shape {
    position: absolute;
    background-color: #F3A319;
    z-index: 5;
  }
  .team-details__features-box {
    background-color: #191825;
    border-radius: 1.25rem;
    padding: 1.5625rem 1.25rem;
  }
  @media (max-width: 575px) {
    .team-details__features-box {
      padding: 1.125rem;
    }
  }
  .team-details__skill-box {
    background-color: #EFF3FA;
    border-radius: 0.9375rem;
    padding: 67px 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  @media (max-width: 1399px) {
    .team-details__skill-box {
      padding: 50px 35px;
    }
  }
  @media (max-width: 1199px) {
    .team-details__skill-box {
      margin-bottom: 2.5rem;
    }
  }
  @media (max-width: 575px) {
    .team-details__skill-box {
      padding: 1.875rem;
      margin-bottom: 20px;
    }
  }
  .team-details__skill-box-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #191825;
    margin-bottom: 3.125rem;
  }
  @media (max-width: 1199px) {
    .team-details__skill-box-title {
      font-size: 24px;
      margin-bottom: 2.1875rem;
    }
  }
  @media (max-width: 575px) {
    .team-details__skill-box-title {
      font-size: 22px;
      margin-bottom: 1.5625rem;
    }
  }
  .team-details__progress-wrap {
    display: flex;
    flex-direction: column;
    gap: 2.1875rem;
    margin-bottom: 3.75rem;
  }
  @media (max-width: 1199px) {
    .team-details__progress-wrap {
      gap: 1.5625rem;
      margin-bottom: 2.5rem;
    }
  }
  .team-details__progress-item .progress-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.9375rem;
  }
  .team-details__progress-item .progress-title-wrap h4 {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #191825;
    margin: 0;
  }
  @media (max-width: 1199px) {
    .team-details__progress-item .progress-title-wrap h4 {
      font-size: 17px;
    }
  }
  @media (max-width: 767px) {
    .team-details__progress-item .progress-title-wrap h4 {
      font-size: 16px;
    }
  }
  .team-details__progress-item .progress-title-wrap span {
    font-weight: 700;
    color: #121117;
    font-size: 1rem;
  }
  @media (max-width: 767px) {
    .team-details__progress-item .progress-title-wrap span {
      font-size: 0.875rem;
    }
  }
  .team-details__progress-item .progress {
    height: 0.5rem;
    background-color: #ffffff;
    border-radius: 0.625rem;
    overflow: visible;
  }
  .team-details__progress-item .progress .progress-bar {
    background-color: #F3A319;
    border-radius: 0.625rem;
    transition: width 1.2s ease;
  }
  .team-details__progress-item .progress .progress-bar--dark {
    background-color: #121117;
  }
  .team-details__experience {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
  }
  .team-details__experience .number {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #F3A319;
  }
  @media (max-width: 1199px) {
    .team-details__experience .number {
      font-size: 50px;
    }
  }
  @media (max-width: 575px) {
    .team-details__experience .number {
      font-size: 40px;
    }
  }
  .team-details__experience .text {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #302F3B;
  }
  @media (max-width: 1199px) {
    .team-details__experience .text {
      font-size: 15px;
      line-height: 24px;
    }
  }
  @media (max-width: 575px) {
    .team-details__experience .text {
      font-size: 14px;
      line-height: 22px;
    }
  }
  .team-details__wcu {
    padding-left: 36px;
  }
  @media (max-width: 1399px) {
    .team-details__wcu {
      padding-left: 0;
    }
  }
  .team-details__wcu .section-top {
    max-width: 561px;
  }
  @media (max-width: 1199px) {
    .team-details__wcu .section-top {
      max-width: 100%;
    }
  }
  .team-details__wcu .section-top__title {
    max-width: 461px;
  }
  .team-details__wcu .wcu3__features-box {
    margin-left: -36px !important;
  }
  @media (max-width: 1399px) {
    .team-details__wcu .wcu3__features-box {
      margin-left: 0 !important;
    }
  }/*# sourceMappingURL=main.css.map */
