/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Fintech - Business Consulting HTML Template
* File          : Css File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General Css
03. Header Css
04. Hero Css
04.1 Services Hero Css
04.2 Values Section Css
05. About Us Css
06. Our Services Css
07. Why Choose Us Css
08. Our Feature Css
09. Fact Counter Css
10. What We Do Css
11. How It Work Css
12. Our Pricing Css
13. Our FAQs Css
14. Our Testimonial Css
15. Our Blog Css
16. Footer Css
17. About Us Page Css
18. Services Page Css
19. Service Single Css
20. Blog Archive Css
21. Blog Single Css
22. Team Page Css
23. Team Single Css
24. Pricing Page Css
25. Client Page Css
26. Testimonial Page Css
27. Image Gallery Css
28. Video Gallery Css
29. FAQs Page Css
30. Contact Page Css
31. 404 Error Page Css
32. Responsive Css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 9999;
}

.popup.success {
  background-color: #4caf50; /* Green background for success messages */
}

.popup.error {
  background-color: #f44336; /* Red background for error messages */
}

:root {
  --primary-color: #040303;
  --secondary-color: #f4f4f4;
  --text-color: #808080;
  --accent-color: #3b82f6;

  --dark-color: #1d2c55;
  --black-color: #000000;
  --white-color: #ffffff;
  --divider-color: #f3f3f3;
  --dark-divider-color: #162f6b;
  --error-color: rgb(230, 87, 87);
  --default-font: "Inter", sans-serif;
  --heading-font: "Montserrat", sans-serif;
}

/************************************/
/*** 	   02. General Css		  ***/
/************************************/

body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7em;
  background-color: var(--white-color);
  color: var(--text-color);
}

p {
  line-height: 1.7em;
  margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2em;
  color: var(--primary-color);
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters > * {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-default {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 100px;
  padding: 18px 70px 18px 30px;
  border: none;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.btn-default:hover {
  background-color: transparent;
}

.btn-default::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.btn-default:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-default::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 30px;
  background-image: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  transform: translate(-30px, -50%);
  transition: all 0.4s ease-in-out;
}

.btn-default.btn-highlighted {
  padding: 18px 30px;
}

.btn-default.btn-highlighted::after {
  display: none;
}

.cb-cursor:before {
  background: var(--accent-color);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--white-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

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

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

.section-row {
  margin-bottom: 80px;
}

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

.section-btn {
  text-align: end;
}

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

.section-title {
  margin-bottom: 40px;
}

.section-title h3 {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-color);
  padding-left: 34px;
  margin-bottom: 15px;
}

.section-title h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("../images/icon-sub-heading.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  width: 24px;
  height: 24px;
}

.section-title h1 {
  font-size: 70px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  cursor: none;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  cursor: none;
}

.section-title h1 span,
.service-hero-title span,
.section-title h2 span {
  color: var(--primary-color);
}

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

.section-title.dark-section h1,
.section-title.dark-section h2,
.section-title.dark-section h3 {
  color: var(--white-color);
}

.section-title.dark-section h3::before {
  filter: brightness(0) invert(1);
}

.section-title.dark-section p {
  color: var(--white-color);
  opacity: 80%;
}

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

/************************************/
/**** 	   03. Header Css		 ****/
/************************************/

/* ============================================
   HUMINEXIA MEGA HEADER — DELOITTE STYLE
   ============================================ */

header.main-header {
  position: relative;
  background: var(--dark-color);
  border-bottom: 1px solid var(--dark-divider-color);
  z-index: 1000;
}

header.main-header .header-sticky {
  position: relative;
  top: 0;
  z-index: 1000;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--dark-color);
  border-bottom: 1px solid var(--dark-divider-color);
  transform: translateY(0);
}

/* ---- Navbar ---- */
.navbar {
  padding: 0;
  align-items: stretch;
  height: 68px;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  height: 55px;
  width: auto;
  display: block;
}

@media screen and (max-width: 992px) {
  .navbar {
    height: auto;
  }

  .navbar-brand img {
    height: 40px;
  }
}

.main-menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.nav-menu-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.navbar-nav {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 68px;
}

/* ---- Nav Items ---- */
.navbar-nav .nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.navbar-nav .nav-item .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  padding: 0 20px !important;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: capitalize;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  height: 100%;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item.open .nav-link {
  color: #fff;
}

.navbar-nav .nav-item.open .nav-link {
  border-bottom-color: var(--primary-color);
}

.nav-arrow {
  font-size: 9px;
  display: inline-block;
  transition: transform 0.25s;
  margin-top: 1px;
}

.nav-item.open .nav-arrow {
  transform: rotate(180deg);
}

/* ---- Header Btn ---- */
.header-btn {
  margin-left: 16px;
}

/* ---- Mega Menu ---- */
.mega-menu {
  display: none;
  position: absolute;
  top: calc(100% - 1px); /* ← overlap by 1px to kill the gap */
  left: 0;
  right: 0;
  width: 100%;
  background: var(--dark-color);
  border-top: 1px solid var(--dark-divider-color);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  z-index: 999;
}

.mega-menu.open {
  display: block;
}

.mega-inner {
  display: flex;
  min-height: 280px;
  max-width: 1320px;
  margin: 0 auto;
}

/* Left panel — category list */
.mega-left {
  width: 260px;
  flex-shrink: 0;
  border-right: 1px solid var(--dark-divider-color);
  padding: 10px 0;
}

.mega-left-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.18s;
}

.mega-left-item:hover,
.mega-left-item.active {
  color: green;
  background: rgba(255, 255, 255, 0.04);
}

.mega-left-item.active {
  border-left-color: var(--primary-color);
  padding-left: 21px;
}

.mega-left-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

/* HOVER */
.mega-left-item:hover {
  color: #fff;
  background: rgba(0, 123, 255, 0.12); /* soft blue */
}

/* ACTIVE (STRONG + CLEAR) */
.mega-left-item.active {
  color: #fff;
  background: rgba(0, 123, 255, 0.2); /* stronger blue */
  border-left-color: var(--primary-color);
  padding-left: 21px;
}

.chev {
  font-size: 14px;
  opacity: 0.45;
}

/* Center panel — sub-links */
.mega-center {
  flex: 1;
  padding: 28px 36px;
}

.mega-sub-title {
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 14px;
}

.mega-sub-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-sub-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14.5px;
  padding: 9px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    color 0.18s,
    padding-left 0.18s;
}

.mega-sub-links a:hover {
  color: var(--secondary-color);
  padding-left: 6px;
}

/* Right panel — featured card */
.mega-right {
  width: 240px;
  flex-shrink: 0;
  border-left: 1px solid var(--dark-divider-color);
  padding: 28px 24px;
}

.mega-feat-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--dark-divider-color);
}

.mega-feat-img-about {
  height: 110px;
  background: url("../images/happy.jpg") center center / cover no-repeat;
  border-bottom: 1px solid var(--dark-divider-color);
}

.mega-feat-img-services {
  height: 110px;
  background: url("../images/tech-hero.jpg") center center / cover no-repeat;
  border-bottom: 1px solid var(--dark-divider-color);
}

.mega-feat-body {
  padding: 14px;
}

.mega-feat-body p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.mega-feat-body h4 {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

/* ---- Overlay ---- */
.mega-overlay {
  display: none;
  position: fixed;
  top: 68px; /* Header height */
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.25);
}

.mega-overlay.open {
  display: block;
}

/* ---- Mobile Toggle Button ---- */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.25s;
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Mobile Menu Drawer ---- */
.mobile-menu-drawer {
  display: none;
  background: var(--dark-color);
  border-top: 1px solid var(--dark-divider-color);
}

.mobile-menu-drawer.open {
  display: block;
}

.mob-item {
  border-bottom: 1px solid var(--dark-divider-color);
}

.mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.18s;
}

.mob-link:hover {
  color: var(--primary-color);
}

.mob-chev {
  font-size: 9px;
  transition: transform 0.25s;
}

.mob-toggle-btn.open .mob-chev {
  transform: rotate(180deg);
}

.mob-sub-menu {
  display: none;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--dark-divider-color);
}

.mob-sub-menu.open {
  display: block;
}

.mob-sub-menu a {
  display: block;
  padding: 12px 20px 12px 36px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition:
    color 0.18s,
    padding-left 0.18s;
}

.mob-sub-menu a:hover {
  color: var(--primary-color);
  padding-left: 42px;
}

.mob-cta {
  padding: 16px 20px;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .main-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width: 992px) {
  .mobile-menu-drawer {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* mobile whatsapp float */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #fff;
  transform: scale(1.1);
}

@media screen and (max-width: 767px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
  }
}

/************************************/
/***        04. Hero Css	      ***/
/************************************/

/* ============================================================
   HERO — image background, text left
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--dark-color);
  overflow: hidden;
  padding: 80px 0 60px;
}

/* ---- Background image ---- */
.hero-bg-image {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: heroBgZoom 12s ease-out forwards;
}

@keyframes heroBgZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

/* Grain texture layer */
.hero-bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}

/* ---- Overlay: dark left, transparent right ---- */
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 5, 15, 0.96) 0%,
    rgba(5, 5, 15, 0.85) 30%,
    rgba(5, 5, 15, 0.5) 55%,
    rgba(5, 5, 15, 0.1) 100%
  );
}

/* ---- Container sits above bg ---- */
.hero .container {
  position: relative;
  z-index: 2;
}

/* ---- Left-aligned content block ---- */
.hero-content-left {
  max-width: 580px;
  padding-right: 40px;
}

/* ---- Eyebrow ---- */
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

/* ---- Headline ---- */
.hero-headline {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white-color);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-headline span {
  color: var(--accent-color);
}

/* ---- Subtext ---- */
.hero-subtext {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin: 0 0 32px;
}

/* ---- CTA row ---- */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-btn-blue {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: #0076ce;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 3px;
  border: 2px solid #0076ce;
  transition:
    background 0.22s,
    color 0.22s,
    border-color 0.22s;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.hero-btn-blue:hover {
  background: transparent;
  color: #fff !important;
  border-color: #fff;
}

.hero-text-link {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none !important;
  padding: 10px 0;
  transition: color 0.2s;
  white-space: nowrap;
}

.hero-text-link:hover {
  color: rgba(255, 255, 255, 0.85) !important;
}

.hero-text-link:hover .hero-link-arrow {
  transform: translateX(5px);
}

.hero-link-arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.2s;
}

.hero-divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 24px;
  vertical-align: middle;
}

/* ---- Scroll indicator ---- */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 100%
  );
  animation: scrollPulse 2s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes scrollPulse {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
  100% {
    opacity: 0;
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

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

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding: 70px 0 50px;
  }

  /* Fix background image on mobile */
  .hero-bg-image {
    background-position: 70% center; /* shift right so subject stays visible */
    background-attachment: scroll; /* fixes iOS fixed bg bug */
  }

  /* Stronger overlay on mobile so text is always readable */
  .hero-image-overlay {
    background: linear-gradient(
      to bottom,
      rgba(5, 5, 15, 0.8) 0%,
      rgba(5, 5, 15, 0.65) 40%,
      rgba(5, 5, 15, 0.92) 100%
    );
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-btn-blue {
    width: 100%;
    justify-content: center;
  }

  .hero-divider {
    display: none;
  }

  .hero-text-link {
    padding: 8px 0;
  }
}
/* ============================================
   VALUES SECTION
   ============================================ */

.our-values {
  padding: 100px 0;
  background: var(--secondary-color);
}

.our-values .section-title {
  max-width: 580px;
  margin: 0 auto 50px;
  text-align: center;
}

/* Thin rectangle card */
.value-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  position: relative;
}

.value-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent-color);
  z-index: 0;
  transition: height 0.4s ease-in-out;
}

.value-item:hover::before {
  height: 100%;
}

/* Icon */
.value-icon {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
  transition: background 0.4s ease-in-out;
}

.value-icon::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary-color);
  z-index: 0;
  transition: height 0.4s ease-in-out;
}

.value-item:hover .value-icon::before {
  height: 100%;
}

.value-icon i {
  position: relative;
  font-size: 20px;
  color: var(--white-color);
  z-index: 1;
}

/* Text */
.value-content {
  position: relative;
  z-index: 1;
}

.value-content h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
  transition: color 0.4s ease-in-out;
  line-height: 1.3;
}

.value-content p {
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
  transition: color 0.4s ease-in-out;
}

.value-item:hover .value-content h3,
.value-item:hover .value-content p {
  color: var(--white-color);
}

/* ============================================
   RFP SECTION
   ============================================ */

.rfp-section {
  padding: 100px 0;
  background: var(--secondary-color);
}

/* ---- Left panel ---- */
.rfp-left {
  position: sticky;
  top: 100px;
  padding-right: 20px;
}

.rfp-left .section-title {
  margin-bottom: 36px;
}

/* Nav buttons */
.rfp-nav-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.rfp-nav-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 12px;
  padding: 18px 20px;
  text-decoration: none !important;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.rfp-nav-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent-color);
  z-index: 0;
  transition: height 0.35s ease-in-out;
}

.rfp-nav-btn:hover::before {
  height: 100%;
}

.rfp-nav-btn-icon {
  position: relative;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.3s;
}

.rfp-nav-btn:hover .rfp-nav-btn-icon {
  background: var(--primary-color);
}

.rfp-nav-btn-icon i {
  font-size: 18px;
  color: var(--white-color);
}

.rfp-nav-btn-content {
  position: relative;
  flex: 1;
  z-index: 1;
}

.rfp-nav-btn-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 3px;
  transition: color 0.3s;
}

.rfp-nav-btn-content p {
  font-size: 13px;
  color: var(--body-color);
  margin: 0;
  transition: color 0.3s;
}

.rfp-nav-btn:hover .rfp-nav-btn-content h4,
.rfp-nav-btn:hover .rfp-nav-btn-content p {
  color: var(--white-color);
}

.rfp-nav-btn-arrow {
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.rfp-nav-btn-arrow i {
  font-size: 16px;
  color: var(--primary-color);
  transition:
    color 0.3s,
    transform 0.3s;
}

.rfp-nav-btn:hover .rfp-nav-btn-arrow i {
  color: var(--white-color);
  transform: translateX(4px);
}

/* Privacy note */
.rfp-privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  padding: 16px 18px;
}

.rfp-privacy-note i {
  font-size: 16px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.rfp-privacy-note p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--body-color);
  margin: 0;
}

/* ---- Form box ---- */
.rfp-form-box {
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 48px 44px;
}

.rfp-form-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--divider-color);
}

.rfp-form-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.rfp-form-header p {
  font-size: 14px;
  color: var(--body-color);
  margin: 0;
}

.required-star {
  color: #e53935;
  margin-left: 2px;
}

/* Fields */
.rfp-field {
  margin-bottom: 22px;
}

.rfp-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.rfp-field input,
.rfp-field select,
.rfp-field textarea {
  width: 100%;
  background: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--heading-color);
  font-family: inherit;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.rfp-field input:focus,
.rfp-field select:focus,
.rfp-field textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb, 0, 118, 206), 0.08);
  background: var(--white-color);
}

.rfp-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.rfp-field textarea {
  resize: vertical;
  min-height: 140px;
}

/* Privacy box */
.rfp-privacy-box {
  background: var(--secondary-color);
  border-left: 3px solid var(--primary-color);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.rfp-privacy-box p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--body-color);
  margin: 0;
}

.rfp-privacy-box a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

/* Checkbox */
.rfp-checkbox-field {
  margin-bottom: 28px;
}

.rfp-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.rfp-checkbox-label input[type="checkbox"] {
  display: none;
}

.rfp-checkmark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--divider-color);
  border-radius: 4px;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-top: 1px;
}

.rfp-checkbox-label input:checked + .rfp-checkmark {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.rfp-checkbox-label input:checked + .rfp-checkmark::after {
  content: "";
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
  display: block;
}

.rfp-checkbox-text {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.5;
}

.rfp-checkbox-text a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

/* Submit */
.rfp-submit {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rfp-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.rfp-submit-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--body-color);
  margin: 0;
}

.rfp-submit-note i {
  color: #2e7d32;
  font-size: 15px;
}

/* ============================================
   TERMS PAGE
   ============================================ */

.terms-page {
  padding: 80px 0 100px;
  background: var(--white-color);
}

.terms-content {
  max-width: 800px;
  margin: 0 auto;
}

.terms-header {
  margin-bottom: 50px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--divider-color);
}

.terms-updated {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.terms-header h1 {
  font-size: 46px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
  line-height: 1.2;
}

.terms-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--body-color);
  margin: 0;
}

/* Sections */
.terms-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--divider-color);
}

.terms-section:last-of-type {
  border-bottom: none;
}

.terms-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-section h2 span {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.terms-section p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--body-color);
  margin-bottom: 14px;
}

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

.terms-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.terms-section ul li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-color);
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.terms-section ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 13px;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 3px;
}

.terms-section a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.2s;
}

.terms-section a:hover {
  color: var(--accent-color);
}

/* Contact box inside terms */
.terms-contact-box {
  background: var(--secondary-color);
  border-left: 3px solid var(--primary-color);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin-top: 16px;
}

.terms-contact-box p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px !important;
  font-size: 14px;
}

.terms-contact-box p:last-child {
  margin-bottom: 0 !important;
}

.terms-contact-box i {
  color: var(--primary-color);
  font-size: 14px;
  width: 16px;
}

/* Footer buttons */
.terms-footer-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--divider-color);
}

.btn-outlined {
  background: transparent !important;
  border: 2px solid var(--accent-color) !important;
  color: var(--accent-color) !important;
}

.btn-outlined:hover {
  background: var(--accent-color) !important;
  color: var(--white-color) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
  .rfp-section {
    padding: 70px 0;
  }

  .rfp-left {
    position: static;
    padding-right: 0;
    margin-bottom: 48px;
  }

  .rfp-form-box {
    padding: 36px 28px;
  }

  .terms-header h1 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .rfp-form-box {
    padding: 28px 20px;
  }

  .rfp-submit {
    flex-direction: column;
    align-items: flex-start;
  }

  .rfp-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .terms-header h1 {
    font-size: 28px;
  }

  .terms-footer-btns {
    flex-direction: column;
  }

  .terms-footer-btns .btn-default {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ============================================
   CONSULTING APPROACH
   ============================================ */

.consulting-approach {
  padding: 100px 0;
  background: var(--white-color);
}

.consulting-approach .section-title {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
}

/* ---- Steps container ---- */
.approach-steps {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

/* ---- Single step ---- */
.approach-step {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 0;
}

/* ---- Left: number + vertical line ---- */
.approach-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 80px;
}

.approach-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--white-color);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.3s ease-in-out;
}

.approach-step:hover .approach-step-number {
  background: var(--primary-color);
}

/* Vertical connector line */
.approach-step-line {
  flex: 1;
  width: 2px;
  background: var(--divider-color);
  margin: 4px 0;
}

/* Hide line on last step */
.approach-step.last-step .approach-step-line {
  display: none;
}

/* ---- Right: icon + content ---- */
.approach-step-right {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0 0 48px 24px;
  flex: 1;
}

.approach-step.last-step .approach-step-right {
  padding-bottom: 0;
}

/* Icon box */
.approach-step-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.approach-step-icon i {
  font-size: 20px;
  color: var(--primary-color);
  transition: color 0.3s;
}

.approach-step:hover .approach-step-icon {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.approach-step:hover .approach-step-icon i {
  color: var(--white-color);
}

/* Content */
.approach-step-content {
  flex: 1;
  padding-top: 12px;
}

.approach-step-content h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--heading-color);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.approach-step-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--body-color);
  margin: 0;
}

.approach-step:hover .approach-step-content h3 {
  color: var(--primary-color);
}

/* Approach right visual */
.approach-visual-wrapper {
  position: sticky;
  top: 100px;
  display: flex;
  justify-content: center;
}

.approach-circle {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: conic-gradient(
    #2563eb 0deg 72deg,
    #3b82f6 72deg 144deg,
    #14b8a6 144deg 216deg,
    #22c55e 216deg 288deg,
    #1d2c55 288deg 360deg
  );
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.approach-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-shadow: inset 0 0 0 8px #f3f4f6;
}

.center-icon {
  font-size: 28px;
  color: #1d2c55;
  margin-bottom: 10px;
}

.approach-center h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1d2c55;
  margin-bottom: 8px;
  line-height: 1.3;
}

.approach-center p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
}

.step-label {
  position: absolute;
  font-size: 12px;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  line-height: 1.3;
  background: #ffffff;
  border-radius: 8px;
  padding: 5px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  pointer-events: auto; /* ← changed from none */
  cursor: pointer; /* ← added */
  border: 1.5px solid currentColor;
}

/* Top-left */
.step-1 {
  top: 18px;
  left: 18px;
  color: #1d2c55;
  border-color: #1d2c55;
}

/* Top-right */
.step-2 {
  top: 18px;
  right: 18px;
  color: #2563eb;
  border-color: #2563eb;
}

/* Right-bottom */
.step-3 {
  top: 65%;
  right: -50px;
  transform: translateY(-50%);
  color: #3b82f6;
  border-color: #3b82f6;
}

/* Bottom-left */
.step-4 {
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #0d9488;
  border-color: #0d9488;
}

/* Left-middle */
.step-5 {
  top: 65%;
  left: -40px;
  transform: translateY(-50%);
  color: #16a34a;
  border-color: #16a34a;
}

.approach-circle:hover {
  transform: scale(1.02);
  transition: 0.3s ease;
}

@media (max-width: 991px) {
  .approach-visual-wrapper {
    position: relative;
    top: auto;
    margin-top: 40px;
  }

  .approach-circle {
    width: 300px;
    height: 300px;
  }

  /* .approach-center {
    width: 180px;
    height: 180px;
  } */
}

/* ── Step card popover ── */
.step-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid currentColor;
  border-radius: 12px;
  padding: 14px 16px;
  width: 210px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px) scale(0.97);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 100;
  text-align: left;
  white-space: normal;
}

.step-label:hover .step-card,
.step-label.active .step-card {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.step-card-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin-bottom: 6px;
}

.step-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.step-card-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon-1 {
  background: #eef2ff;
  color: #1d2c55;
}
.step-icon-2 {
  background: #eff6ff;
  color: #2563eb;
}
.step-icon-3 {
  background: #eff6ff;
  color: #3b82f6;
}
.step-icon-4 {
  background: #f0fdfa;
  color: #0d9488;
}
.step-icon-5 {
  background: #f0fdf4;
  color: #16a34a;
}

.step-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
}

.step-card-desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Card position per step */
.step-1 .step-card {
  bottom: calc(100% + 10px);
  left: 0;
}
.step-2 .step-card {
  bottom: calc(100% + 10px);
  right: 0;
}

.step-3 .step-card {
  top: 50%;
  right: calc(100% + 10px);
  transform: translateY(-50%) scale(0.97);
}
.step-3:hover .step-card,
.step-3.active .step-card {
  transform: translateY(-50%) scale(1);
}

.step-4 .step-card {
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px) scale(0.97);
}
.step-4:hover .step-card,
.step-4.active .step-card {
  transform: translateX(-50%) translateY(0) scale(1);
}

.step-5 .step-card {
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%) scale(0.97);
}
.step-5:hover .step-card,
.step-5.active .step-card {
  transform: translateY(-50%) scale(1);
}

/* ---- CTA bar ---- */
.approach-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--accent-color);
  border-radius: 16px;
  padding: 36px 44px;
  margin-top: 60px;
}

.approach-cta-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 6px;
}

.approach-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
  .consulting-approach {
    padding: 70px 0;
  }

  .approach-cta {
    flex-direction: column;
    text-align: center;
    padding: 32px 28px;
  }
}

@media (max-width: 767px) {
  .approach-step-left {
    width: 52px;
  }

  .approach-step-number {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .approach-step-right {
    padding-left: 16px;
    padding-bottom: 36px;
    gap: 14px;
  }

  .approach-step-icon {
    width: 44px;
    height: 44px;
  }

  .approach-step-icon i {
    font-size: 17px;
  }

  .approach-step-content h3 {
    font-size: 17px;
  }

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

@media (max-width: 480px) {
  .approach-step-right {
    flex-direction: column;
    gap: 10px;
  }

  .approach-cta-content h3 {
    font-size: 18px;
  }
}

/* ------------------------ irf sectio ---------- */

.irrf {
  padding: 50px 0;
  background: var(--white-color);
}
.irrf-thinking {
  padding: 50px 0;
  background: var(--white-color);
}
.irrf-highstake {
  padding: 50px 0;
  background: var(--secondary-color);
}

/* ============================================
   MISSION SECTION
   ============================================ */

.our-mission {
  padding: 100px 0;
  background: var(--secondary-color);
}
.our-mission.service {
  padding: 50px 0;
  background: var(--white-color);
}

.mission-content {
  padding-right: 40px;
}

.mission-img {
  padding-left: 20px;
}

.mission-img figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  margin: 0;
}

.mission-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* ============================================
   VISION SECTION
   ============================================ */

.our-vision {
  padding: 100px 0;
  background: var(--white-color);
}

.vision-content {
  padding-left: 40px;
}

.vision-img {
  padding-right: 20px;
}

.vision-img figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  margin: 0;
}

.vision-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
  .our-values,
  .our-mission,
  .our-vision {
    padding: 20px 0;
  }

  .mission-content,
  .vision-content {
    padding: 0;
    margin-top: 20px;
  }

  .mission-img,
  .vision-img {
    padding: 0;
  }

  .mission-img img,
  .vision-img img {
    height: 380px;
  }

  /* Stack vision image above text on tablet */
  .our-vision .row {
    flex-direction: column-reverse;
  }
}

@media (max-width: 767px) {
  .value-item {
    padding: 16px 18px;
    gap: 14px;
  }

  .value-content h3 {
    font-size: 15px;
  }

  .mission-img img,
  .vision-img img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .mission-img img,
  .vision-img img {
    height: 240px;
    border-radius: 12px;
  }
}

/************************************/
/***        05. About Us Css	  ***/
/************************************/

.about-us {
  padding: 100px 0;
}

.about-img-single {
  position: relative;
  padding-right: 30px;
}

.about-img-single figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  margin: 0;
}

.about-img-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
}

.about-us-content {
  padding-left: 30px;
}

.about-us-btn {
  margin-top: 36px;
}

/* Responsive */
@media (max-width: 991px) {
  .about-img-single {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .about-us-content {
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .about-us {
    padding: 60px 0;
  }
}

/************************************/
/***    06. Our Services Css      ***/
/************************************/

/* ============================================
   OUR SERVICES
   ============================================ */

.our-services {
  background: var(--secondary-color);
  padding: 100px 0;
}

.our-service-content {
  position: sticky;
  top: 20px;
}

/* ---- Grid ---- */
.our-service-list {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  overflow: hidden;
}

/* ---- Service Item ---- */
.service-item {
  position: relative;
  width: 50%;
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  padding: 40px;
  overflow: hidden;
}

.service-item:nth-child(odd) {
  border-bottom: none;
}

.service-item:nth-child(even) {
  border-left: none;
  border-bottom: none;
}

/* last two items get bottom border back */
.service-item:nth-last-child(1),
.service-item:nth-last-child(2) {
  border-bottom: 1px solid var(--divider-color);
}

/* hover fill */
.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent-color);
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.service-item:hover::before,
.service-item.active::before {
  top: auto;
  height: 100%;
}

/* ---- Content Box ---- */
.service-content-box {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

/* ---- Icon Box ---- */
.service-item .icon-box {
  position: relative;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  overflow: hidden;
  transition: background 0.4s ease-in-out;
}

.service-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  border-radius: 8px;
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.service-item:hover .icon-box::before,
.service-item.active .icon-box::before {
  top: auto;
  height: 100%;
}

.service-item .icon-box i {
  position: relative;
  z-index: 1;
  font-size: 22px;
  color: var(--white-color);
}

/* ---- Item Content ---- */
.service-item-content {
  position: relative;
  width: calc(100% - 72px);
  z-index: 1;
}

.service-item-content h3 {
  font-size: 19px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 12px;
  transition: color 0.4s ease-in-out;
}

.service-item-content p {
  margin-bottom: 24px;
  transition: color 0.4s ease-in-out;
}

.service-item:hover .service-item-content h3,
.service-item.active .service-item-content h3,
.service-item:hover .service-item-content p,
.service-item.active .service-item-content p {
  color: var(--white-color);
}

/* ---- Learn More Button ---- */
.service-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--accent-color);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white-color) !important;
  text-decoration: none !important;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.service-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary-color);
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.service-item:hover .service-btn::before,
.service-item.active .service-btn::before {
  top: auto;
  bottom: 0;
  height: 100%;
}

.service-btn span {
  position: relative;
  z-index: 1;
}

/* ---- Number ---- */
.service-no {
  position: absolute;
  right: 20px;
  bottom: -15px;
  z-index: 1;
  line-height: 1;
}

.service-no h2 {
  font-size: 90px;
  letter-spacing: 0.03em;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--divider-color);
  stroke-width: 1px;
  stroke: var(--divider-color);
  transition: all 0.4s ease-in-out;
  margin: 0;
}

.service-item:hover .service-no h2,
.service-item.active .service-no h2 {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
  stroke: rgba(255, 255, 255, 0.2);
}

/* ---- Footer ---- */
.service-footer {
  margin-top: 40px;
}

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

.service-footer p a {
  font-weight: 700;
  text-decoration: underline;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.service-footer p a:hover {
  color: var(--primary-color);
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .service-item {
    width: 100%;
    border-left: 1px solid var(--divider-color) !important;
    border-bottom: none !important;
  }

  .service-item:last-child {
    border-bottom: 1px solid var(--divider-color) !important;
  }

  .our-service-content {
    position: static;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .service-item {
    padding: 28px;
  }

  .service-no h2 {
    font-size: 70px;
  }
}

/************************************/
/***      07. Why Choose Us Css   ***/
/************************************/

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-choose-us {
  padding: 100px 0;
  background-color: var(--secondary-color);
}

/* ---- Left Content ---- */
.why-choose-content {
  padding-right: 40px;
}

/* ---- Box List ---- */
.why-choose-box-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--divider-color);
}

/* ---- Individual Box ---- */
.why-choose-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  width: calc(50% - 14px);
}

/* ---- Icon ---- */
.why-choose-box .icon-box {
  position: relative;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.4s ease-in-out;
}

.why-choose-box .icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primary-color);
  border-radius: 8px;
  transform: scale(0);
  transition: transform 0.4s ease-in-out;
}

.why-choose-box:hover .icon-box::before {
  transform: scale(1);
}

.why-choose-box .icon-box i {
  position: relative;
  z-index: 1;
  font-size: 20px;
  color: var(--white-color);
}

/* ---- Box Text ---- */
.why-choose-box-content h3 {
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 8px;
  line-height: 1.3;
}

.why-choose-box-content p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
  color: var(--body-color);
}

/* ---- Checklist ---- */
.why-choose-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
}

.why-choose-list ul li {
  width: calc(50% - 15px);
  position: relative;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  color: var(--heading-color);
  padding-left: 28px;
}

.why-choose-list ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 18px;
  color: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* ---- Right Image ---- */
.why-choose-image {
  position: relative;
}

.why-choose-image figure {
  display: block;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
}

.why-choose-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .why-choose-image {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .why-choose-image figure {
    width: 100%;
    max-width: 600px; /* optional: prevents it getting too wide on tablets */
  }

  /* Force the Bootstrap column to be centered and full width */
  .why-choose-us .col-lg-6 {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
}

@media (max-width: 767px) {
  .why-choose-us {
    padding: 70px 0;
  }

  .why-choose-box {
    width: 100%;
  }

  .why-choose-list ul li {
    width: 100%;
  }

  .why-choose-image img {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .why-choose-box-list {
    gap: 20px;
  }

  .why-choose-image img {
    height: 260px;
    border-radius: 12px;
  }
}

/************************************/
/***      08. Our Feature Css     ***/
/************************************/

.our-feature {
  padding: 100px 0;
  background-color: var(--dark-color);
  background-image: url("../images/our-feature-bg.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.our-feature-list {
  display: flex;
  flex-wrap: wrap;
}

.our-feature-item {
  width: 33.33%;
  padding: 40px;
  border-radius: 20px;
}

.our-feature-item:nth-child(odd) {
  background: var(--dark-divider-color);
}

.our-feature-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--dark-divider-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
}

.our-feature-item .icon-box:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  border-radius: 5px;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.our-feature-item:hover .icon-box:before,
.our-feature-item.active .icon-box::before {
  transform: scale(1);
}

.our-feature-item:nth-child(odd) .icon-box {
  background: var(--dark-color);
}

.our-feature-item .icon-box img,
.our-feature-item .icon-box i {
  position: relative;
  max-width: 30px;
  z-index: 1;
}

.feature-item-content h3 {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.feature-item-content p {
  color: var(--white-color);
  opacity: 80%;
  margin: 0;
}

.our-feature-footer {
  text-align: center;
  margin-top: 60px;
}

.our-feature-footer p {
  color: var(--white-color);
  margin: 0;
}

.our-feature-footer p span {
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 100px;
  line-height: 1.1em;
  padding: 2px 10px;
  margin-right: 5px;
}

.our-feature-footer a {
  font-weight: 700;
  text-decoration: underline;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.our-feature-footer a:hover {
  color: var(--primary-color);
}

/************************************/
/***     09. Fact Counter Css     ***/
/************************************/

.fact-counter {
  padding: 100px 0;
}

.fact-counter-image {
  position: relative;
  padding: 0 45px 55px 0;
}

.fact-counter-img figure {
  display: block;
  border-radius: 20px;
}

.fact-counter-img img {
  width: 100%;
  aspect-ratio: 1 / 0.945;
  object-fit: cover;
  border-radius: 20px;
}

.fact-counter-skillbar {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  animation: moveskillbar 3s infinite linear alternate;
}

@keyframes moveskillbar {
  50% {
    right: 40px;
  }
}

.fact-counter-skillbar img {
  border-radius: 20px;
}

.fact-counter-content {
  margin-left: 20px;
}

.fact-counter-box-list {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.fact-counter-box {
  width: calc(33.33% - 20px);
}

.fact-counter-box .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
  background-color: var(--accent-color);
  border-radius: 5px;
  margin-bottom: 20px;
  overflow: hidden;
}

.fact-counter-box .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 5px;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.fact-counter-box:hover .icon-box::before {
  transform: scale(1);
}

.fact-counter-box .icon-box img,
.fact-counter-box .icon-box i {
  position: relative;
  max-width: 30px;
  z-index: 1;
}

.fact-counter-box-content h2 {
  font-size: 46px;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.fact-counter-box-content p {
  text-transform: capitalize;
  margin-bottom: 0;
}

.fact-counter-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.fact-counter-list ul li {
  width: calc(50% - 15px);
  position: relative;
  color: var(--primary-color);
  text-transform: capitalize;
  padding-left: 30px;
}

.fact-counter-list ul li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 20px;
  color: var(--accent-color);
  display: inline-block;
  line-height: normal;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/************************************/
/***      10. What We Do Css      ***/
/************************************/

/* ============================================
   WHAT WE DO
   ============================================ */

.what-we-do {
  background-color: var(--secondary-color);
  padding: 100px 0;
}

/* ---- Left Content ---- */
.what-we-do-content {
  padding-right: 40px;
}

/* ---- Checklist ---- */
.what-we-do-list {
  margin-bottom: 40px;
}

.what-we-do-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
}

.what-we-do-list ul li {
  width: calc(50% - 15px);
  position: relative;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  color: var(--heading-color);
  padding-left: 28px;
}

.what-we-do-list ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 18px;
  color: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* ---- Right Image ---- */
.what-we-do-image {
  padding-left: 20px;
}

.what-we-do-image figure {
  display: block;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
}

.what-we-do-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .what-we-do-content {
    padding-right: 0;
    margin-bottom: 48px;
  }

  .what-we-do-image {
    padding-left: 0;
  }

  .what-we-do-image img {
    height: 420px;
  }
}

@media (max-width: 767px) {
  .what-we-do {
    padding: 70px 0;
  }

  .what-we-do-list ul li {
    width: 100%;
  }

  .what-we-do-image img {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .what-we-do-image img {
    height: 260px;
    border-radius: 12px;
  }
}
/************************************/
/***      11. How It Work Css     ***/
/************************************/

.how-it-work {
  padding: 100px 0;
}

.how-it-work-content {
  position: sticky;
  top: 30px;
}

.work-step-item {
  position: relative;
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 40px 40px 0 40px;
  margin-bottom: 40px;
  overflow: hidden;
}

.work-step-item:last-child {
  margin-bottom: 0;
}

.work-step-item::before {
  content: "";
  display: block;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-color);
  width: 100%;
  height: 0;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.work-step-item:hover::before {
  height: 100%;
  top: 0;
  bottom: auto;
}

.work-step-item-content {
  position: relative;
  margin-bottom: 15px;
  z-index: 1;
}

.work-step-item-content h3 {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.work-step-item-content h2 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.work-step-item:hover .work-step-item-content h3,
.work-step-item:hover .work-step-item-content h2 {
  color: var(--white-color);
}

.work-step-item-content p {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}

.work-step-item:hover .work-step-item-content p {
  color: var(--white-color);
  opacity: 80%;
}

.work-step-item-no {
  position: relative;
  margin-bottom: -35px;
  z-index: 1;
}

.work-step-item-no h2 {
  font-size: 100px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: transparent;
  stroke-width: 10px;
  -webkit-text-stroke-width: 1px;
  stroke: var(--text-color);
  -webkit-text-stroke-color: var(--text-color);
  opacity: 15%;
  transition: all 0.4s ease-in-out;
}

.work-step-item:hover .work-step-item-no h2 {
  stroke: var(--white-color);
  -webkit-text-stroke-color: var(--white-color);
}

/************************************/
/***      12. Our Pricing Css     ***/
/************************************/

.our-pricing {
  background-color: var(--secondary-color);
  padding: 100px 0;
}

.pricing-box {
  background-color: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 30px;
}

.pricing-header {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.pricing-header h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.pricing-header h2 {
  font-size: 46px;
  color: var(--accent-color);
}

.pricing-header sup {
  font-size: 30px;
  top: -6px;
}

.pricing-header sub {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--text-color);
  bottom: 0;
}

.pricing-body {
  margin-bottom: 30px;
}

.pricing-list-title {
  margin-bottom: 20px;
}

.pricing-list-title h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

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

.pricing-list ul li {
  position: relative;
  text-transform: capitalize;
  padding-left: 30px;
  margin-bottom: 10px;
}

.pricing-list ul li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: var(--accent-color);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

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

.pricing-btn .btn-default {
  width: 100%;
  text-align: center;
}

.pricing-box.highlighted-box {
  position: relative;
  background-color: var(--dark-color);
  overflow: hidden;
}

.highlighted-box::before {
  content: "featured";
  position: absolute;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-color);
  top: 35px;
  right: -45px;
  width: 190px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white-color);
  transform: rotate(45deg);
}

.pricing-box.highlighted-box .pricing-header {
  border-color: var(--dark-divider-color);
  padding: 0 60px 30px 0;
}

.pricing-box.highlighted-box .pricing-header h3,
.pricing-box.highlighted-box .pricing-header h2,
.pricing-box.highlighted-box .pricing-header h2 sub,
.pricing-box.highlighted-box .pricing-list-title h3,
.pricing-box.highlighted-box .pricing-list ul li,
.pricing-box.highlighted-box .pricing-list ul li::before {
  color: var(--white-color);
}

.pricing-box.highlighted-box .pricing-btn .btn-default {
  background: var(--white-color);
  color: var(--dark-color);
}

.pricing-box.highlighted-box .pricing-btn .btn-default:hover {
  color: var(--white-color);
}

.pricing-box.highlighted-box .pricing-btn .btn-default:hover::before {
  background: var(--accent-color);
}

.pricing-benefit-list {
  margin-top: 30px;
}

.pricing-benefit-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
}

.pricing-benefit-list ul li {
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
}

.pricing-benefit-list ul li img {
  max-width: 20px;
  margin-right: 15px;
}

/************************************/
/***       13. Our FAQs Css       ***/
/************************************/

.our-faqs {
  padding: 100px 0;
}

.our-faqs-image {
  position: relative;
  padding-right: 70px;
}

.our-faqs-img figure {
  display: block;
  border-radius: 20px;
}

.our-faqs-img img {
  width: 100%;
  aspect-ratio: 1 / 1.065;
  object-fit: cover;
  border-radius: 20px;
}

.client-review-box {
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 100%;
  max-width: 210px;
  text-align: center;
  background-color: var(--dark-color);
  border-radius: 10px;
  padding: 20px;
  animation: reviewbox 3s infinite linear alternate;
}

@keyframes reviewbox {
  50% {
    right: 50px;
  }
}

.client-review-box-content {
  margin-bottom: 15px;
}

.client-review-box-content p {
  font-size: 18px;
  font-weight: 500;
  color: var(--white-color);
  margin-bottom: 0;
}

.client-review-box-content p span {
  font-size: 16px;
  font-weight: 400;
  display: block;
}

.client-review-images {
  display: inline-flex;
}

.client-review-images .client-image {
  position: relative;
  display: inline-block;
  margin-left: -10px;
  border: 1px solid var(--dark-color);
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.client-review-images .client-image:first-child {
  margin: 0;
}

.client-review-images .client-image figure {
  display: block;
}

.client-review-images .client-image img {
  max-width: 50px;
}

.client-image.add-more {
  width: 32px;
  height: 32px;
  background-color: var(--white-color);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.client-image.add-more:hover {
  background-color: var(--accent-color);
}

.client-image.add-more p {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.client-image.add-more:hover p {
  color: var(--white-color);
}

.faq-accordion .accordion-item {
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

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

.faq-accordion .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
  padding: 16px 45px 16px 20px;
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--dark-color);
  color: var(--white-color);
  border-bottom: 1px solid var(--dark-divider-color);
}

.faq-accordion .accordion-header .accordion-button.collapsed {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\f068";
  font-family: "Font Awesome 6 Free";
  font-size: 20px;
  font-weight: 900;
  color: var(--white-color);
  position: absolute;
  right: 16px;
  top: 50%;
  bottom: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transform: translate(0px, -10px);
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\f067";
  color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body {
  background-color: var(--dark-color);
  padding: 16px 45px 16px 20px;
}

.faq-accordion .accordion-item .accordion-body p {
  color: var(--white-color);
  opacity: 80%;
  margin: 0;
}

/************************************/
/***   14. Our Testimonial Css    ***/
/************************************/

.our-testimonial {
  padding: 100px 0;
  background: url(../images/testimonial-bg-img.svg) no-repeat;
  background-color: var(--dark-color);
  background-position: center center;
  background-size: auto;
}

.testimonial-content {
  margin-right: 40px;
}

.testimonial-slider-box {
  background-color: var(--dark-divider-color);
  backdrop-filter: blur(20px);
  padding: 50px 40px;
  border-radius: 20px;
}

.testimonial-slider {
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 50px;
  padding-bottom: 50px;
}

.testimonial-slider .swiper-wrapper {
  cursor: none;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.customer-logo img {
  width: 100%;
  max-width: 170px;
}

.testimonial-quotes {
  margin-left: 20px;
}

.testimonial-quotes img {
  width: 100%;
  max-width: 40px;
}

.testimonial-body {
  margin-bottom: 40px;
}

.testimonial-body p {
  color: var(--white-color);
  opacity: 80%;
  margin: 0;
}

.testimonial-author {
  width: 75%;
  display: flex;
  align-items: center;
}

.testimonial-author .author-image {
  margin-right: 20px;
}

.testimonial-author .author-image figure {
  display: block;
  border-radius: 5px;
}

.testimonial-author .author-image img {
  max-width: 40px;
  border-radius: 5px;
}

.testimonial-author .author-content {
  width: calc(100% - 60px);
}

.testimonial-author .author-content h3 {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  color: var(--white-color);
  padding-right: 20px;
}

.testimonial-author .author-content h3 span {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white-color);
  opacity: 80%;
  margin: 0;
}

.testimonial-slider .testimonial-pagination {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  z-index: 1;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
  position: relative;
  height: 12px;
  width: 12px;
  background: var(--white-color);
  margin: 0 8px;
  transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

.testimonial-slider
  .testimonial-pagination
  .swiper-pagination-bullet-active:before {
  height: 24px;
  width: 24px;
  border: 1px solid var(--accent-color);
}

.customer-rating-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}

.customer-rating-box {
  width: calc(33.33% - 26.67px);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border: 1px solid var(--dark-divider-color);
  border-radius: 10px;
  padding: 10px;
}

.customer-rating-image {
  margin-right: 10px;
}

.customer-rating-image img {
  width: 100%;
  max-width: 40px;
}

.customer-rating-content p {
  color: var(--white-color);
  text-transform: capitalize;
  display: block;
  margin-bottom: 5px;
}

.customer-rating-counter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.customer-rating-counter h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--white-color);
}

.customer-rating-star-box {
  text-align: center;
}

.customer-rating-star i {
  font-size: 12px;
  color: var(--white-color);
}

.customer-rating-counter p {
  text-transform: capitalize;
  text-align: center;
  color: var(--white-color);
  margin-right: 10px;
  margin-bottom: 0;
}

.customer-rating-counter p span {
  display: block;
  font-size: 20px;
  font-weight: 500;
}

.star-rating-img img {
  width: 100%;
  max-width: 85px;
}

.customer-rating-box.customer-rating-content p {
  margin: 0;
}

/************************************/
/***       15. Our Blog Css       ***/
/************************************/

.our-blog {
  padding: 100px 0 70px;
}

.post-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.post-featured-image,
.post-item-body {
  width: calc(50% - 15px);
}

.post-featured-image a {
  cursor: none;
}

.post-featured-image figure,
.post-featured-image a {
  display: block;
  border-radius: 20px;
}

.post-featured-image img {
  width: 100%;
  aspect-ratio: 1 / 0.85;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
  transform: scale(1.1);
}

.post-item-meta {
  margin-bottom: 20px;
}

.post-item-meta ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-item-meta ul li {
  color: var(--text-color);
  text-transform: capitalize;
  display: inline-block;
  margin-right: 15px;
}

.post-item-meta ul li:last-child {
  margin-right: 0;
}

.post-item-meta ul li i {
  color: var(--text-color);
  font-size: 16px;
  margin-right: 5px;
}

.post-item-content {
  margin-bottom: 20px;
}

.post-item-content h2 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.4em;
}

.post-item-content h2 a {
  color: inherit;
}

.readmore-btn {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--accent-color);
  padding-right: 35px;
  transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
  color: var(--primary-color);
}

.readmore-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 0;
  transform: translateY(-50%);
  background: url("../images/arrow-accent.svg") no-repeat;
  background-position: right center;
  background-size: cover;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.readmore-btn:hover:before {
  filter: brightness(0) invert(0);
}

/************************************/
/***        16. Footer Css        ***/
/************************************/

footer.main-footer {
  background: url("../images/footer-bg.svg"), var(--dark-color);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 100px 0 0 0;
}

.footer-newsletter-box {
  margin-right: 120px;
}

.footer-newsletter-title {
  margin-bottom: 40px;
}

.footer-newsletter-title h3 {
  font-size: 34px;
  color: var(--white-color);
}

.newsletter-form .form-group {
  display: flex;
}

.newsletter-form .form-group .form-control {
  width: 85%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4em;
  color: var(--white-color);
  background: transparent;
  border: 1px solid var(--dark-divider-color);
  border-right: none;
  border-radius: 10px 0 0 10px;
  outline: none;
  box-shadow: none;
  padding: 15px;
  opacity: 80%;
}

.newsletter-form .form-group .form-control::placeholder {
  color: var(--white-color);
  opacity: 80%;
}

.newsletter-form .form-group .newsletter-btn {
  background-color: var(--accent-color);
  width: 15%;
  border: none;
  border-radius: 0 10px 10px 0;
  padding: 15px;
  transition: all 0.3s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover {
  background-color: var(--primary-color);
}

.newsletter-form .form-group .newsletter-btn img {
  max-width: 28px;
}

.footer-links h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 25px;
}

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

.footer-links ul li {
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 10px;
  opacity: 80%;
  transition: all 0.3s ease-in-out;
}

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

.footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-links ul li a {
  color: inherit;
}

.footer-cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  background-color: var(--dark-divider-color);
  border-radius: 20px;
  margin-top: 60px;
  padding: 40px;
}

.footer-logo {
  width: calc(20% - 10px);
}

.footer-logo img {
  width: 100%;
  max-width: 210px;
}

.footer-contact-box {
  width: calc(80% - 10px);
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 30px 80px;
}

.footer-contact-item {
  position: relative;
}

.footer-contact-item::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: 0;
  background-color: var(--dark-divider-color);
  height: 100%;
  width: 1px;
}

.footer-contact-item:last-child::before {
  display: none;
}

.footer-contact-item p {
  color: var(--white-color);
  opacity: 80%;
  margin-bottom: 10px;
}

.footer-contact-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
}

.footer-copyright {
  padding: 60px 0;
}

.footer-copyright-text p {
  color: var(--white-color);
  margin: 0;
  opacity: 80%;
}

.footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

.footer-menu ul li {
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  line-height: normal;
  color: var(--white-color);
  margin-right: 40px;
  opacity: 80%;
  transition: all 0.3s ease-in-out;
}

.footer-menu ul li:last-child {
  margin-right: 0;
}

.footer-menu ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -23px;
  background-color: var(--dark-divider-color);
  border-radius: 50%;
  height: 6px;
  width: 6px;
  transform: translateY(-50%);
}

.footer-menu ul li:last-child:before {
  display: none;
}

.footer-menu ul li:hover {
  color: var(--accent-color);
}

.footer-menu ul li a {
  color: inherit;
}

/************************************/
/***     17. About Us Page Css    ***/
/************************************/

.page-header {
  position: relative;
  background-image: url("../images/pageheader.jpg"); /* ← swap to any real image you have */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  overflow: hidden;
}

/* Dark overlay so text stays readable over the photo */
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 20, 0.65) 0%,
    rgba(5, 5, 20, 0.55) 100%
  );
  z-index: 0;
}

/* Push content above overlay */
.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header-box {
  text-align: center;
}

.page-header-box h1 {
  display: inline-block;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: -0.02em;
  color: var(--white-color);
  text-align: center;
  margin-bottom: 10px;
  cursor: none;
}

.page-header-box ol {
  justify-content: center;
  margin: 0;
  padding: 0;
}

.page-header-box ol li.breadcrumb-item {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.page-header-box ol li.breadcrumb-item a:hover {
  color: var(--primary-color);
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
  font-size: 18px;
  color: var(--white-color);
}

/* Responsive */
@media (max-width: 767px) {
  .page-header {
    padding: 70px 0;
  }

  .page-header-box h1 {
    font-size: 42px;
  }
}

@media (max-width: 480px) {
  .page-header-box h1 {
    font-size: 32px;
  }
}

.our-approach {
  background: var(--secondary-color);
  padding: 40px 0 15px;
}

/* ===========================
   Framework Section
   =========================== */

.framework-section {
  padding: 10px 0;
}

.framework-card {
  max-width: 100%;
  margin: 0 auto;
}

/* Rectangular image */
.framework-img-wrap {
  width: 100%;
  aspect-ratio: 21 / 6;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.framework-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Short top sentence */
.framework-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 0 12px;
}

/* Explanation paragraph */
.framework-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-color);
  margin: 0;
}

/* Responsive */
@media (max-width: 576px) {
  .framework-img-wrap {
    aspect-ratio: 16 / 9;
  }
}

/* why framework */
.irrf-problem-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  aspect-ratio: 1 / 1;
}

.irrf-problem-icon {
  font-size: 22px;
  color: var(--accent-color);
}

@media (max-width: 575px) {
  .irrf-problem-card {
    aspect-ratio: unset;
    min-height: 140px;
  }
}

.irrf-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  background: var(--accent-color);
  color: var(--white-color);
  min-width: 80px;
  text-align: center;
}

/* ============================================
   SERVICE HERO — individual service pages
   ============================================ */

.service-hero {
  position: relative;
  background-image: url("../images/hero-bg.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  overflow: hidden;
}

/* Dark overlay */
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 5, 20, 0.85) 0%,
    rgba(5, 5, 20, 0.55) 60%,
    rgba(5, 5, 20, 0.3) 100%
  );
  z-index: 0;
}

/* All content above overlay */
.service-hero .container {
  position: relative;
  z-index: 1;
}

/* ---- Left Content ---- */
.service-hero-content {
  padding-right: 40px;
}

/* Breadcrumb */
.service-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  gap: 6px;
}

.service-breadcrumb-item {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.6);
}

.service-breadcrumb-item a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.service-breadcrumb-item a:hover {
  color: var(--primary-color);
}

.service-breadcrumb-item.active {
  color: var(--white-color);
}

.service-breadcrumb-item + .service-breadcrumb-item::before {
  content: "/";
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.35);
}

/* Heading */
.service-hero-title {
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white-color);
  margin-bottom: 20px;
  cursor: none;
}

/* Description */
.service-hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-bottom: 36px;
}

/* Buttons row */
.service-hero-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Outline white button variant */
.btn-outline-white {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
  color: var(--white-color) !important;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--white-color) !important;
}

/* ---- Right: Circle Image ---- */
.service-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
}

.service-hero-circle {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
}

/* Inner circle — the actual image */
.service-hero-circle-inner {
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}

.service-hero-circle-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Decorative rings */
.service-hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.service-hero-ring-1 {
  inset: 16px;
  animation: ringPulse 4s ease-in-out infinite;
}

.service-hero-ring-2 {
  inset: 0;
  border-color: rgba(255, 255, 255, 0.07);
  animation: ringPulse 4s ease-in-out infinite 1s;
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.5;
  }
}

/* ============================================
   READ MORE BUTTON
   ============================================ */

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  transition:
    gap 0.2s,
    color 0.2s;
  text-decoration: none;
}

.btn-read-more i {
  font-size: 12px;
  transition: transform 0.2s;
}

.btn-read-more:hover {
  color: var(--accent-color);
}

.btn-read-more:hover i {
  transform: translateX(4px);
}

/* On hover card — button turns white */
.mission-vission-item:hover .btn-read-more {
  color: rgba(255, 255, 255, 0.85);
}

.mission-vission-item:hover .btn-read-more:hover {
  color: var(--white-color);
}

/* ============================================
   CAPABILITY MODAL
   ============================================ */

.cap-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 20, 0.7);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.cap-modal-overlay.open {
  display: flex;
}

.cap-modal {
  position: relative;
  background: var(--white-color);
  border-radius: 20px;
  padding: 48px 44px;
  max-width: 580px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Close button */
.cap-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--secondary-color);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--heading-color);
  transition:
    background 0.2s,
    color 0.2s;
}

.cap-modal-close:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* Icon */
.cap-modal-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.cap-modal-icon i {
  font-size: 26px;
  color: var(--white-color);
}

/* Title */
.cap-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Body */
.cap-modal-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--body-color);
  margin-bottom: 32px;
}

/* Footer */
.cap-modal-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 576px) {
  .cap-modal {
    padding: 36px 24px;
  }

  .cap-modal-title {
    font-size: 20px;
  }

  .cap-modal-body {
    font-size: 14px;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
  .service-hero {
    padding: 70px 0;
  }

  .service-hero-content {
    padding-right: 0;
    margin-bottom: 50px;
    text-align: center;
  }

  .service-breadcrumb {
    justify-content: center;
  }

  .service-hero-desc {
    margin: 0 auto 36px;
  }

  .service-hero-btns {
    justify-content: center;
  }

  .service-hero-image {
    padding-left: 0;
    justify-content: center;
  }

  .service-hero-circle {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 576px) {
  .service-hero {
    padding: 60px 0;
  }

  .service-hero-circle {
    width: 260px;
    height: 260px;
  }

  .service-hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .service-hero-btns .btn-default {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   MISSION VISION / PRINCIPLES CARDS
   ============================================ */

.mission-vission-item {
  position: relative;
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

/* ---- Hover fill background ---- */
.mission-vission-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  background: var(--accent-color);
  z-index: 0;
  transition: height 0.4s ease-in-out;
}

.mission-vission-item:hover::before {
  height: 100%;
}

/* ---- Header ---- */
.mission-vission-header {
  position: relative;
  padding: 36px 36px 0 36px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 1;
}

/* ---- Icon box ---- */
.mission-vission-item .icon-box {
  position: relative;
  width: 54px;
  height: 54px;
  background: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  z-index: 1;
}

.mission-vission-item .icon-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  background: var(--primary-color);
  z-index: 0;
  transition: height 0.4s ease-in-out;
}

.mission-vission-item:hover .icon-box::before {
  height: 100%;
}

.mission-vission-item .icon-box i,
.mission-vission-item .icon-box img {
  position: relative;
  font-size: 22px;
  max-width: 28px;
  color: var(--white-color);
  z-index: 1;
}

/* ---- Outline number ---- */
.mv-number {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--divider-color);
  transition: -webkit-text-stroke-color 0.4s ease-in-out;
  user-select: none;
}

.mission-vission-item:hover .mv-number {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
}

/* ---- Content ---- */
.mission-vission-content {
  position: relative;
  padding: 24px 36px 36px 36px;
  z-index: 1;
}

.mission-vission-content h3 {
  font-size: 19px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 12px;
  line-height: 1.35;
  transition: color 0.4s ease-in-out;
}

.mission-vission-content p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  transition: color 0.4s ease-in-out;
}

/* Hover text turns white */
.mission-vission-item:hover .mission-vission-content h3,
.mission-vission-item:hover .mission-vission-content p {
  color: var(--white-color);
}

/* ---- Bottom image (if used) ---- */
.mission-vission-image {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mission-vission-image img {
  width: 100%;
  aspect-ratio: 1 / 0.59;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease-in-out;
}

.mission-vission-item:hover .mission-vission-image img {
  transform: scale(1.1);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
  .mission-vission-header {
    padding: 28px 28px 0 28px;
  }

  .mission-vission-content {
    padding: 20px 28px 28px 28px;
  }
}

@media (max-width: 767px) {
  .mission-vission-content h3 {
    font-size: 17px;
  }

  .mv-number {
    font-size: 44px;
  }
}

.our-benefit {
  padding: 100px 0;
}

.our-benefit-content {
  margin-right: 30px;
}

.our-benefit-img {
  margin-top: 30px;
}

.our-benefit-img figure {
  display: block;
  border-radius: 20px;
}

.our-benefit-img img {
  width: 100%;
  aspect-ratio: 1 / 0.543;
  object-fit: cover;
  border-radius: 20px;
}

.our-benefit-box {
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 40px;
}

.our-benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.our-benefit-item {
  position: relative;
  width: calc(50% - 15px);
  background: var(--white-color);
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
}

.our-benefit-item:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent-color);
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover::after {
  top: auto;
  bottom: 0;
  height: 100%;
}

.our-benefit-item .icon-box {
  margin-bottom: 40px;
}

.our-benefit-item .icon-box img,
.our-benefit-item .icon-box i {
  position: relative;
  z-index: 1;
  max-width: 40px;
  transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.our-benefit-item:hover .icon-box i {
  filter: brightness(0) invert(1);
}

.benefit-item-content {
  position: relative;
  z-index: 1;
}

.benefit-item-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}

.benefit-item-content p {
  margin: 0;
  transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover .benefit-item-content h3,
.our-benefit-item:hover .benefit-item-content p {
  color: var(--white-color);
}

.our-benefit-get-quote {
  text-align: center;
}

.our-benefit-get-quote p {
  margin-bottom: 0;
}

.our-benefit-get-quote p a {
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

.our-benefit-get-quote p a:hover {
  color: var(--primary-color);
}

.our-partners {
  padding: 100px 0;
  background-image: url("../images/our-partners-bg.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.our-partners-content {
  margin-right: 80px;
}

.our-partners-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  text-align: center;
}

.our-partner-item {
  width: auto;
  display: inline-flex;
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
}

.our-partner-item:first-child {
  margin-left: 1px;
}

.our-partner-item img {
  width: 100%;
  max-height: 35px;
}

.our-team {
  padding: 100px 0 70px;
}

.team-member-item {
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.team-image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
}

.team-image a {
  display: block;
  cursor: none;
}

.team-image img {
  width: 100%;
  aspect-ratio: 1 / 1.083;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img {
  transform: scale(1.1);
}

.team-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px 10px;
}

.team-content h3 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.team-content h3 a {
  color: inherit;
}

.team-content p {
  text-transform: capitalize;
  margin: 0;
}

.team-social-icon ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

.team-social-icon ul li {
  display: inline-block;
  margin-right: 15px;
}

.team-social-icon ul li:last-child {
  margin-right: 0;
}

.team-social-icon ul li a i {
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover i {
  color: var(--primary-color);
}

/************************************/
/***    18. Services Page Css     ***/
/************************************/

.page-services {
  padding: 100px 0;
}

.page-services .service-item {
  width: 100%;
  box-shadow: 0px 0px 50px 2px #04030308;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.page-services .service-item:before {
  background: var(--dark-color);
}

.page-services .service-item .icon-box {
  margin-right: 0;
  margin-bottom: 40px;
}

.page-services .service-item-content {
  width: 100%;
}

.page-services .service-footer {
  text-align: center;
  margin-top: 10px;
}

/************************************/
/***    19. Service Single Css    ***/
/************************************/

.page-service-single {
  padding: 100px 0;
}

.service-sidebar {
  position: sticky;
  top: 30px;
  margin-right: 20px;
}

.service-catagery-list {
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 60px;
}

.service-catagery-list h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--accent-color);
  margin-bottom: 30px;
}

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

.service-catagery-list ul li {
  margin-bottom: 20px;
}

.service-catagery-list ul li:last-child {
  margin-bottom: 0;
}

.service-catagery-list ul li a {
  position: relative;
  display: block;
  color: var(--text-color);
  background-color: var(--white-color);
  border-radius: 10px;
  text-transform: capitalize;
  padding: 16px 50px 16px 20px;
  transition: all 0.4s ease-in-out;
}

.service-catagery-list ul li:hover a {
  color: var(--white-color);
  background-color: var(--dark-color);
}

.service-catagery-list ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background-image: url("../images/arrow-text.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  transition: all 0.4s ease-in-out;
}

.service-catagery-list ul li:hover a::after {
  filter: brightness(0) invert(1);
}

.sidebar-cta-box {
  position: relative;
  background: url("../images/cta-box-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  padding: 40px;
}

.sidebar-cta-box:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--primary-color);
  opacity: 60%;
  border-radius: 20px;
  z-index: 0;
}

.cta-box-content {
  margin-bottom: 40px;
}

.cta-box-content,
.cta-contact-info {
  position: relative;
  z-index: 1;
}

.cta-box-content img {
  max-width: 160px;
  margin-bottom: 20px;
}

.cta-box-content h3 {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.cta-contact-info {
  position: relative;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 0px 10px 0px #04030380;
}

.cta-contact-info:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--white-color);
  opacity: 20%;
  border-radius: 10px;
  z-index: 0;
}

.cta-info-item {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dark-divider-color);
  z-index: 1;
}

.cta-info-item:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: none;
}

.cta-info-item p {
  color: var(--white-color);
  opacity: 80%;
  margin-bottom: 5px;
}

.cta-info-item h3 {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
}

.service-featured-image {
  margin-bottom: 40px;
}

.service-featured-image figure {
  display: block;
  border-radius: 20px;
}

.service-featured-image img {
  width: 100%;
  aspect-ratio: 1 / 0.55;
  object-fit: cover;
  border-radius: 20px;
}

.service-entry {
  margin-bottom: 40px;
}

.service-entry h2 {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.service-entry p {
  margin-bottom: 20px;
}

.service-entry p:last-child {
  margin-bottom: 0;
}

.service-entry-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
}

.service-entry-list ul li {
  width: calc(33.33% - 13.33px);
  position: relative;
  text-transform: capitalize;
  padding-left: 30px;
}

.service-entry-list ul li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 20px;
  color: var(--accent-color);
  display: inline-block;
  line-height: normal;
  position: absolute;
  top: 3px;
  left: 0;
}

.service-list-video {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin: 40px 0;
}

.service-list-video .service-entry-list {
  width: calc(52% - 15px);
}

.service-list-video .service-entry-list ul li {
  width: 100%;
}

.service-image-video {
  position: relative;
  width: calc(48% - 15px);
}

.service-image-video .video-image a {
  display: block;
  cursor: none;
}

.service-image-video .video-image figure {
  display: block;
  border-radius: 20px;
}

.service-image-video .video-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 40%;
}

.service-image-video .video-image img {
  width: 100%;
  aspect-ratio: 1 / 0.647;
  object-fit: cover;
  border-radius: 20px;
}

.service-image-video .video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.service-image-video .video-play-button a {
  border: none;
  background-color: var(--accent-color);
  width: 50px;
  height: 50px;
  margin: 0;
}

.service-image-video .video-play-button a:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 160%;
  height: 160%;
  border: 50px solid var(--white-color);
  border-radius: 50%;
  transform: scale(0.6);
  z-index: -1;
  animation: border-zooming 1.2s infinite linear;
}

.service-image-video .video-play-button a:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 160%;
  height: 160%;
  border: 50px solid var(--white-color);
  border-radius: 50%;
  transform: scale(0.6);
  z-index: -1;
  animation: border-zooming 1.2s infinite linear;
  animation-delay: 0.3s;
}

@keyframes border-zooming {
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.service-image-video .video-play-button a i {
  font-size: 20px;
  color: var(--white-color);
}

.service-guidance,
.services-steps {
  margin-bottom: 40px;
}

.service-guidance-box {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.service-guidance-item {
  width: calc(33.33% - 20px);
}

.service-guidance-content {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.service-guidance-content .icon-box {
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  overflow: hidden;
}

.service-guidance-content .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  border-radius: 5px;
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.service-guidance-item:hover .service-guidance-content .icon-box::before {
  top: auto;
  height: 100%;
}

.service-guidance-content .icon-box img,
.service-guidance-content .icon-box i {
  position: relative;
  max-width: 24px;
  z-index: 1;
}

.service-guidance-title {
  width: calc(100% - 60px);
}

.service-guidance-title h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.service-guidance-img figure {
  display: block;
  border-radius: 20px;
}

.service-guidance-img img {
  width: 100%;
  aspect-ratio: 1 / 0.89;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}

.service-guidance-item:hover .service-guidance-img img {
  transform: scale(1.1);
}

.service-steps-box {
  background-color: var(--dark-color);
  border-radius: 20px;
  padding: 60px;
  margin-top: 40px;
}

.service-step-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.service-step-item {
  width: calc(33.33% - 20px);
}

.service-step-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--dark-divider-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  overflow: hidden;
}

.service-step-item .icon-box:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  border-radius: 5px;
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.service-step-item:hover .icon-box:before {
  top: auto;
  height: 100%;
}

.service-step-item .icon-box img,
.service-step-item .icon-box i {
  position: relative;
  max-width: 30px;
  z-index: 1;
}

.service-step-item-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 15px;
}

.service-step-item-content p {
  color: var(--white-color);
  opacity: 80%;
  margin-bottom: 30px;
}

.service-steps-box .service-entry-list ul li,
.service-steps-box .service-entry-list ul li:before {
  color: var(--white-color);
}

/************************************/
/***     20. Blog Archive Css     ***/
/************************************/

.page-blog {
  padding: 100px 0;
}

.featured-blog {
  padding: 60px 0 !important;
  background-color: var(--secondary-color);
}

.page-blog .post-item {
  gap: 20px;
}

.page-blog .post-featured-image,
.page-blog .post-item-body {
  width: 100%;
}

.page-blog .post-featured-image img {
  aspect-ratio: 1 / 0.75;
}

.page-blog .post-item-meta {
  margin-bottom: 15px;
}

.page-pagination {
  margin-top: 20px;
  text-align: center;
}

.page-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 600;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
  background: var(--accent-color);
  color: var(--white-color);
}

/************************************/
/***     21. Blog Single Css      ***/
/************************************/

.page-single-post {
  background-color: var(--white-color);
  padding: 100px 0;
}

.post-image {
  position: relative;
  margin-bottom: 30px;
}

.post-image figure {
  display: block;
  overflow: hidden;
}

.post-image figure,
.post-image img {
  aspect-ratio: 1 / 0.5;
  object-fit: cover;
  border-radius: 20px;
}

.post-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.post-entry {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.post-entry:after {
  content: "";
  display: block;
  clear: both;
}

.post-entry a {
  color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  font-weight: 700;
  line-height: 1.2em;
  margin: 0 0 0.6em;
}

.post-entry h1 {
  font-size: 70px;
}

.post-entry h2 {
  font-size: 46px;
}

.post-entry h3 {
  font-size: 40px;
}

.post-entry h4 {
  font-size: 30px;
}

.post-entry h5 {
  font-size: 24px;
}

.post-entry h6 {
  font-size: 18px;
}

.post-entry p {
  margin-bottom: 20px;
}

.post-entry p:last-child {
  margin-bottom: 0;
}

.post-entry p strong {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
}

.post-entry ol {
  margin: 0 0 30px;
}

.post-entry ol li {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
}

.post-entry ul {
  padding: 0;
  margin: 20px 0 20px;
  padding-left: 20px;
}

.post-entry ul li {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-color);
  position: relative;
  margin-bottom: 15px;
}

.post-entry ul li:last-child {
  margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
  margin-top: 20px;
  margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
  margin-bottom: 0;
}

.post-entry blockquote {
  background: url("../images/icon-blockquote.svg"), var(--dark-color);
  background-repeat: no-repeat;
  background-position: 35px 30px;
  background-size: 58px;
  border-radius: 20px;
  padding: 30px 30px 30px 100px;
  margin-bottom: 30px;
}

.post-entry blockquote p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
  color: var(--white-color);
}

.post-entry blockquote p:last-child {
  margin-bottom: 0;
}

.post-tag-links{
  margin-top: 30px;
}

.tag-links {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.post-tags .tag-links a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 5px;
  padding: 6px 20px;
  transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
  background: var(--primary-color);
}

.post-social-sharing {
  text-align: right;
}

.post-social-sharing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-social-sharing ul li {
  display: inline-block;
  margin-right: 10px;
}

.post-social-sharing ul li:last-child {
  margin-right: 0;
}

.post-social-sharing ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 5px;
  width: 38px;
  height: 38px;
  transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
  background: var(--primary-color);
}

.post-social-sharing ul li a i {
  font-size: 18px;
  color: inherit;
}

/************************************/
/***      22. Team Page Css       ***/
/************************************/

.page-team {
  padding: 100px 0 70px;
}

/************************************/
/***      23. Team Single Css     ***/
/************************************/

.page-team-single {
  padding: 100px 0;
}

.team-single-sidebar {
  position: sticky;
  top: 30px;
  margin-right: 20px;
}

.team-single-img {
  margin-bottom: 60px;
}

.team-single-img figure {
  display: block;
  border-radius: 20px;
}

.team-single-img img {
  width: 100%;
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
  border-radius: 20px;
}

.team-contact-form {
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 40px;
}

.contact-form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--text-color);
  background: var(--white-color);
  border: none;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: none;
}

.contact-form .form-control::placeholder {
  color: var(--text-color);
}

.team-single-content h3 {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 5px;
}

.team-single-content h2 {
  display: inline-block;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  cursor: none;
}

.team-single-content p {
  margin-bottom: 20px;
}

.team-single-content p:last-child {
  margin-bottom: 0;
}

.team-member-content,
.team-personal-info,
.team-expertise {
  margin-bottom: 40px;
}

.team-member-header {
  margin-bottom: 40px;
}

.team-member-body {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.team-contact-box {
  position: relative;
  width: calc(50% - 15px);
  background: var(--secondary-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 20px;
  overflow: hidden;
}

.team-contact-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--accent-color);
  border-radius: 5px;
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.team-contact-box:hover::before {
  top: auto;
  height: 100%;
}

.team-contact-box .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  overflow: hidden;
}

.team-contact-box .icon-box:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  border-radius: 5px;
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.team-contact-box:hover .icon-box:before {
  top: auto;
  height: 100%;
}

.team-contact-box .icon-box img,
.team-contact-box .icon-box i {
  position: relative;
  max-width: 30px;
  z-index: 1;
}

.team-contact-content {
  position: relative;
  width: calc(100% - 65px);
  z-index: 1;
}

.team-contact-content p {
  margin-bottom: 5px;
  transition: all 0.4s ease-in-out;
}

.team-contact-box:hover .team-contact-content p {
  color: var(--white-color);
  opacity: 80%;
}

.team-contact-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}

.team-contact-box:hover .team-contact-content h3 {
  color: var(--white-color);
}

.team-member-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.team-member-footer span {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--primary-color);
}

.team-member-footer ul {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-member-footer ul li {
  display: inline-block;
  border-radius: 50%;
  margin-right: 15px;
}

.team-member-footer ul li:last-child {
  margin: 0;
}

.team-member-footer ul li a {
  color: var(--accent-color);
}

.team-member-footer ul li:hover a {
  color: var(--primary-color);
}

.team-member-footer ul li a i {
  color: inherit;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}

.team-expertise ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.team-expertise ul li {
  width: calc(50% - 10px);
  position: relative;
  text-transform: capitalize;
  padding-left: 30px;
}

.team-expertise ul li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 20px;
  color: var(--accent-color);
  display: inline-block;
  line-height: normal;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.skills-progress-bar {
  margin-bottom: 20px;
}

.skills-progress-bar:last-child {
  margin-bottom: 0;
}

.skills-progress-bar .skill-data {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.skills-progress-bar .skill-data .skill-title {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--text-color);
}

.skills-progress-bar .skill-data .skill-no {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress {
  position: relative;
  width: 100%;
  height: 14px;
  background: var(--secondary-color);
  border-radius: 100px;
  overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--accent-color);
  border-radius: 100px;
}

/************************************/
/***     24. Pricing Page Css     ***/
/************************************/

.page-pricing {
  padding: 100px 0;
}

/************************************/
/***     25. Client Page Css      ***/
/************************************/

.page-client {
  padding: 100px 0 70px;
}

.company-logo {
  background-color: var(--secondary-color);
  border-radius: 30px;
  text-align: center;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 70px 60px;
}

.company-logo img {
  width: 100%;
  height: 60px;
}

/************************************/
/***   26. Testimonial Page Css   ***/
/************************************/

.page-testimonial {
  padding: 100px 0 70px;
}

.client-testimonial-item {
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  box-shadow: 0px 0px 50px 2px #04030308;
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.client-testimonial-header {
  position: relative;
  padding: 30px 30px 60px;
  text-align: center;
  overflow: hidden;
}

.client-testimonial-header:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-color);
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.client-testimonial-item:hover .client-testimonial-header::before {
  top: 0;
}

.client-testimonial-quote {
  margin-bottom: 20px;
}

.client-testimonial-quote img {
  position: relative;
  max-width: 44px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}

.client-testimonial-item:hover .client-testimonial-quote img {
  filter: brightness(0) invert(1);
}

.client-testimonial-header p {
  position: relative;
  margin: 0;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.client-testimonial-item:hover .client-testimonial-header p {
  color: var(--white-color);
}

.client-testimonial-body {
  background: var(--dark-color);
  text-align: center;
  padding: 0 30px 30px 30px;
}

.client-author-image {
  position: relative;
  top: -30px;
}

.client-author-image figure,
.client-author-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto;
}

.client-author-image img {
  border: 2px solid var(--divider-color);
}

.client-author-content h3 {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.client-author-content p {
  color: var(--white-color);
  opacity: 80%;
  text-transform: capitalize;
  margin: 0;
}

/************************************/
/***     27. Image Gallery Css    ***/
/************************************/

.page-gallery {
  padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
  cursor: none;
}

.page-gallery-box .photo-gallery figure {
  display: block;
  border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
  aspect-ratio: 1 / 0.79;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/***     28. Video Gallery Css    ***/
/************************************/

.page-video-gallery {
  padding: 100px 0 70px;
}

.video-gallery-image {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.video-gallery-image a {
  position: relative;
  display: block;
  cursor: none;
}

.video-gallery-image a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  border-radius: 20px;
  opacity: 0%;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
  opacity: 40%;
  visibility: visible;
  transform: scale(1);
}

.video-gallery-image a::after {
  content: "\f04b";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 20px;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.video-gallery-image:hover a::after {
  opacity: 1;
  visibility: visible;
}

.video-gallery-image img {
  aspect-ratio: 1 / 0.85;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/***       29. FAQs Page Css      ***/
/************************************/

.page-faqs {
  padding: 100px 0;
}

.faq-sidebar {
  position: sticky;
  top: 30px;
  margin-right: 20px;
}

.faq-catagery-list {
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 60px;
}

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

.faq-catagery-list ul li {
  margin-bottom: 20px;
}

.faq-catagery-list ul li:last-child {
  margin-bottom: 0;
}

.faq-catagery-list ul li a {
  position: relative;
  display: block;
  color: var(--text-color);
  background-color: var(--white-color);
  border-radius: 15px;
  text-transform: capitalize;
  padding: 15px 50px 15px 20px;
  transition: all 0.4s ease-in-out;
}

.faq-catagery-list ul li:hover a {
  color: var(--white-color);
  background-color: var(--dark-color);
}

.faq-catagery-list ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background-image: url("../images/arrow-text.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  transition: all 0.4s ease-in-out;
}

.faq-catagery-list ul li:hover a::after {
  filter: brightness(0) invert(1);
}

.page-faq-accordion {
  margin-bottom: 40px;
}

.page-faq-accordion:last-child {
  margin-bottom: 0;
}

/************************************/
/***     30. Contact Page Css     ***/
/************************************/

.page-contact-us {
  padding: 100px 0 70px;
}

.contact-info-item {
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
}

.contact-info-img img {
  width: 100%;
  aspect-ratio: 1 / 0.61;
  object-fit: cover;
}

.contact-info-body {
  position: relative;
  padding: 0 80px 40px;
  text-align: center;
}

.contact-info-body:after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .contact-info-body:after {
  top: 0;
}

.contact-info-body .icon-box {
  position: relative;
  top: -30px;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  z-index: 1;
  overflow: hidden;
}

.contact-info-body .icon-box:after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-color);
  border-radius: 5px;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box:after {
  top: 0;
}

.contact-info-body .icon-box img,
.contact-info-body .icon-box i {
  position: relative;
  width: 100%;
  max-width: 34px;
  z-index: 1;
}

.contact-info-content {
  position: relative;
  z-index: 1;
}

.contact-info-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}

.contact-info-content p {
  margin: 0;
  transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .contact-info-content h3,
.contact-info-item:hover .contact-info-content p {
  color: var(--white-color);
}

.contact-form-section {
  background: var(--secondary-color);
  padding: 100px 0;
}

.contact-form-img {
  margin-right: 45px;
}

.contact-form-img figure {
  display: block;
  border-radius: 20px;
}

.contact-form-img img {
  width: 100%;
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
  border-radius: 20px;
}

.google-map {
  overflow: hidden;
}

.google-map .container-fluid {
  padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
  height: 600px;
  width: 100%;
}

/************************************/
/***    31 . 404 Error Page Css   ***/
/************************************/

.error-page {
  padding: 100px 0;
}

.error-page-image {
  text-align: center;
  margin-bottom: 30px;
}

.error-page-image img {
  width: 100%;
  max-width: 50%;
}

.error-page-content {
  text-align: center;
}

.error-page-content .section-title {
  margin-bottom: 20px;
}

/************************************/
/***      32. Responsive Css      ***/
/************************************/

@media only screen and (max-width: 1024px) {
  .main-menu ul li {
    margin: 0;
  }

  .our-appointment-box {
    padding: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .navbar {
    padding: 20px 0;
  }

  .main-menu ul li.highlighted-menu {
    display: block;
  }

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }

  .header-btn {
    display: none;
  }

  .btn-default {
    font-size: 16px;
    padding: 15px 60px 15px 20px;
  }

  .btn-default::after {
    height: 24px;
    width: 24px;
    transform: translate(-20px, -50%);
  }

  .btn-default.btn-highlighted {
    padding: 15px 20px;
  }

  .section-row {
    margin-bottom: 40px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h3 {
    margin-bottom: 10px;
    padding-left: 30px;
  }

  .section-title h3::before {
    width: 20px;
    height: 20px;
  }

  .section-title h1 {
    font-size: 55px;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .section-title p {
    margin-top: 15px;
  }

  .section-title-content {
    margin-top: 15px;
  }

  .section-btn {
    text-align: left;
    margin-top: 30px;
  }

  .hero {
    padding: 50px 0 0;
  }

  .hero.hero-bg-image {
    padding: 205px 0;
  }

  .hero.hero-bg-image.hero-slider-layout .hero-slide {
    padding: 205px 0;
  }

  .hero.hero-bg-image.hero-slider-layout .hero-pagination {
    bottom: 30px;
  }

  .hero-content {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .hero-content-footer {
    margin-top: 30px;
  }

  .hero-content-footer h2 {
    margin-bottom: 20px;
  }

  .hero-image {
    width: 100%;
    max-width: 60%;
    margin: 0 auto;
    text-align: center;
  }

  .company-experience {
    width: 250px;
    padding: 10px;
  }

  .company-experience h3 {
    font-size: 36px;
  }

  .about-us {
    padding: 50px 0;
  }

  .about-us-images {
    max-width: 620px;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .about-us-content {
    margin-left: 0px;
  }

  .about-goal-box {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .about-goal-box .icon-box {
    margin-bottom: 20px;
  }

  .about-info-box {
    margin-bottom: 30px;
  }

  .our-services {
    padding: 50px 0;
  }

  .our-service-content {
    margin-bottom: 30px;
  }

  .service-item {
    padding: 30px;
  }

  .service-no {
    bottom: -30px;
  }

  .service-item .icon-box {
    width: 45px;
    height: 45px;
    margin-right: 15px;
  }

  .service-item .icon-box img,
  .service-item .icon-box i {
    max-width: 26px;
  }

  .service-item-content {
    width: calc(100% - 60px);
  }

  .service-item-content h3 {
    margin-bottom: 10px;
  }

  .service-item-content p {
    margin-bottom: 20px;
  }

  .service-no h2 {
    font-size: 80px;
  }

  .service-footer {
    margin-top: 30px;
  }

  .why-choose-us {
    padding: 50px 0;
  }

  .why-choose-content {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .why-choose-box .icon-box {
    margin-bottom: 20px;
  }

  .why-choose-box-content h3 {
    margin-bottom: 10px;
  }

  .why-choose-image {
    max-width: 620px;
    margin: 0 auto;
  }

  .our-feature {
    padding: 50px 0;
  }

  .our-feature-item {
    padding: 20px;
  }

  .our-feature-item .icon-box {
    margin-bottom: 20px;
  }

  .feature-item-content h3 {
    margin-bottom: 10px;
  }

  .our-feature-footer {
    margin-top: 30px;
  }

  .fact-counter {
    padding: 50px 0;
  }

  .fact-counter-image {
    margin-bottom: 30px;
  }

  .fact-counter-img img {
    aspect-ratio: 1 / 0.7;
  }

  .fact-counter-skillbar {
    max-width: 300px;
  }

  .fact-counter-content {
    margin-left: 0;
  }

  .fact-counter-box-list {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .fact-counter-box-content h2 {
    font-size: 36px;
    margin-bottom: 5px;
  }

  .what-we-do {
    padding: 50px 0;
  }

  .what-we-do-content {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .what-we-do-list {
    margin-bottom: 30px;
  }

  .what-we-do-images {
    padding: 0 60px 80px 15px;
  }

  .what-do-we-img-1 img {
    aspect-ratio: 1 / 0.7;
  }

  .experience-counter-box {
    max-width: 245px;
    padding: 10px;
  }

  .experience-counter-no {
    margin-right: 10px;
  }

  .experience-counter-no h2 {
    font-size: 36px;
  }

  .experience-counter-content {
    width: 66%;
  }

  .how-it-work {
    padding: 50px 0;
  }

  .how-it-work-content {
    position: initial;
    margin-bottom: 30px;
  }

  .work-step-item {
    padding: 30px 30px 0 30px;
    margin-bottom: 30px;
  }

  .work-step-item-content {
    margin-bottom: 10px;
  }

  .work-step-item-no {
    margin-bottom: -30px;
  }

  .work-step-item-no h2 {
    font-size: 80px;
  }

  .our-pricing {
    padding: 50px 0;
  }

  .pricing-box {
    padding: 20px;
  }

  .pricing-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .pricing-header h3 {
    margin-bottom: 15px;
  }

  .pricing-header h2 {
    font-size: 36px;
  }

  .pricing-header sup {
    font-size: 22px;
  }

  .pricing-list-title {
    margin-bottom: 15px;
  }

  .pricing-body {
    margin-bottom: 20px;
  }

  .pricing-box.highlighted-box .pricing-header {
    padding: 0 60px 20px 0;
  }

  .highlighted-box::before {
    font-size: 12px;
    top: 22px;
    right: -65px;
    height: 26px;
  }

  .pricing-benefit-list {
    margin-top: 10px;
  }

  .our-faqs {
    padding: 50px 0;
  }

  .our-faqs-image {
    margin-bottom: 30px;
  }

  .our-faqs-img img {
    aspect-ratio: 1 / 0.8;
  }

  .faq-accordion .accordion-item {
    margin-bottom: 20px;
  }

  .faq-accordion .accordion-header .accordion-button,
  .faq-accordion .accordion-item .accordion-body {
    padding: 12px 40px 12px 15px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    right: 12px;
  }

  .our-testimonial {
    padding: 50px 0;
  }

  .testimonial-content {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .testimonial-slider {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .testimonial-slider-box {
    padding: 30px;
  }

  .testimonial-header {
    margin-bottom: 20px;
  }

  .testimonial-body {
    margin-bottom: 20px;
  }

  .testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    margin: 0 6px;
  }

  .testimonial-slider
    .testimonial-pagination
    .swiper-pagination-bullet-active:before {
    height: 20px;
    width: 20px;
  }

  .customer-rating-boxes {
    gap: 20px;
  }

  .customer-rating-box {
    width: calc(33.33% - 13.33px);
  }

  .our-blog {
    padding: 50px 0 20px;
  }

  .post-item {
    gap: 20px;
  }

  .post-featured-image,
  .post-item-body {
    width: 100%;
  }

  .post-featured-image img {
    aspect-ratio: 1 / 0.79;
  }

  .post-item-meta {
    margin-bottom: 10px;
  }

  .post-item-content {
    margin-bottom: 15px;
  }

  .readmore-btn {
    font-size: 16px;
    padding-right: 30px;
  }

  .readmore-btn::before {
    height: 20px;
    width: 20px;
  }

  footer.main-footer {
    padding: 50px 0 0 0;
  }

  .footer-newsletter-box {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .footer-newsletter-title {
    margin-bottom: 20px;
  }

  .footer-newsletter-title h3 {
    font-size: 28px;
  }

  .newsletter-form .form-group .form-control,
  .newsletter-form .form-group .newsletter-btn {
    padding: 10px;
  }

  .footer-links h3 {
    margin-bottom: 20px;
  }

  .footer-cta-box {
    margin-top: 30px;
    padding: 30px;
  }

  .footer-logo {
    width: calc(25% - 10px);
  }

  .footer-contact-box {
    width: calc(75% - 10px);
    gap: 20px 30px;
  }

  .footer-contact-item::before {
    right: -15px;
  }

  .footer-contact-item h3 {
    font-size: 18px;
  }

  .footer-copyright {
    padding: 30px 0;
  }

  .footer-menu ul li {
    margin-right: 20px;
  }

  .footer-menu ul li::before {
    right: -14px;
  }

  .page-header {
    background-size: contain;
    padding: 80px 0;
  }

  .page-header-box h1 {
    font-size: 55px;
  }

  .our-approach {
    padding: 25px 0 15px;
  }

  .mission-vission-header {
    padding: 30px;
  }

  .mission-vission-item .icon-box {
    margin-bottom: 20px;
  }

  .mission-vission-content h3 {
    margin-bottom: 10px;
  }

  .our-benefit {
    padding: 50px 0;
  }

  .our-benefit-content {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .our-benefit-img {
    margin-top: 30px;
  }

  .our-benefit-list {
    margin-bottom: 30px;
  }

  .our-benefit-box {
    padding: 30px;
  }

  .our-benefit-item .icon-box {
    margin-bottom: 30px;
  }

  .benefit-item-content h3 {
    margin-bottom: 10px;
  }

  .our-partners {
    padding: 50px 0;
  }

  .our-partners-content {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .our-partners-list {
    max-width: 620px;
    margin: 0 auto;
  }

  .our-partner-item {
    padding: 20px 25px;
  }

  .our-team {
    padding: 50px 0 20px;
  }

  .team-member-item {
    padding: 15px;
  }

  .team-image {
    margin-bottom: 20px;
  }

  .page-services {
    padding: 50px 0;
  }

  .page-services .service-item .icon-box {
    margin-bottom: 20px;
  }

  .page-service-single {
    padding: 50px 0;
  }

  .service-sidebar {
    position: initial;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .service-catagery-list {
    padding: 20px;
    margin-bottom: 30px;
  }

  .service-catagery-list h3 {
    margin-bottom: 20px;
  }

  .service-catagery-list ul li a {
    padding: 10px 45px 10px 15px;
  }

  .service-catagery-list ul li a::after {
    right: 15px;
  }

  .sidebar-cta-box {
    padding: 30px;
  }

  .cta-box-content {
    margin-bottom: 30px;
  }

  .cta-info-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .service-featured-image {
    margin-bottom: 30px;
  }

  .service-entry {
    margin-bottom: 30px;
  }

  .service-entry h2 {
    font-size: 36px;
  }

  .service-entry-list ul {
    gap: 10px;
  }

  .service-entry-list ul li:before {
    font-size: 18px;
  }

  .service-entry-list ul li {
    width: calc(33.33% - 6.67px);
    padding-left: 30px;
  }

  .service-list-video {
    gap: 20px;
    margin: 30px 0;
  }

  .service-list-video .service-entry-list {
    width: calc(54% - 10px);
  }

  .service-image-video {
    width: calc(46% - 10px);
  }

  .service-guidance,
  .services-steps {
    margin-bottom: 30px;
  }

  .service-guidance-box {
    margin-top: 30px;
    gap: 20px;
  }

  .service-guidance-item {
    width: calc(33.33% - 13.33px);
  }

  .service-guidance-content {
    margin-bottom: 20px;
  }

  .service-steps-box {
    padding: 30px;
    margin-top: 30px;
  }

  .service-step-item-list {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .service-step-item .icon-box {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }

  .service-step-item .icon-box img,
  .service-step-item .icon-box i {
    max-width: 25px;
  }

  .page-blog {
    padding: 50px 0;
  }

  .page-blog .post-item-meta {
    margin-bottom: 10px;
  }

  .page-pagination {
    margin-top: 10px;
  }

  .page-single-post {
    padding: 50px 0;
  }

  .post-image {
    margin-bottom: 20px;
  }

  .post-entry blockquote {
    background-position: 25px 25px;
    background-size: 45px;
    padding: 25px 25px 25px 85px;
    margin-bottom: 20px;
  }

  .post-entry blockquote p {
    font-size: 18px;
  }

  .post-entry {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .post-entry h2 {
    font-size: 38px;
  }

  .post-entry ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .post-tags {
    margin-bottom: 20px;
  }

  .post-social-sharing ul {
    text-align: left;
  }

  .post-tags .tag-links a {
    padding: 6px 15px;
  }

  .page-team {
    padding: 50px 0 20px;
  }

  .page-team-single {
    padding: 50px 0;
  }

  .team-single-sidebar {
    position: initial;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .team-single-img {
    margin-bottom: 30px;
  }

  .team-single-img img {
    aspect-ratio: 1 / 0.65;
    object-position: top center;
  }

  .team-contact-form {
    padding: 30px;
  }

  .contact-form .form-control {
    padding: 14px 16px;
  }

  .team-single-content h2 {
    font-size: 36px;
  }

  .team-member-content,
  .team-personal-info,
  .team-expertise {
    margin-bottom: 30px;
  }

  .team-member-header {
    margin-bottom: 30px;
  }

  .page-pricing {
    padding: 50px 0;
  }

  .page-client {
    padding: 50px 0 20px;
  }

  .company-logo {
    border-radius: 20px;
    padding: 20px 30px;
  }

  .company-logo img {
    width: 100%;
    height: 60px;
  }

  .page-testimonial {
    padding: 50px 0 20px;
  }

  .client-testimonial-header {
    padding: 20px 20px 50px;
  }

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

  .page-gallery {
    padding: 50px 0 20px;
  }

  .page-video-gallery {
    padding: 50px 0 20px;
  }

  .page-faqs {
    padding: 50px 0;
  }

  .faq-sidebar {
    position: initial;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .faq-catagery-list {
    margin-bottom: 30px;
  }

  .faq-catagery-list ul li a {
    padding: 10px 50px 10px 20px;
  }

  .page-faq-accordion {
    margin-bottom: 30px;
  }

  .page-contact-us {
    padding: 50px 0 20px;
  }

  .contact-info-body {
    padding: 0 60px 30px;
  }

  .contact-info-body .icon-box {
    top: -25px;
    width: 50px;
    height: 50px;
  }

  .contact-info-body .icon-box img,
  .contact-info-body .icon-box i {
    max-width: 28px;
  }

  .contact-form-section {
    padding: 50px 0;
  }

  .contact-form-img {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .contact-form-img img {
    aspect-ratio: 1 / 0.8;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 450px;
  }

  .error-page {
    padding: 50px 0;
  }

  .error-page-image {
    margin-bottom: 20px;
  }

  .error-page-image img {
    max-width: 80%;
  }
}

@media only screen and (max-width: 767px) {
  .section-row {
    margin-bottom: 30px;
  }

  .section-title h3 {
    font-size: 14px;
    padding-left: 25px;
  }

  .section-title h3:before {
    height: 18px;
    width: 18px;
  }

  .section-title h1 {
    font-size: 36px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .hero-btn {
    margin-right: 20px;
  }

  .video-play-button a {
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }

  .video-play-button img {
    max-width: 14px;
  }

  .video-play-button p {
    font-size: 16px;
  }

  .hero-content-footer h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .hero-image {
    max-width: 100%;
    padding-left: 50px;
  }

  .company-experience {
    width: 230px;
    bottom: 10%;
  }

  .company-experience h3 {
    width: 25%;
    font-size: 26px;
  }

  .company-experience p {
    width: 75%;
  }

  .about-us-images {
    padding: 0 130px 100px 0;
  }

  .about-img-1:before {
    transform: translate(-50%, 40px);
    width: 80px;
    height: 25px;
  }

  .about-img-2 {
    width: 180px;
  }

  .contact-circle {
    top: 10px;
    right: 20px;
  }

  .contact-circle img {
    max-width: 90px;
  }

  .about-content-info {
    margin-bottom: 30px;
  }

  .about-goal-box-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .about-contact-content p {
    font-size: 18px;
  }

  .about-author-box {
    padding: 20px;
  }

  .about-author-content h3 {
    font-size: 18px;
    margin-bottom: 0;
  }

  .about-info-box {
    margin-bottom: 20px;
  }

  .about-info-list ul li {
    padding-left: 25px;
  }

  .about-info-list ul li:before {
    font-size: 18px;
  }

  .service-item {
    width: 100%;
    padding: 20px;
    border-right: none;
    border-left: none;
  }

  .service-item-content h3 {
    font-size: 18px;
  }

  .service-no {
    bottom: -25px;
  }

  .service-no h2 {
    font-size: 60px;
  }

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

  .service-footer p {
    font-size: 12px;
  }

  .why-choose-box {
    width: 100%;
  }

  .why-choose-box-content h3 {
    font-size: 18px;
  }

  .why-choose-list ul {
    gap: 10px;
  }

  .why-choose-list ul li {
    width: 100%;
    padding-left: 25px;
  }

  .why-choose-list ul li:before {
    font-size: 18px;
  }

  .why-choose-image {
    max-width: 100%;
    padding: 0 0 100px 125px;
  }

  .why-choose-img-2 {
    max-width: 220px;
  }

  .why-choose-contact-circle {
    right: 10px;
  }

  .why-choose-contact-circle img {
    max-width: 90px;
  }

  .our-feature-item {
    width: 100%;
  }

  .feature-item-content h3 {
    font-size: 18px;
  }

  .fact-counter-image {
    padding: 0 25px 30px 0;
  }

  .fact-counter-img img {
    aspect-ratio: 1 / 0.9;
  }

  .fact-counter-skillbar {
    max-width: 250px;
  }

  .fact-counter-box-list {
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .fact-counter-box {
    width: calc(33.33% - 13.33px);
  }

  .fact-counter-box .icon-box {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }

  .fact-counter-box .icon-box img,
  .fact-counter-box .icon-box i {
    max-width: 25px;
  }

  .fact-counter-box-content h2 {
    font-size: 26px;
    margin-bottom: 5px;
  }

  .fact-counter-list ul {
    gap: 10px;
  }

  .fact-counter-list ul li {
    width: 100%;
    padding-left: 25px;
  }

  .fact-counter-list ul li:before {
    font-size: 18px;
  }

  .what-we-do-list ul li {
    width: 100%;
    padding-left: 25px;
  }

  .what-we-do-list ul li:before {
    font-size: 18px;
  }

  .what-we-do-images {
    padding: 40px 25px 40px 15px;
  }

  .what-do-we-img-1 img {
    aspect-ratio: 1 / 0.75;
  }

  .what-do-we-img-2 {
    max-width: 200px;
  }

  .what-do-we-img-2 img {
    border-width: 5px;
    aspect-ratio: 1 / 0.68;
  }

  .experience-counter-box {
    top: 0;
    bottom: auto;
    max-width: 210px;
    padding: 5px;
  }

  .experience-counter-no h2 {
    font-size: 26px;
  }

  .experience-counter-content {
    width: 68%;
  }

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

  .work-step-item {
    padding: 20px 20px 0 20px;
    margin-bottom: 20px;
  }

  .work-step-item-content h2 {
    font-size: 18px;
  }

  .work-step-item-no {
    margin-bottom: -25px;
  }

  .work-step-item-no h2 {
    font-size: 60px;
  }

  .pricing-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .pricing-header h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .pricing-header h2 {
    font-size: 26px;
  }

  .pricing-header sup {
    font-size: 18px;
    top: -3px;
  }

  .pricing-header sub {
    font-size: 14px;
  }

  .pricing-list-title h3 {
    font-size: 18px;
  }

  .pricing-list ul li {
    padding-left: 25px;
  }

  .pricing-list ul li:before {
    font-size: 18px;
  }

  .pricing-benefit-list ul {
    gap: 10px;
  }

  .pricing-benefit-list ul li {
    width: calc(50% - 7.5px);
    font-size: 12px;
    line-height: normal;
  }

  .pricing-benefit-list ul li img {
    max-width: 16px;
    margin-right: 5px;
  }

  .our-faqs-image {
    padding-right: 30px;
  }

  .our-faqs-img img {
    aspect-ratio: 1 / 0.98;
  }

  .client-review-box {
    bottom: 20px;
    max-width: 180px;
    padding: 10px;
  }

  .client-review-box-content {
    margin-bottom: 10px;
  }

  .client-review-box-content p {
    font-size: 16px;
  }

  .faq-accordion .accordion-header .accordion-button {
    font-size: 18px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    font-size: 18px;
    width: 18px;
    height: 18px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 12px 15px;
  }

  .testimonial-slider-box {
    padding: 20px;
  }

  .testimonial-header,
  .testimonial-body {
    margin-bottom: 20px;
  }

  .customer-logo img {
    max-width: 150px;
  }

  .testimonial-quotes img {
    max-width: 30px;
  }

  .testimonial-author .author-image {
    margin-right: 10px;
  }

  .testimonial-author .author-content {
    width: calc(100% - 50px);
  }

  .testimonial-author .author-content h3 {
    font-size: 16px;
    padding-right: 15px;
  }

  .testimonial-author .author-content h3::before {
    right: 5px;
    font-size: 16px;
  }

  .customer-rating-box {
    justify-content: left;
    width: 100%;
  }

  .customer-rating-counter h3 {
    font-size: 18px;
    margin-right: 5px;
  }

  .customer-rating-counter p span {
    font-size: 18px;
  }

  .post-item-content h2 {
    font-size: 18px;
  }

  .footer-newsletter-title h3 {
    font-size: 22px;
  }

  .newsletter-form .form-group .newsletter-btn img {
    max-width: 22px;
  }

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

  .footer-links h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-links ul li {
    margin-bottom: 5px;
  }

  .footer-cta-box {
    margin-top: 0;
    padding: 20px;
  }

  .footer-logo,
  .footer-contact-box {
    width: 100%;
  }

  .footer-logo img {
    max-width: 150px;
  }

  .footer-contact-box {
    justify-content: left;
    gap: 20px;
  }

  .footer-contact-item {
    width: calc(50% - 10px);
  }

  .footer-contact-item::before {
    right: -10px;
  }

  .footer-contact-item:nth-of-type(2n + 2)::before {
    display: none;
  }

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

  .footer-contact-item h3 {
    font-size: 16px;
  }

  .footer-copyright {
    padding: 15px 0;
  }

  .footer-copyright-text {
    margin-bottom: 5px;
    text-align: center;
  }

  .footer-menu ul {
    text-align: center;
  }

  .page-header {
    padding: 60px 0;
  }

  .page-header-box h1 {
    font-size: 40px;
  }

  .mission-vission-header {
    padding: 20px;
  }

  .mission-vission-content h3 {
    font-size: 18px;
  }

  .our-benefit-box {
    padding: 20px;
  }

  .our-benefit-item {
    width: 100%;
  }

  .our-benefit-item .icon-box {
    margin-bottom: 20px;
  }

  .benefit-item-content h3 {
    font-size: 18px;
  }

  .our-partners-list {
    width: 100%;
    gap: 15px;
  }

  .our-partner-item {
    padding: 10px;
  }

  .our-partner-item img {
    max-height: 20px;
  }

  .team-content h3 {
    font-size: 18px;
  }

  .team-social-icon ul li {
    margin-right: 10px;
  }

  .team-social-icon ul li i {
    font-size: 18px;
  }

  .service-catagery-list h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .service-catagery-list ul li {
    margin-bottom: 15px;
  }

  .sidebar-cta-box {
    padding: 20px;
  }

  .cta-box-content {
    margin-bottom: 20px;
  }

  .cta-box-content img {
    margin-bottom: 15px;
  }

  .cta-box-content h3 {
    font-size: 18px;
  }

  .cta-info-item h3 {
    font-size: 18px;
  }

  .service-featured-image {
    margin-bottom: 20px;
  }

  .service-featured-image img {
    aspect-ratio: 1 / 0.7;
  }

  .service-entry p {
    margin-bottom: 15px;
  }

  .service-entry h2 {
    font-size: 26px;
  }

  .service-entry-list ul {
    gap: 5px;
  }

  .service-entry-list ul li {
    padding-left: 25px;
    width: 100%;
  }

  .service-entry-list ul li:before {
    font-size: 16px;
    top: 6px;
  }

  .service-list-video .service-entry-list,
  .service-image-video {
    width: 100%;
  }

  .service-list-video {
    margin: 20px 0;
  }

  .service-guidance-item {
    width: 100%;
  }

  .service-guidance-img img {
    aspect-ratio: 1 / 0.6;
  }

  .service-guidance-content {
    margin-bottom: 15px;
  }

  .service-guidance-title h3 {
    font-size: 18px;
  }

  .service-steps-box {
    padding: 20px;
  }

  .service-step-item-list {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .service-step-item {
    width: 100%;
  }

  .service-step-item-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .post-image figure,
  .post-image img {
    aspect-ratio: 1 / 0.7;
  }

  .post-entry blockquote {
    background-position: 15px 15px;
    padding: 60px 15px 15px 15px;
  }

  .post-entry blockquote p {
    font-size: 16px;
  }

  .post-entry h2 {
    font-size: 26px;
  }

  .team-single-img img {
    aspect-ratio: 1 / 1.01;
    object-position: center center;
  }

  .team-contact-form {
    padding: 20px;
  }

  .team-single-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .team-single-content p {
    margin-bottom: 15px;
  }

  .team-member-body {
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .team-contact-box {
    width: 100%;
    padding: 10px 15px;
  }

  .team-contact-box .icon-box {
    width: 40px;
    height: 40px;
  }

  .team-contact-box .icon-box img,
  .team-contact-box .icon-box i {
    max-width: 25px;
  }

  .team-contact-content {
    position: relative;
    width: calc(100% - 55px);
    z-index: 1;
  }

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

  .team-contact-content h3 {
    font-size: 18px;
  }

  .team-member-footer span,
  .team-member-footer ul li a i {
    font-size: 18px;
  }

  .team-member-footer ul li {
    margin-right: 10px;
  }

  .team-expertise ul {
    gap: 10px;
  }

  .team-expertise ul li {
    width: 100%;
    padding-left: 25px;
  }

  .team-expertise ul li:before {
    font-size: 18px;
  }

  .skills-progress-bar {
    margin-bottom: 15px;
  }

  .company-logo {
    border-radius: 15px;
    padding: 15px 20px;
  }

  .company-logo img {
    height: 30px;
  }

  .client-testimonial-header {
    padding: 20px 15px 50px;
  }

  .client-testimonial-quote {
    margin-bottom: 15px;
  }

  .client-testimonial-quote img {
    max-width: 36px;
  }

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

  .client-author-content h3 {
    font-size: 18px;
  }

  .faq-catagery-list {
    padding: 20px;
  }

  .contact-info-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 350px;
  }
}

/* ============================================
   CAREERS PAGE STYLES
   ============================================ */

/* Hero subtitle */
.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 16px;
  max-width: 600px;
}

/* Why Join Section */
.why-join-section {
  padding: 100px 0;
  background: var(--secondary-color);
}

.benefit-card {
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 16px;
  padding: 32px 24px;
  margin-bottom: 24px;
  text-align: center;
  transition: all 0.4s ease-in-out;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon i {
  font-size: 26px;
  color: var(--white-color);
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-color);
  margin: 0;
}

/* Career Paths Section */
.career-paths-section {
  padding: 100px 0;
  background: var(--white-color);
}

.career-path-card {
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.4s ease-in-out;
}

.career-path-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.path-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.path-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.path-icon i {
  font-size: 22px;
  color: var(--white-color);
}

.path-title h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.path-type {
  font-size: 13px;
  color: var(--text-color);
}

.path-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 16px;
}

.path-skills {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.path-skills li {
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-color);
}

/* Application Process Section */
.application-process-section {
  padding: 100px 0;
  background: var(--dark-color);
}

.application-process-section .section-title h2,
.application-process-section .section-title p {
  color: var(--white-color);
}

.application-process-section .section-title p {
  opacity: 0.8;
}

.process-step {
  text-align: center;
  padding: 20px;
}

.step-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 16px;
  line-height: 1;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent-color) 0%, #1d2c55 100%);
}

.cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.cta-section .btn-default {
  background: var(--white-color);
  color: var(--accent-color);
}

.cta-section .btn-default:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* Responsive */
@media (max-width: 991px) {
  .why-join-section,
  .career-paths-section,
  .application-process-section {
    padding: 70px 0;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .cta-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .benefit-card {
    padding: 24px 20px;
  }
  
  .career-path-card {
    padding: 24px;
  }
  
  .path-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .step-number {
    font-size: 36px;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-content {
    text-align: center;
    margin-bottom: 24px;
  }
  
  .cta-section .col-lg-4 {
    text-align: center !important;
  }
}
