@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("animations.css");

.montserrat-regular {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #103fd5;
  --secondary-color: #071a57;
  --accent-color: #67bae4;
  --light-color: #f2f4f7;
  --bg-white: #ffffff;
  --dark-color: #555555;
  --gray-color: #7e7e7e;
  --success-color: #39b600;
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  /* Refined shadow scale */
  --shadow-sm: 0 2px 8px rgba(7, 26, 87, 0.06);
  --shadow-md: 0 8px 24px rgba(7, 26, 87, 0.1);
  --shadow-lg: 0 16px 48px rgba(7, 26, 87, 0.14);
  --shadow-xl: 0 24px 64px rgba(7, 26, 87, 0.18);
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: -0.01em;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.65;
  color: var(--dark-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

/* Body transition */
body {
  transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #ffffff;
}

body.color-value-pro {
  background-color: #071a57;
}

body.color-intro {
  background-color: #ffffff;
}

/* =============================================
   HEADER & NAVIGATION
   (structure unchanged, visual polish only)
   ============================================= */
.cs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background-color: var(--bg-white);
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
}

.cs-header.fixed-header {
  position: fixed;
  animation: slideDown 0.3s ease-out;
  border-bottom: 1px solid rgba(7, 26, 87, 0.08);
  padding: 0.7rem 5rem;
  background-color: rgba(255, 255, 255, 0.97);

}

.cs-header.fixed-header .cs-logo img {
  height: 30px;
  transition: height 0.3s ease;
}

.fixed-header .btn-login img {
  width: 45px;
}

.cs-logo img {
  transition: height 0.3s ease;
}

body.has-fixed-header {
  padding-top: var(--header-height, 80px);
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.cs-logo img {
  height: 40px;
  width: auto;
}

h1.cs-logo {
  margin: 0;
}

.cs-navbar {
  display: flex;
}

.cs-navbar ul {
  list-style: none;
  display: flex;
  gap: 4rem;
  padding: 0;
  margin: 0;
}

.cs-navbar .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-color);
  letter-spacing: 0.01em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.cs-navbar .current_page_item .nav-link,
.cs-navbar .current_page_item .nav-link:hover{
  font-weight: 600;
  color: var(--primary-color);
}

.cs-navbar .nav-link:hover {
  font-weight: 600;
  color: var(--primary-color);
}

/* Dropdown styles */
.nav-item.menu-item-has-children {
  position: relative;
}

.nav-item.menu-item-has-children .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  border: 1px solid rgba(7, 26, 87, 0.07);
}

.nav-item.menu-item-has-children:hover .dropdown-menu {
  flex-wrap: wrap;
  gap: 0px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item.menu-item-has-children .dropdown-menu li {
  width: 100%;
  list-style: none;
}

.nav-item.menu-item-has-children .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #2d3e50;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-item.menu-item-has-children .dropdown-menu a:hover {
  background: var(--primary-color);
  color: #ffffff;
  padding-left: 26px;
}

/* =============================================
   HEADER & NAVIGATION — RESPONSIVE IMPROVED
   ============================================= */
.cs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  background-color: var(--bg-white);
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
  gap: 1rem;
}

.cs-header.fixed-header {
  position: fixed;
  animation: slideDown 0.3s ease-out;
  border-bottom: 1px solid rgba(7, 26, 87, 0.08);
  padding: 0.65rem 4rem;
  background-color: rgba(255, 255, 255, 0.97);

}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

.cs-logo img {
  height: 40px;
  width: auto;
  transition: height 0.3s ease;
}

h1.cs-logo { margin: 0; }

.cs-header.fixed-header .cs-logo img { height: 30px; }
.fixed-header .btn-login img { width: 40px; }

/* Nav */
.cs-navbar { display: flex; flex: 1; justify-content: center; }

.cs-navbar ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}

.cs-navbar .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-color);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.cs-navbar .current_page_item .nav-link,
.cs-navbar .nav-link:hover {
  font-weight: 600;
  color: var(--primary-color);
}

/* Nav dropdown */
.nav-item.menu-item-has-children { position: relative; }

.nav-item.menu-item-has-children .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  border: 1px solid rgba(7, 26, 87, 0.07);
}

.nav-item.menu-item-has-children:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item.menu-item-has-children .dropdown-menu li { list-style: none; }

.nav-item.menu-item-has-children .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #2d3e50;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-item.menu-item-has-children .dropdown-menu a:hover {
  background: var(--primary-color);
  color: #fff;
  padding-left: 26px;
}

/* Header right side */
.cs-header-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Login/Register dropdowns */
.cs-dropdown-wrap { position: relative; }

.cs-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.cs-chevron {
  color: var(--primary-color);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
	    right: -4px;
}

.cs-dropdown-wrap:hover .cs-chevron { transform: rotate(180deg); }

.cs-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  background: #fff;
  min-width: 260px;
  border-radius: 14px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.97);
  transform-origin: top right;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
  box-shadow: 0 8px 32px rgba(7, 26, 87, 0.13), 0 2px 8px rgba(7, 26, 87, 0.07);
  border: 1px solid rgba(7, 26, 87, 0.07);
}

.cs-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 22px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(7, 26, 87, 0.07);
  border-top: 1px solid rgba(7, 26, 87, 0.07);
  transform: rotate(45deg);
  border-radius: 2px 0 0 0;
}

.cs-dropdown-wrap:hover .cs-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.cs-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--dark-color);
  text-decoration: none;
  transition: all 0.18s ease;
  margin-bottom: 2px;
}

.cs-dropdown-item:last-child { margin-bottom: 0; }

.cs-dropdown-item:hover {
  background: #f0f4ff;
  color: var(--primary-color);
}

.cs-dd-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f2f4f7;
  border-radius: 10px;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: all 0.18s ease;
}

.cs-dropdown-item:hover .cs-dd-icon {
  background: var(--primary-color);
  color: #fff;
}

.cs-dd-texts {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cs-dd-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1.2;
  transition: color 0.18s ease;
}

.cs-dropdown-item:hover .cs-dd-title { color: var(--primary-color); }

.cs-dd-sub {
  font-size: 0.75rem;
  color: var(--gray-color);
  line-height: 1.3;
  font-weight: 400;
}

/* Login button */
.btn-login {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background-color: transparent;
  color: var(--primary-color);
  border-radius: 8px;
  transition: var(--transition);
}

.btn-login span {
  font-size: 0.8rem;
  line-height: 1.25;
  text-align: right;
  color: var(--primary-color);
  font-weight: 500;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-login:hover span { font-weight: 600; }

.btn-login img {
  width: 50px;
  transition: transform 0.25s ease;
}

.btn-login:hover img { transform: scale(1.05); }

/* Register button */
.btn-primary {
  padding: 0.55rem 1.75rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  border-radius: 24px;
  border: 1px solid var(--primary-color);
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary:after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 100%;
  background-color: transparent;
  border-radius: 24px;
  z-index: -2;
}

.btn-primary:before {
  content: "";
  position: absolute;
  bottom: 0; left: -3px;
  width: 0; height: 100%;
  background-color: var(--primary-color);
  border-radius: 24px;
  transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}

.btn-primary:hover { color: var(--bg-white); }
.btn-primary:hover:before { width: 105%; }

a.btn-primary-fill {
  padding: 0.7rem 2.5rem;
  font-size: 16px;
  font-weight: 600;
  color: var(--bg-white);
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  transition: color 0.3s ease;
}

a.btn-primary-fill:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-white);
  border-radius: 20px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}

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

a.btn-primary-fill:hover:before {
  transform: scaleX(1);
}

.insurance-item a.btn-primary-fill {
    display: inline-block;
    width: fit-content;
    margin-top: auto;
    margin-left: auto;
    padding: 0.55rem 1.5rem;
    font-size: 13px;
    font-weight: 600;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
  flex-shrink: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 3px;
}

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background-color: var(--bg-white);
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 80px 0 2rem;
  box-shadow: -5px 0 30px rgba(7, 26, 87, 0.12);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
  display: block;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.mobile-menu-overlay.active { display: block; }

/* Mobile nav items */
.mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  border-bottom: 1px solid rgba(7, 26, 87, 0.07);
}

.mobile-nav li:last-child { border-bottom: none; }

.mobile-nav .nav-link {
  display: block;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-color);
  padding: 14px 0;
}

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

.mobile-nav .menu-item-has-children .dropdown-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.mobile-nav .menu-item-has-children .dropdown-toggle::after {
  content: "+";
  font-size: 20px;
  margin-left: 10px;
}

.mobile-nav .menu-item-has-children.active .dropdown-toggle::after {
  content: "-";
}

.mobile-nav .menu-item-has-children .mobile-dropdown-menu {
  display: none;
  padding-left: 20px;
  background: #f5f7f9;
  margin: 5px 0;
}

.mobile-nav .menu-item-has-children.active .mobile-dropdown-menu {
  display: block;
}

.mobile-nav .menu-item-has-children .mobile-dropdown-menu li a {
  padding: 10px 15px;
  font-size: 14px;
}

.mobile-menu nav {
  background: #f7f8fb;
  padding: 0;
  margin-bottom: 20px;
}

.mobile-menu .cs-header-links {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
}

.mobile-menu .cs-header-links .cs-dropdown-wrap {
  width: 100%;
}

.mobile-menu .cs-header-links .cs-dropdown-wrap .cs-dropdown-trigger {
  width: 100%;
  justify-content: center;
}

/* =============================================
   HEADER RESPONSIVE BREAKPOINTS
   ============================================= */

/* Large desktops */
@media (max-width: 1599.98px) {
  .cs-header { padding: 1rem 3rem; }
  .cs-header.fixed-header { padding: 0.65rem 3rem; }
  .cs-navbar ul { gap: 2rem; }
}

/* Medium desktops */
@media (max-width: 1365.98px) {
  .cs-header { padding: 1rem 2rem; }
  .cs-header.fixed-header { padding: 0.65rem 2rem; }
  .cs-navbar ul { gap: 1.5rem; }
  .cs-navbar .nav-link { font-size: 0.85rem; }
  .btn-primary { padding: 0.5rem 1.25rem; font-size: 13px; }
  .btn-login span { font-size: 0.75rem; }
}

/* Hide desktop nav, show hamburger */
@media (max-width: 1199.98px) {
  .cs-navbar { display: none; }

  .mobile-menu-btn { display: block; }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Hide register button from header on tablet — it lives in mobile menu */
  .cs-header-links > .cs-dropdown-wrap:last-of-type { display: none; }

  /* Login: show icon only, hide text */
  .btn-login span { display: none; }
  .btn-login { padding: 0.4rem 0.5rem; }
}

/* Mobile */
@media (max-width: 767.98px) {
  .cs-header { padding: 0.75rem 1.25rem; }
  .cs-header.fixed-header { padding: 0.6rem 1.25rem; }

  /* Hide login button entirely from header — it's in the drawer */
  .cs-header > .cs-header-links > .cs-dropdown-wrap:first-of-type { display: none; }

  .cs-logo img { height: 32px; }

  /* Dropdowns in mobile header — disable hover-open */
  .cs-dropdown-wrap .cs-dropdown-menu { display: none; }
  .cs-chevron { display: none; }
}

/* Small mobile */
@media (max-width: 575.98px) {
  .cs-header { padding: 0.65rem 1rem; }
  .cs-logo img { height: 28px; }
  .mobile-menu { width: 280px; }
}

/* =============================================
   HERO SECTION & SLIDER
   ============================================= */
.hero-section {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 109px);
  background-color: var(--bg-white);
  min-height: 720px;
}

a.scroll-down {
  display: block;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.cs-chatbot {
  display: block;
  position: fixed;
  bottom: 4%;
  right: 2%;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  cursor: pointer;
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbot-svg {
  width: 100%;
  height: 100%;
}

.cs-chatbot:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-lg);
}

.cs-slider-item {
  display: inline-block;
  width: 100% !important;
  height: 100%;
}

.cs-main-slider {
  display: block;
  height: 100%;
}

.cs-slider-item.slider1 {
  padding: 1.5rem 7rem;
}

.cs-slider-item.slider2 {
  padding: 1.5rem 7rem;
}

.cs-slider-item .full-width-image {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: imgZoomIn 1s ease-out forwards;
}

.cs-slider-item.slider1 h2 {
  font-size: 14rem;
  line-height: 12rem;
  font-style: italic;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 4rem 0 3rem 0;
  z-index: 2;
  animation: textSlideIn 1s ease-out forwards;
  letter-spacing: -0.04em;
}

.cs-slider-item.slider1 h2 span {
  display: block;
  color: var(--primary-color);
}

.cs-slider-item p {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 2rem;
  width: 100%;
  max-width: 50%;
  z-index: 2;
  line-height: 1.75;
}

.cs-slider-item.slider1 p,
.cs-slider-item.slider2 p {
  opacity: 0;
  animation: textSlideIn 1s ease-out forwards;
  animation-delay: 1s;
}

.cs-slider-icon {
  position: absolute;
  bottom: 0;
  right: -30px;
  width: 65%;
  height: 95%;
  text-align: right;
  z-index: 1;
  animation: slideIn 1s ease-in-out forwards;
  transition-delay: 1.2s;
}

.cs-slider-icon img.animate-icon {
  width: 72%;
  display: inline-block;
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 6rem;
  position: absolute;
  bottom: 4%;
  gap: 15px;
}

.seg img:nth-of-type(1) {
  margin-right: -17px;
}

.seg img:nth-of-type(1),
.seg img:nth-of-type(2) {
  border: 1px solid #ffffff;
  border-radius: 50%;
  transform: none !important;
}

.cs-slider-item.slider4 {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cs-slider-item.slider4 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.cs-slider-item.slider2 h2 {
  font-size: 6.5rem;
  line-height: 6rem;
  font-style: italic;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 6rem 0 3rem 0;
  z-index: 2;
  animation: textSlideIn 1s ease-out forwards;
  letter-spacing: -0.03em;
}

.cs-slider-item.slider2 h2 span {
  display: block;
  color: var(--primary-color);
}

.cs-slider-item.slider2 .cs-slider-image {
  position: absolute;
  top: -10px;
  right: 6%;
  width: 40%;
  height: 100%;
  padding: 6% 4% 6% 6%;
  animation: imgSlideIn 800ms ease-out forwards;
}

/* =============================================
   CONTAINER & SECTION TYPOGRAPHY
   ============================================= */
.cs-container {
  display: block;
  width: 100%;
  max-width: 1690px;
  padding: 0 40px;
  margin: 0 auto;
}

.cs-container h3 {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
}

.cs-container h2 {
  font-size: 72px;
  line-height: 1;
  font-weight: 700;
  color: #071a57;
  margin-bottom: 30px;
  letter-spacing: var(--letter-spacing-tight);
}

/* =============================================
   INTRO SECTION
   ============================================= */
.intro-sec {
  display: block;
  padding: 6rem 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.intro-sec .cs-container {
  display: flex;
  width: 100%;
  max-width: 1610px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
}

.intro-content {
  width: 55%;
}

.intro-content h3 {
  opacity: 0;
  animation: textSlideIn 1s ease-out forwards;
}

.intro-content h2 {
  opacity: 0;
  animation: textSlideIn 1s ease-out forwards;
  animation-delay: 300ms;
}

.intro-img {
  width: 45%;
}

.intro-test-img {
  width: 45%;
}

.intro-test-img img{
    width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.intro-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.intro-sec .cs-container p {
  max-width: 80%;
  opacity: 0;
  animation: textSlideIn 1s ease-out forwards;
  animation-delay: 600ms;
  font-size: 1.1rem;
  line-height: 1.75;
}

/* =============================================
   TESTIMONIAL SECTION
   ============================================= */
.testimonial-sec {
  display: block;
  padding: 8rem 0;
  color: #fff;
}

.testimonial-sec h2 {
  color: #fff;
}

.testimonial-sec p {
  width: 100%;
  max-width: 40%;
  font-size: 1.1rem;
  line-height: 1.7;
}

.testimonial-slider-wp {
  padding-top: 60px;
  margin-left: -15px;
  width: calc(100% + 30px);
}

.testimonial-slider-wp .btn-primary-fill {
  position: absolute;
  top: -45px;
  right: 15px;
}

.testimonial-item {
  padding: 15px;
}

.item-inner-container {
  display: flex;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.item-inner-container:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.client-img {
  display: flex;
  padding: 0 20px;
}

.review-content {
  display: flex;
  padding: 110px 20px 24px 20px;
  flex-wrap: wrap;
	min-height: 280px;
}

.review-content::before {
  display: block;
  position: absolute;
  content: "";
  background: transparent url(../images/quotes.png) center center no-repeat;
  width: 60px;
  height: 60px;
  background-size: 100% 100%;
  top: 30px;
  opacity: 0.65;
}

.review-content p {
  max-width: 90%;
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.75;
}

.review-content h4 {
  width: 90%;
  font-size: 17px;
  line-height: 20px;
  color: #404040;
  font-style: italic;
  font-weight: 600;
	margin-bottom: 0;
}

ul.slick-dots {
  display: flex;
  margin: 15px 0 0 0;
  padding: 0;
  list-style: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

ul.slick-dots > li > button {
  display: block;
  width: 16px;
  height: 6px;
  border: none;
  text-indent: -9999px;
  border-radius: 4px;
  background: hsl(0deg 0% 100% / 40%);
  transition: all 0.25s ease;
  cursor: pointer;
}

ul.slick-dots > li.slick-active > button {
  width: 36px;
  background: #103fd5;
}

/* =============================================
   VALUE PROPOSITION SECTION
   ============================================= */
.cs-value-pro {
  display: flex;
  transform: translate3d(0, 0, 0) !important;
  height: 100vh;
  min-height: 650px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.cs-vp-inner {
  display: block;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.cs-vp-inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cs-vp-inner ul li {
  display: block;
  font-size: 38px;
  line-height: 40px;
  color: #a7bcff;
  padding: 40px 0;
  font-weight: 600;
  position: relative;
  letter-spacing: var(--letter-spacing-tight);
  transition: color 0.25s ease;
}

.cs-vp-inner ul li span {
  display: block;
  z-index: 3;
  cursor: pointer;
}

.cs-vp-inner ul li:hover {
  color: #ffffff;
}

.cs-vp-inner ul li::before {
  display: block;
  position: absolute;
  content: "";
  background: transparent url(/wp-content/uploads/2026/02/compSure_icon_2.svg) no-repeat 0 0;
  background-size: 100% 100%;
  width: 92px;
  height: 110px;
  left: -86px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cs-vp-inner ul li:hover::before {
  opacity: 1;
}

.cs-vp-inner ul li::before {
  transition: opacity 1s ease;
}

.cs-vp-inner ul li::after {
  display: block;
  position: absolute;
  content: "";
  background: transparent url(/wp-content/uploads/2026/02/hover_animation_2.svg) no-repeat 0 0;
  background-size: contain;
  width: 1729px;
  height: 261px;
  left: 0;
  top: 36%;
  transform: translateY(-50%);
  z-index: 1;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  -moz-transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  -o-transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.cs-vp-inner ul li:hover:after {
  clip-path: inset(0 0 0 0);
  -webkit-transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  -moz-transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  -o-transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.cs-process-sec {
  display: block;
  padding: 8rem 0;
  text-align: center;
  background-color: #fff;
}

.cs-process-sec h2 span {
  color: #103fd5;
}

.cs-process-sec h2 {
  margin-bottom: 16px;
}

.cd-process-inner {
  display: flex;
  gap: 10%;
  width: 100%;
  max-width: 1280px;
  margin: 7% auto 1% auto;
}

.process-step {
  display: block;
}

.process-step > span {
  display: flex;
  margin: 0 auto 50px auto;
  width: 80px;
  height: 80px;
  justify-content: center;
  align-items: center;
  background: #103fd5;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover > span {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(16, 63, 213, 0.35);
}

.process-step > span::before {
  display: block;
  position: absolute;
  content: "";
  width: 95px;
  height: 95px;
  background: hsl(225.69deg 86.03% 44.9% / 28%);
  z-index: -1;
  border-radius: 50%;
}

.process-step > span::after {
  display: block;
  position: absolute;
  content: "";
  width: 115px;
  height: 115px;
  background: hsl(225.69deg 86.03% 44.9% / 14%);
  z-index: -1;
  border-radius: 50%;
}

.process-step h4 {
  font-size: 22px;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.process-step p {
  padding: 0 10px;
  font-size: 1rem;
  line-height: 1.75;
  color: #666;
}

.process-step a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.process-step.step2 {
  margin-top: 100px;
}

.process-step .process-line {
  display: block;
  position: absolute;
}

.process-step.step1 .process-line {
  top: 32px;
  left: 60%;
}

.process-step.step2 .process-line {
  top: -60px;
  left: 62%;
}
.process-line img {
    clip-path: inset(0 100% 0 0);
    transition: none; /* Let GSAP own the animation, not CSS */
    will-change: clip-path;
}

/* =============================================
   TOOLS SECTION
   ============================================= */
.cs-tools-sec {
  display: block;
  text-align: center;
  padding: 7rem 0 2rem 0;
  background-color: var(--light-color);
}

.cs-tools-sec h2 {
  margin-bottom: 20px;
}

.tool-row {
  margin-top: 5%;
}

.tool-col {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5%;
}

.tool-intro {
  text-align: left;
  padding: 5% 5% 5% 15%;
}

.tool-img {
  padding-right: 5%;
}

.tool-img img {
  width: 100%;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

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

.tool-intro h4 {
  font-size: 36px;
  color: #103fd5;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.tool-intro p {
  width: 90%;
  font-size: 1.05rem;
  line-height: 1.75;
}

.tool-row > .tool-col:nth-of-type(2),
.tool-row > .tool-col:nth-of-type(4) {
  flex-direction: row-reverse;
}

.tool-row > .tool-col:nth-of-type(2) .tool-intro,
.tool-row > .tool-col:nth-of-type(4) .tool-intro {
  text-align: left;
  padding: 5% 15% 5% 5%;
}

.tool-row > .tool-col:nth-of-type(2) .tool-img,
.tool-row > .tool-col:nth-of-type(4) .tool-img {
  padding-right: 0;
  padding-left: 5%;
}

/* =============================================
   PAGE LOADER
   ============================================= */
.cs-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.cs-page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-spinner {
  width: 44px;
  height: 44px;
  border: 2.5px solid rgba(16, 63, 213, 0.12);
  border-top: 2.5px solid #103fd5;
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
  margin: 0 auto 20px;
}

.loader-text {
  color: #071A57;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cs-main-slider {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.cs-main-slider.slider-ready {
  opacity: 1;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  display: block;
  background: #071a57;
}

.footer-container {
  display: flex;
  padding: 7rem 5rem;
  flex-wrap: wrap;
  gap: 18%;
}

.footer-bottom {
  display: block;
  width: 100%;
  background: #000e3c;
  padding: 16px 15px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.ft-col-1 {
  width: 40%;
}

.ft-col-1 .ft-logo {
  display: block;
  margin-bottom: 24px;
}

.ft-col-1 .ft-logo img {
  display: block;
  width: auto;
  height: 40px;
}

.ft-col-1 p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.ft-social-link {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ft-social-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: all 0.25s ease;
}

.ft-social-link a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.ft-social-link a img {
  transform: none !important;
  width: 18px;
  height: 18px;
}

.ft-full-col {
  width: 100%;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.ft-full-col a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.ft-full-col a:hover {
  color: #fff;
}

.ft-col-2 ul,
.ft-col-3 ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ft-col-2 ul li,
.ft-col-3 ul li {
  padding-bottom: 14px;
}

.ft-col-2 ul li a,
.ft-col-3 ul li a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.ft-col-2 ul li a:hover,
.ft-col-3 ul li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.ft-col-3 a.btn-primary-fill {
  margin-top: 20px;
}

/* =============================================
   PAGE CONTENT
   ============================================= */
.page-content .cs-container {
  padding: 0 55px;
}

.page-id-56 .page-content .cs-container p strong,
.page-id-54 .page-content .cs-container p strong,
.page-id-58 .page-content .cs-container p strong {
    color: #103fd5;
}

.banner-sec {
  display: flex;
  background: #071a57;
  padding: 4rem 0;
  align-items: center;
  min-height: 450px;
  overflow: hidden;
}

section.banner-sec::before {
  display: block;
  position: absolute;
  content: "";
  background: transparent url('/wp-content/uploads/2026/02/clip-icon1.svg') no-repeat 0 0;
  background-size: 100% 100%;
  width: 700px;
  height: 700px;
  right: -300px;
  opacity: 0.05;
  bottom: -180px;
  animation: infinityanim 8s linear infinite;
}

@keyframes infinityanim {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.banner-sec .cs-container {
  padding: 0 55px;
}

.banner-sec h2 {
  color: #fff;
  font-size: 72px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
  animation: textSlideIn 1s ease-out forwards;
}

.banner-sec h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.banner-sec .breadcrum ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  animation: textSlideIn 1s ease-out forwards;
  animation-delay: 1s;
}

.banner-sec .breadcrum ul li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.banner-sec .breadcrum ul li:not(:last-child):after {
  content: "/";
  margin: 0 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.banner-sec .breadcrum ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.banner-sec .breadcrum ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.banner-sec .breadcrum ul li:last-child {
  color: #fff;
  font-weight: 600;
}

.wcs-sec {
  display: flex;
  padding: 7rem 0 6rem 0;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.wcs-image {
  width: 40%;
}

.wcs-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.wcs-content {
  width: 50%;
}

.wcs-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
}

/* =============================================
   VISION & MISSION
   ============================================= */
.vision-mission-sec {
  padding: 8rem 0 9rem 0;
  background: #071a57;
}

.vision-mission-sec .cs-container {
  padding: 0 55px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h3 {
  color: #fff;
  font-size: 60px;
  line-height: 1.05;
  font-weight: 700;
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
}

.vision-mission-grid {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
}

.vision-card,
.mission-card {
  flex: 1;
  background: #fff;
  padding: 4rem 3rem 3rem 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-card img, .mission-card img {
    width: 100%;
	margin-top: 15px;
	border-radius: 10px;
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.22);
}

.vision-card h3,
.mission-card h3 {
  color: #071a57;
  font-size: 38px;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
}

.vision-card h3::after,
.mission-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.vision-card p,
.mission-card p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

/* =============================================
   LEADERSHIP SECTION
   ============================================= */
.leadership-sec {
  padding: 7rem 0;
  background: #ffffff;
}

.leadership-sec .cs-container {
  padding: 0 55px;
}

.leadership-sec .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.leadership-sec .section-header h3 {
  color: #071a57;
  font-size: 50px;
  font-weight: 700;
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  text-transform: capitalize;
  letter-spacing: var(--letter-spacing-tight);
}

.leadership-content {
  display: flex;
  gap: 3.5rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.founder-image {
  flex: 0 0 200px;
}

.founder-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.insight-content {
  flex: 1;
}

.insight-text {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #4a4a4a;
  margin-bottom: 2rem;
  font-style: italic;
}

.founder-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #071a57;
  text-align: right;
  margin: 0;
  font-style: italic;
}

/* =============================================
   TEAM SECTION
   ============================================= */
.team-sec {
  padding: 6rem 0;
  background: #e8e8e8;
}

.team-sec .cs-container {
  padding: 0 55px;
}

.team-sec .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.team-sec .section-header h3 {
  color: #071a57;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  text-transform: initial;
  letter-spacing: var(--letter-spacing-tight);
}

.team-sec .section-header p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.team-slider {
  margin: 0 -15px;
}

.team-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 0 15px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.06);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h3 {
  color: #071a57;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
}

.team-position {
  color: var(--primary-color);
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.team-bio {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--light-color);
  border-radius: 50%;
  transition: all 0.25s ease;
}

.team-social a:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.team-social a:hover img {
  filter: brightness(0) invert(1);
}

.team-social img {
  width: 16px;
  height: 16px;
}

.team-slider .slick-list {
  margin: 0 -15px;
}

.team-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 2.5rem 0 0 0;
  margin: 0;
  gap: 0.5rem;
}

.team-slider .slick-dots li {
  margin: 0;
}

.team-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: rgba(7, 26, 87, 0.18);
  border: none;
  text-indent: -9999px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-slider .slick-dots li.slick-active button {
  background: #071a57;
  width: 24px;
}

.team-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(7, 26, 87, 0.1);
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.team-slider .slick-arrow:hover {
  background: #071a57;
  border-color: #071a57;
  box-shadow: var(--shadow-md);
}

.team-slider .slick-arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-left: 2px solid #071a57;
  border-bottom: 2px solid #071a57;
  transition: border-color 0.25s ease;
}

.team-slider .slick-arrow:hover:before {
  border-color: #ffffff;
}

.team-slider .slick-prev {
  left: -22px;
}

.team-slider .slick-prev:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.team-slider .slick-next {
  right: -22px;
}

.team-slider .slick-next:before {
  transform: translate(-50%, -50%) rotate(225deg);
}

/* =============================================
   HOW IT WORKS SECTION
   ============================================= */
.how-it-works-sec {
  padding: 7rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.how-it-works-sec .cs-container {
  padding: 0 55px;
  position: relative;
  z-index: 2;
}

.how-it-works-sec .section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.how-it-works-sec .section-header h2 {
  color: #071a57;
  font-size: 72px;
  line-height: 1;
  margin-bottom: 16px;
  font-weight: bold;
  letter-spacing: var(--letter-spacing-tight);
}

.header-subtitle {
  font-size: 17px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding: 0 2rem;
  color: #666;
}

.header-subtitle::before {
  left: -15px;
}

.header-subtitle::after {
  right: -15px;
}

.works-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1300px;
  margin: 0 auto;
}

.works-card {
  display: flex;
  flex-direction: column;
  width: 32%;
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(0, 86, 179, 0.18);
  overflow: hidden;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.works-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border: 2px solid #0056b3;
}

.works-icon {
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.works-icon img {
  width: 88px;
  height: 88px;
  padding: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 4px 12px rgba(7, 26, 87, 0.1));
}

.works-card:hover .works-icon img {
  transform: scale(1.08);
}

.works-card h3 {
  color: #071a57;
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  letter-spacing: var(--letter-spacing-tight);
}

.works-card p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  min-height: 120px;
}

.works-card:hover p {
  opacity: 1;
}

.works-card .btn-primary-fill {
  display: block;
  padding: 0.85rem 2.5rem;
  width: 100% !important;
  border-radius: 25px;
}

.works-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #071a57;
  font-weight: 600;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border: 1.5px solid #071a57;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 0.95rem;
}

.works-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: #071a57;
  border-radius: 50px;
  z-index: -1;
  transition: transform 0.3s ease;
}

.works-link:hover {
  color: #ffffff;
  border-color: #071a57;
}

.works-link:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.works-link span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.works-link:hover span {
  transform: translateX(5px);
}

/* =============================================
   PAGE TESTIMONIALS
   ============================================= */
.page-content .testimonial-sec {
  background: #f5f7fb !important;
  padding: 6rem 0;
}

.page-content .testimonial-sec h2 {
  color: #071a57;
}

.page-content .testimonial-sec p {
  color: #444;
}

.page-content .testimonial-sec .item-inner-container {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(7, 26, 87, 0.06);
}

.page-content .testimonial-sec ul.slick-dots li button {
  background: #dde2ef;
}

.page-content .testimonial-sec ul.slick-dots li.slick-active button {
  background: #071a57;
}

/* =============================================
   CTA BG SECTION
   ============================================= */
.cta-bg-section {
  padding: 8rem 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 26, 87, 0.96) 0%,
      rgba(7, 26, 87, 0.82) 50%,
      rgba(7, 26, 87, 0.65) 100%
    ),
    url("../images/bg-imag-4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
}

.cta-bg-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(103, 186, 228, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-bg-section .cs-container {
  padding: 0 55px;
  position: relative;
  z-index: 2;
}

.cta-content {
  max-width: 60%;
  color: #ffffff;
}

.cta-content h2 {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: var(--letter-spacing-tight);
}

.cta-content p {
  font-size: 1.2rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.88);
}

.cta-content .btn-primary {
  display: inline-block;
  padding: 1rem 3rem;
  background: #ffffff;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.05rem;
  border: 2px solid #ffffff;
  letter-spacing: 0.01em;
}

.cta-content .btn-primary:hover {
  color: var(--bg-white);
}

/* =============================================
   TESTIMONIAL GRID
   ============================================= */
.testimonial-grid {
  padding: 5rem 0;
}

.inner-ts-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inner-ts-row .testimonial-item {
  width: 49%;
  margin-bottom: 1%;
}

.inner-ts-row .testimonial-item .item-inner-container {
  background: #fdfdfd;
  box-shadow: 0 4px 20px rgba(7, 26, 87, 0.07);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.inner-ts-row .testimonial-item .item-inner-container:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* =============================================
   HOW WE HELP SECTION
   ============================================= */
.hwh-section {
  padding: 6rem 0;
  background: #ffffff;
}

.hwh-section .cs-container {
  padding: 0 55px;
}

.hwh-grid {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
  justify-content: space-between;
}

.hwh-content {
  flex: 1;
}

.hwh-content h2 {
  color: var(--secondary-color, #071a57);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  letter-spacing: var(--letter-spacing-tight);
}

.hwh-content .hwh-intro {
  font-size: 17px;
  color: var(--secondary-color, #071a57);
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.7;
  border-left: 3px solid var(--primary-color, #103fd5);
  padding: 16px 20px;
  background-color: var(--light-color);
  border-radius: 0 8px 8px 0;
}

.hwh-content p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--primary-color, #103fd5);
  font-weight: 600;
}

.service-list {
  margin-top: 2rem;
}

.service-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: #f8f9fc;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 3px solid transparent;
}

.service-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--primary-color, #103fd5);
  background: #fff;
}

.service-item h4 {
  color: var(--secondary-color, #071a57);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: var(--letter-spacing-tight);
}

.service-item p {
  margin-bottom: 0;
  font-size: 0.98rem;
  color: #666;
}

.hwh-image {
  flex: 0 0 40%;
  position: sticky;
  top: 100px;
}

.hwh-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
}

/* =============================================
   CONTROL SECTION
   ============================================= */
.control-section {
  padding: 7rem 0;
  background: var(--light-color);
}

.control-section .cs-container {
  padding: 0 55px;
}

.control-grid {
  display: flex;
  gap: 5rem;
  align-items: center;
  justify-content: space-between;
}

.control-content {
  flex: 1;
}

.control-content h2 {
  color: var(--secondary-color, #071a57);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  letter-spacing: var(--letter-spacing-tight);
}

.control-content p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.control-highlight {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--secondary-color, #071a57);
  border-left: 3px solid var(--primary-color, #103fd5);
  padding: 14px 20px;
  margin-top: 2rem;
  font-style: italic;
  background: rgba(16, 63, 213, 0.04);
  border-radius: 0 8px 8px 0;
}

.control-video {
  flex: 0 0 45%;
}

.control-video img {
	width: 100%;
	border-radius: 10px;
}

.control-video video {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: block;
  cursor: pointer;
}

.control-video video:hover {
  transform: scale(1.02);
  box-shadow: 0 32px 64px rgba(7, 26, 87, 0.22);
}

.video-caption {
  margin-top: 1rem;
  text-align: center;
}

.video-caption p {
  color: var(--secondary-color, #071a57);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.6;
  margin: 0;
}

.control-video video::-webkit-media-controls {
  background-color: rgba(7, 26, 87, 0.7);
  border-radius: 0 0 20px 20px;
}

.control-video video::-webkit-media-controls-panel {
  padding: 0 10px;
}

.control-video video::-webkit-media-controls-play-button {
  background-color: var(--primary-color, #103fd5);
  border-radius: 50%;
}

.control-video video::-webkit-media-controls-timeline {
  color: var(--primary-color, #103fd5);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  padding: 6rem 0;
  background: #ffffff;
}

.contact-section .cs-container {
  padding: 0 55px;
}

.contact-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.contact-header h2 {
  color: var(--secondary-color, #071a57);
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1.25rem;
  letter-spacing: var(--letter-spacing-tight);
}

.contact-header h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: var(--primary-color, #103fd5);
  border-radius: 2px;
}

.contact-header p {
  color: #555;
  font-size: 1.15rem;
  line-height: 1.75;
}

.contact-grid {
  display: flex;
  gap: 3.5rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-wrapper {
  flex: 1.2;
}

.contact-form {
  background: #f8f9fc;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(7, 26, 87, 0.06);
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
  margin-bottom: 1.5rem;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  color: var(--secondary-color, #071a57);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid rgba(7, 26, 87, 0.1);
  border-radius: 10px;
  background: #ffffff;
  transition: all 0.25s ease;
  font-size: 0.98rem;
  font-family: "Montserrat", sans-serif;
  color: var(--dark-color);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color, #103fd5);
  box-shadow: 0 0 0 3px rgba(16, 63, 213, 0.08);
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: rgba(7, 26, 87, 0.22);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--primary-color, #103fd5);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  font-family: "Montserrat", sans-serif;
}

.btn-submit:hover {
  background: transparent;
  color: var(--primary-color, #103fd5);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(16, 63, 213, 0.2);
}

.contact-info-wrapper {
  flex: 0.8;
}

.contact-info-card {
  background: var(--secondary-color, #071a57);
  padding: 3rem;
  border-radius: 20px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-info-card h3 {
  font-size: 17px;
  margin-bottom: 32px;
  position: relative;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.info-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.info-item:hover .info-icon {
  background: rgba(16, 63, 213, 0.4);
}

.info-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent-color, #67bae4);
}

.info-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.info-text p,
.info-text a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  line-height: 1.65;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.info-text a:hover {
  color: #ffffff;
}

.business-hours {
  margin: 2rem 0 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.business-hours h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.business-hours p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  font-size: 0.95rem;
}

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-social .social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.contact-social .social-icon:hover {
  background: var(--primary-color, #103fd5);
  transform: translateY(-3px);
}

.contact-social .social-icon img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* =============================================
   INSURANCE LINES SECTION
   ============================================= */
/*
.insurance-lines-sec {
  display: block;
  background: #071a57;
  padding: 6rem 0;
  color: #fff;
}

.insurance-lines-sec .section-header h2 {
  color: #fff;
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  letter-spacing: var(--letter-spacing-tight);
}

.insurance-item {
  background: rgba(255, 255, 255, 0.06);
  padding: 32px 36px;
  margin-bottom: 18px;
  border-bottom: 2px solid rgba(16, 63, 213, 0.65);
  border-radius: 0 8px 8px 0;
  transition: all 0.25s ease;
}

.insurance-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
  border-bottom-color: var(--accent-color);
}

.insurance-item h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  letter-spacing: var(--letter-spacing-tight);
}

.insurance-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.97rem;
  line-height: 1.65;
}*/

/* ── Section wrapper ── */
.insurance-lines-sec {
  display: block !important;
  background: #071a57 !important;
  padding: 6rem 0 7rem !important;
  color: #fff !important;
  overflow: hidden !important;
}
 
.insurance-lines-sec .section-header {
  text-align: left;
  margin-bottom: 3rem;
}
 
.insurance-lines-sec .section-header h2 {
  color: #fff !important;
  font-size: clamp(2rem, 4vw, 2.75rem) !important;
  font-weight: 700 !important;
  margin: 0 0 0.5rem !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
}
 
.insurance-lines-sec .section-header p.ins-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  margin: 0;
  max-width: 560px;
  line-height: 1.7;
}
 
/* ── Grid: 3 columns desktop, 2 tablet, 1 mobile ── */
.insurance-lines-sec .insurance-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  margin-bottom: 0 !important;
}
 
/* ── Card ── */
.insurance-lines-sec .insurance-item {
  /* Reset old strip styles */
  border-bottom: none !important;
  border-radius: 14px !important;
  transform: none !important;
  /* New card styles */
  background: rgba(255,255,255,0.055) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  padding: 1.6rem 1.5rem 1.4rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  margin-bottom: 0 !important;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease !important;
  cursor: default !important;
}
 
.insurance-lines-sec .insurance-item:hover {
  border-color: rgba(103,186,228,0.45) !important;
  transform: translateY(-3px) !important;
}
 
/* Featured card (BOP) */
.insurance-lines-sec .insurance-item.ins-featured {
  border-color: rgba(103,186,228,0.5) !important;
  background: rgba(103,186,228,0.065) !important;
}
 
/* ── Icon bubble ── */
.ins-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
 
.insurance-lines-sec .insurance-item:hover .ins-icon-wrap {
  transform: scale(1.08);
}
 
.ic-blue   { background: rgba(16,  63,213,0.28); color: #7eaaff; }
.ic-green  { background: rgba(57, 182,  0,0.22); color: #7fe86d; }
.ic-teal   { background: rgba(29, 158,117,0.22); color: #5dcaa5; }
.ic-amber  { background: rgba(239,159, 39,0.22); color: #f5c265; }
.ic-red    { background: rgba(210, 50, 50,0.22); color: #f08585; }
.ic-pink   { background: rgba(212, 83,126,0.22); color: #ed93b1; }
.ic-purple { background: rgba(127,119,221,0.22); color: #b0a9f5; }
.ic-gray   { background: rgba(255,255,255,0.10); color: #c0c0c0; }
.ic-coral  { background: rgba(216, 90, 48,0.22); color: #f4a07a; }
 
/* ── Card title ── */
.insurance-lines-sec .insurance-item h3 {
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  margin: 0.4rem 0 0 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em !important;
}
 
/* ── Description ── */
.insurance-lines-sec .insurance-item p {
  color: rgba(255,255,255,0.6) !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}
 
/* ── Category tag ── */
.ins-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  width: fit-content;
  margin-bottom: 2px;
}
 
.ins-featured .ins-tag {
  background: rgba(103,186,228,0.14) !important;
  color: #67bae4 !important;
  border-color: rgba(103,186,228,0.3) !important;
}
 
/* ── "Most popular" badge ── */
.ins-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(103,186,228,0.14);
  color: #67bae4;
  border: 1px solid rgba(103,186,228,0.3);
  border-radius: 20px;
  padding: 3px 10px;
  width: fit-content;
  margin-bottom: 2px;
}
 
.ins-badge i { font-size: 11px; }

section.cs-cas-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-bottom: 6rem;
    font-size: 30px;
    flex-direction: column;
}
 
/* ── Responsive ── */
@media (max-width: 1199px) {
  .insurance-lines-sec .insurance-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
 
@media (max-width: 767px) {
  .insurance-lines-sec {
    padding: 4rem 0 5rem !important;
  }
  .insurance-lines-sec .insurance-grid {
    grid-template-columns: 1fr !important;
  }
	
	section.cs-cas-sec {
		padding-bottom: 4rem;
		font-size: 18px;
	}
}
 

.form-group p br {
    display: none !important;
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */
@media (max-width: 1749.98px) {
  .cs-slider-item.slider1 h2 {
    font-size: 12rem;
    line-height: 9rem;
  }

  .cs-slider-item.slider2 h2 {
    font-size: 5.5rem;
    line-height: 6rem;
  }

  .footer-container {
    padding: 7rem 5rem 5rem 30rem;
    gap: 9%;
  }
}

@media (max-width: 1599.98px) {
  .cs-header {
    padding: 1rem 3rem;
  }

  .cs-slider-item.slider1 h2 {
    font-size: 10rem;
    line-height: 8rem;
  }

  .cs-navbar ul {
    gap: 2rem;
  }

  .footer-container {
    padding: 7rem 5rem 5rem 20rem;
    gap: 7%;
  }

  .inner-ts-row .testimonial-item {
    width: 100%;
    margin-bottom: 15px;
  }

  .cs-slider-item.slider2 h2 {
    font-size: 4.5rem;
    line-height: 5rem;
  }
}

@media (max-width: 1365.98px) {
  .process-step.step1 .process-line {
    top: 42px;
    left: 60%;
    transform: rotate(6deg);
  }

  .process-step.step2 .process-line {
    top: -71px;
    left: 60%;
    transform: rotate(-5deg);
  }

  .footer-container {
    padding: 5rem 5rem 5rem 5rem;
    gap: 7%;
  }

  footer {
    background: #071a57 !important;
  }
}

@media (max-width: 1199.98px) {
  .cs-header {
    padding: 1rem 2rem;
  }

  .cs-navbar {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
  }

  .mobile-menu-overlay.active {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 340px;
    height: 100%;
    background-color: var(--bg-white);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 100px 0 20px;
    box-shadow: -5px 0 30px rgba(7, 26, 87, 0.15);
    overflow-y: auto;
  }

  .mobile-nav .menu-item-has-children .dropdown-toggle {
    justify-content: center;
  }

  .nav-item.menu-item-has-children > .nav-link::after {
    display: none;
  }

  .mobile-menu.active {
    right: 0;
    display: block;
  }

  .mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(7, 26, 87, 0.07);
  }

  .mobile-nav li:last-child {
    border-bottom: none;
  }

  .mobile-nav .nav-link {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-color);
    padding: 16px 0;
    display: block;
    border-bottom: none;
  }

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

  .mobile-menu .cs-header-links {
    flex-direction: column;
    gap: 20px;
  }

  .mobile-menu nav {
    background: #f7f8fb;
    padding: 0;
    margin-bottom: 24px;
  }

  .cs-slider-icon {
    bottom: -100px;
  }

  .cs-slider-item.slider2 h2 {
    font-size: 3rem;
    line-height: 3rem;
    margin: 6rem 0 2rem 0;
  }

  .cs-slider-item p {
    font-size: 1rem;
  }

  .cs-container h2 {
    font-size: 48px;
    line-height: 54px;
  }

  .cs-container h3 {
    font-size: 11px;
    line-height: 16px;
  }

  .intro-content,
  .intro-img {
    width: 50%;
  }

  .cs-container {
    padding: 0 50px;
  }

  .intro-sec {
    padding: 5rem 0;
  }

  .process-step .process-line {
    display: none;
  }

  .cd-process-inner {
    flex-direction: column;
    gap: 80px;
  }

  .process-step.step2 {
    margin-top: 0;
  }

  .process-step > span {
    position: absolute;
    left: 0;
    top: 0;
  }

  .process-step {
    padding-left: 120px;
    transform: none !important;
    text-align: left;
  }

  .process-step > span::before,
  .process-step > span::after {
    display: none;
  }

  .tool-intro {
    padding: 5% !important;
  }

  .tool-col {
    margin-bottom: 100px;
  }

  .cs-tools-sec {
    padding: 5rem 0 2rem 0;
  }

  .ft-col-1 {
    width: 36%;
  }

  .how-it-works-sec .section-header h2 {
    font-size: 48px;
    line-height: 54px;
    margin-bottom: 16px;
  }

  .works-grid {
    flex-direction: column;
  }

  .works-icon {
    margin-bottom: 5px;
  }

  .works-card p {
    min-height: 10px;
  }

  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 991.98px) {
  .cs-slider-item.slider2 .cs-slider-image {
    display: none;
  }

  .cs-slider-icon {
    display: none;
  }

  .intro-content,
  .intro-img {
    width: 100%;
  }

  .intro-sec .cs-container {
    flex-direction: column-reverse;
    gap: 0;
    padding-bottom: 120px;
  }

  .intro-sec .cs-container p {
    max-width: 100%;
  }

  .intro-img img {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: 0 auto;
  }

  .intro-content {
    text-align: center;
  }

  .intro-sec {
    padding: 5rem 0 0 0;
  }

  .inner-full-col {
    flex-wrap: wrap;
  }

  .cd-card {
    width: 47.5%;
    margin-bottom: 5%;
  }

  .cs-slider-item.slider1 {
    padding: 1.5rem 3rem;
  }

  .cs-slider-item.slider1 h2 {
    font-size: 7.5rem;
    line-height: 6.5rem;
    text-align: center;
  }

  .cs-slider-item p {
    max-width: 100%;
    text-align: center;
  }

  .hero-section {
    height: 650px;
    min-height: 400px;
    border-bottom: 1px solid #e0e0e0;
  }

  .cs-slider-item.slider2 h2 {
    font-size: 4rem;
    line-height: 4rem;
    margin: 4rem 0 3rem 0;
    text-align: center;
  }

  .bx-controls {
    display: none;
  }

  .cs-value-pro {
    height: auto;
    min-height: 680px;
  }

  .cs-vp-inner ul li {
    font-size: 24px;
    line-height: 20px;
    padding: 30px 0;
  }

  .testimonial-sec {
    padding: 4rem 0 8rem 0;
  }

  .tool-col {
    flex-direction: column-reverse;
  }

  .tool-img img {
    width: 90%;
    max-width: 500px;
  }

  .tool-row > .tool-col:nth-of-type(2),
  .tool-row > .tool-col:nth-of-type(4) {
    flex-direction: column-reverse;
  }

  .tool-intro {
    text-align: left;
    padding: 5% 5% 5% 15%;
    text-align: center;
  }

  .tool-row > .tool-col:nth-of-type(2) .tool-intro,
  .tool-row > .tool-col:nth-of-type(4) .tool-intro {
    text-align: center;
  }

  .tool-intro::after {
    display: block;
    position: absolute;
    content: "";
    width: 80%;
    height: 1px;
    background-color: rgba(126, 126, 126, 0.3);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .cs-tools-sec .cs-container {
    margin-bottom: 50px;
  }

  .ft-col-1 {
    width: 100%;
    margin-bottom: 50px;
  }

  .ft-col-2 {
    width: 40%;
    margin-bottom: 5px;
  }

  .vision-mission-sec .cs-container {
    padding: 0 20px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .vision-mission-grid {
    flex-direction: column;
  }

  .vision-card,
  .mission-card {
    padding: 3rem;
  }

  .vision-card h3,
  .mission-card h3 {
    font-size: 24px !important;
    margin-bottom: 15px;
  }

  .team-sec .cs-container {
    padding: 0 20px;
  }

  .team-sec .section-header h2 {
    font-size: 2rem;
  }

  .team-sec .section-header p {
    font-size: 1rem;
  }

  .team-slider .slick-arrow {
    display: none !important;
  }

  .wcs-sec {
    padding: 4rem 0 3rem 0;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .wcs-content {
    width: 100%;
  }

  .wcs-image {
    text-align: center;
    width: 100%;
  }

  .vision-mission-sec {
    padding: 4rem 15px 4rem 15px;
  }

  .section-header h3 {
    font-size: 30px !important;
    line-height: 34px !important;
  }

  .leadership-sec {
    padding: 4rem 0;
  }

  .team-sec {
    padding: 5rem 3rem;
  }

  .testimonial-slider-wp .btn-primary-fill {
    display: none;
  }

  .cta-content {
    max-width: 100%;
  }

  .hwh-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .control-grid {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-grid {
    flex-direction: column;
    gap: 40px;
  }

  .contact-form-wrapper {
    flex: 1;
    width: 100%;
  }

  .contact-info-wrapper {
    flex: 1;
    width: 100%;
  }

  section.banner-sec::before {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .cs-slider-item.slider2 .cs-slider-image {
    width: 50%;
    right: 2%;
  }

  .cs-header-links > a.btn-login,
  .cs-header-links > a.btn-primary {
    display: none;
  }

  .mobile-menu .cs-header-links > a.btn-login,
  .mobile-menu .cs-header-links > a.btn-primary {
    display: flex;
  }

  .seg img:nth-of-type(1),
  .seg img:nth-of-type(2) {
    width: 40px;
  }

  a.scroll-down {
    display: none;
  }

  .cs-slider-item.slider2 h2 {
    font-size: 3rem;
    line-height: 3rem;
    margin: 6rem 0 3rem 0;
    text-align: center;
  }

  .item-inner-container {
    flex-direction: column-reverse;
  }

  .client-img {
    justify-content: center;
  }

  .review-content {
    text-align: center;
    padding: 120px 30px 20px 30px;
  }

  .review-content p {
    max-width: 100%;
  }

  .review-content::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .testimonial-sec p {
    max-width: 100%;
  }

  .ft-col-2 {
    width: 100% !important;
  }

  .tool-intro h4 {
    font-size: 26px;
  }

  .cs-container h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .cd-process-inner {
    margin: 15% auto 1% auto;
  }

  .banner-sec {
    min-height: 300px;
  }

  .banner-sec .cs-container {
    padding: 0px 40px;
  }

  .banner-sec .cs-container h2 {
    font-size: 30px;
  }

  .leadership-content {
    flex-direction: column;
  }

  .how-it-works-sec {
    padding: 4rem 0;
  }

  .how-it-works-sec .section-header h2 {
    font-size: 38px;
    line-height: 44px;
    margin-bottom: 15px;
  }

  .hwh-section,
  .control-section {
    padding: 3rem 0;
  }

  .contact-section {
    padding: 3rem 0;
  }

  .cs-container {
    padding: 0 30px;
  }

  .testimonial-sec {
    padding: 3rem 0 7rem 0;
  }

  .process-step > span {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .process-step {
    padding-left: 65px;
    transform: none !important;
    text-align: left;
  }

  .hwh-section .cs-container,
  .control-section .cs-container,
  .page-content .cs-container {
    padding: 0 30px;
  }

  .footer-container {
    padding: 4rem 3rem;
  }
}

@media (max-width: 575.98px) {
  .cs-header {
    padding: 1rem;
  }

  .cs-logo img {
    height: 30px;
  }

  .mobile-menu {
    width: 280px;
  }

  .header-cta .btn-primary-fill {
    width: 100%;
    text-align: center;
  }

  .header-cta .seg {
    width: 150px;
  }

  .cd-card {
    width: 100%;
    margin-bottom: 5%;
  }

  .cs-slider-item.slider1 h2 {
    font-size: 5rem;
    line-height: 4rem;
    margin-top: 6rem;
  }

  .footer-container {
    padding: 4rem 3rem;
  }

  .tool-img img {
    width: 80%;
    margin-bottom: 30px;
  }

  .how-it-works-sec .section-header h2 {
    font-size: 32px;
    line-height: 34px;
    margin-bottom: 10px;
  }

  .cs-slider-item.slider1 {
    padding: 1.5rem;
  }

  .cs-slider-item.slider2 h2 {
    font-size: 2rem;
    line-height: 3rem;
    margin: 4rem 0 2rem 0;
    text-align: center;
  }

  .cs-slider-item.slider2 {
    padding: 1.5rem 3rem;
  }

  .header-cta {
    padding: 1.5rem 2rem;
    bottom: 4%;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .works-card {
    padding: 2.5rem 2rem;
	  width:100%;
  }
}