@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;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

/* Body transition for smooth color change */
body {
  transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #ffffff; /* Default white */
}

/* Body color states */
body.color-value-pro {
  background-color: #071a57;
}

body.color-intro {
  background-color: #ffffff;
}

/* Header & Navigation */
.cs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5rem;
  background-color: var(--bg-white);
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: none;
}

.cs-header.fixed-header {
  position: fixed;
  animation: slideDown 0.3s ease-out;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0.7rem 5rem;
}

.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: 1rem;
  color: var(--dark-color);
  transition: var(--transition);
  -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 .nav-link:hover {
  font-weight: 500;
  color: var(--primary-color);
}

/* Dropdown styles */
.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid #eef0f2;
}

.nav-item.dropdown:hover .dropdown-menu {
  flex-wrap: wrap;
  gap: 0px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item.dropdown .dropdown-menu li {
  width: 100%;
  list-style: none;
}

.nav-item.dropdown .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #2d3e50;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.3s linear;
}

.nav-item.dropdown .dropdown-menu a:hover {
  background: #0056b3;
  color: #ffffff;
}

/* Mobile dropdown styles */
.mobile-nav .dropdown {
  position: relative;
}

.mobile-nav .dropdown .dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-nav .dropdown .dropdown-toggle::after {
  content: "+";
  font-size: 20px;
  margin-left: 10px;
}

.mobile-nav .dropdown.active .dropdown-toggle::after {
  content: "-";
}

.mobile-nav .dropdown .mobile-dropdown-menu {
  display: none;
  padding-left: 20px;
  background: #f5f7f9;
  margin: 5px 0;
}

.mobile-nav .dropdown.active .mobile-dropdown-menu {
  display: block;
}

.mobile-nav .dropdown .mobile-dropdown-menu li a {
  padding: 10px 15px;
  font-size: 14px;
}

li.nav-item.dropdown a {
    padding-right: 15px;
}

/* Add a dropdown indicator */
.nav-item.dropdown > .nav-link::after {
  display: block;
  position: absolute;
  width: 10px;
  height: 6px;
  content: "";
  background: transparent url("../images/down-arrow.svg") 0 0;
  background-size: 100% 100%;
  right: 0;
  top: 10px;
}

.cs-header-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-login {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: transparent;
  color: var(--primary-color);
  transition: var(--transition);
}

.btn-login span {
  font-size: 0.9rem;
  line-height: 1.2;
  text-align: right;
  color: var(--primary-color);
  -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;
}

.btn-login:hover span {
  font-weight: 500;
}

.btn-login img {
  transform: scale(1);
  -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;
}

.btn-login:hover img {
  transform: scale(1.03);
}

.btn-primary {
  padding: 0.5rem 2.5rem;
  font-size: 16px;
  color: var(--primary-color);
  border-radius: 20px;
  border: 1px solid var(--primary-color);
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

.btn-primary:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 20px;
  z-index: -2;
}

.btn-primary:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 20px;
  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: 100%;
}

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);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: var(--bg-white);
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 6rem 2rem 2rem;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.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;
}

/* 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%);
}

.cs-chatbot {
  display: block;
  position: fixed;
  bottom: 4%;
  right: 2%;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  cursor: pointer;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s linear;
}

.chatbot-svg {
  width: 100%;
  height: 100%;
}

.cs-chatbot:hover {
  transform: scale(1.05);
}

/* This requires the SVG file to have currentColor set in its paths */

.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 5rem;
}

.cs-slider-item.slider2 {
  padding: 1.5rem 5rem;
}

.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: 15rem;
  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;
}

.cs-slider-item.slider1 h2 span {
  display: block;
  color: var(--primary-color);
}

.cs-slider-item p {
  font-size: 1.25rem;
  color: var(--dark-color);
  margin-bottom: 2rem;
  width: 100%;
  max-width: 50%;
  z-index: 2;
}

.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 5rem;
  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;
}

.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;
}

/**/
.cs-container {
  display: block;
  width: 100%;
  max-width: 1690px;
  padding: 0 40px;
  margin: 0 auto;
}

.cs-container h3 {
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  color: #071a57;
  text-transform: uppercase;
}

.cs-container h2 {
  font-size: 72px;
  line-height: 72px;
  font-weight: 700;
  color: #071a57;
  margin-bottom: 30px;
}

/* Intro Section */
.intro-sec {
  display: block;
  padding: 5rem 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  /* background-color: #F2F4F7; */
}

.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-img img {
  width: 100%;
  height: auto;
  display: block;
  /* animation: imgSlideUp 1s ease-out forwards;
    animation-delay: 1s;
    animation-timeline: view();
    animation-range: entry; */
}

.intro-sec .cs-container p {
  max-width: 80%;
  opacity: 0;
  animation: textSlideIn 1s ease-out forwards;
  animation-delay: 600ms;
}

/* testimonial section */
.testimonial-sec {
  display: block;
  /* background: #071A57; */
  padding: 8rem 0;
  color: #fff;
}

.testimonial-sec h2 {
  color: #fff;
}

.testimonial-sec p {
  width: 100%;
  max-width: 40%;
}

.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: 6px;
  overflow: hidden;
}

.client-img {
  display: flex;
  padding: 0 20px;
}

.review-content {
  display: flex;
  padding: 110px 20px 20px 20px;
  flex-wrap: wrap;
}

.review-content::before {
  display: block;
  position: absolute;
  content: "";
  background: transparent url(../images/quotes.png) center center no-repeat;
  width: 70px;
  height: 70px;
  background-size: 100% 100%;
  top: 30px;
}

.review-content p {
  max-width: 90%;
  color: #404040;
}

.review-content h4 {
  width: 90%;
  font-size: 18px;
  line-height: 20px;
  color: #404040;
  font-style: italic;
}

ul.slick-dots {
  display: flex;
  margin: 15px 0 0 0;
  padding: 0;
  list-style: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

ul.slick-dots > li > button {
  display: block;
  width: 16px;
  height: 7px;
  border: none;
  text-indent: -9999px;
  border-radius: 4px;
  background: hsl(0deg 0% 100% / 50%);
}

ul.slick-dots > li.slick-active > button {
  width: 32px;
  background: #103fd5;
}

/**/
.cs-value-pro {
  display: flex;
  /* background-color: var(--secondary-color); */
  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;
}

.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(../images/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;
}

.cs-vp-inner ul li:hover::before {
  opacity: 1;
}

.cs-vp-inner ul li::after {
  display: block;
  position: absolute;
  content: "";
  background: transparent url(../images/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);
}

/**/
.cs-process-sec {
  display: block;
  padding: 7rem 0;
  text-align: center;
  background-color: #fff;
}

.cs-process-sec h2 span {
  color: #103fd5;
}

.cs-process-sec h2 {
  margin-bottom: 20px;
}

.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: 600;
  border-radius: 50%;
  z-index: 2;
}

.process-step > span::before {
  display: block;
  position: absolute;
  content: "";
  width: 95px;
  height: 95px;
  background: hsl(225.69deg 86.03% 44.9% / 40%);
  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% / 20%);
  z-index: -1;
  border-radius: 50%;
}

.process-step h4 {
  font-size: 24px;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
}

.process-step p {
  padding: 0 10px;
}

.process-step a {
  font-weight: 600;
  text-decoration: underline;
}

.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: 60%;
}

/**/
.cs-tools-sec {
  display: block;
  text-align: center;
  padding: 7rem 0 12rem 0;
}

.cs-tools-sec h2 {
  margin-bottom: 20px;
}

.tool-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tool-intro {
  text-align: left;
  padding: 5% 5% 5% 15%;
}

.tool-img {
  padding-right: 5%;
}

.tool-img img {
  width: 100%;
}

.tool-intro h4 {
  font-size: 36px;
  color: #103fd5;
}

.tool-intro p {
  width: 90%;
}

.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%;
}

/* Footer */
footer {
  display: block;
  background: #071a57 url(../images/footer_bg.svg) no-repeat left center !important;
  background-size: auto 100%;
}

.footer-container {
  display: flex;
  padding: 7rem 5rem 5rem 32rem;
  flex-wrap: wrap;
  gap: 10%;
}

.footer-bottom {
  display: block;
  width: 100%;
  background: #000e3c;
  padding: 15px;
  color: #fff;
  text-align: center;
  font-size: 14px;
}

.ft-col-1 {
  width: 40%;
}

.ft-col-1 .ft-logo {
  display: block;
  margin-bottom: 20px;
}

.ft-col-1 .ft-logo img {
  display: block;
  width: auto;
  height: 40px;
}

.ft-col-1 p {
  color: #fff;
  margin-bottom: 40px;
}

.ft-social-link {
  display: flex;
  gap: 12px;
  align-items: center;
}

.ft-social-link a img {
  transform: none !important;
}

.ft-full-col {
  width: 100%;
  margin-top: 40px;
  color: #fff;
}

.ft-full-col a {
  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: 15px;
}

.ft-col-2 ul li a,
.ft-col-3 ul li a {
  color: #fff;
}

.ft-col-3 a.btn-primary-fill {
  margin-top: 20px;
}

/**/
.page-content .cs-container {
  padding: 0 55px;
}

.banner-sec {
  display: flex;
  background: #071a57;
  padding: 3rem 0;
  align-items: center;
  min-height: 450px;
}

.banner-sec .cs-container {
  padding: 0 55px;
}

.banner-sec h2 {
  color: #fff;
  font-size: 72px;
  line-height: 75px;
  font-weight: 700;
}

.banner-sec h2 {
  color: #fff;
  margin-bottom: 1rem;
}

/* Breadcrumb styling */
.banner-sec .breadcrum ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.banner-sec .breadcrum ul li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  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.4);
}

.banner-sec .breadcrum ul li a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.banner-sec .breadcrum ul li a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.banner-sec .breadcrum ul li:last-child {
  color: #fff;
  font-weight: 500;
}

.wcs-sec {
  display: flex;
  padding: 6rem 0 5rem 0;
  justify-content: space-between;
  align-items: center;
}

.wcs-image {
  width: 40%;
}

.wcs-image img {
  width: 100%;
}

.wcs-content {
  width: 50%;
}

.wcs-content p {
  font-size: 1.2rem;
}

/* Vision & Mission Section */
.vision-mission-sec {
  padding: 7rem 0 8rem 0;
  background: #071a57;
}

.vision-mission-sec .cs-container {
  padding: 0 55px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h3 {
  color: #fff;
  font-size: 60px;
  line-height: 62px;
  font-weight: 700;
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.vision-mission-grid {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: stretch;
}

.vision-card,
.mission-card {
  flex: 1;
  background: #fff;
  padding: 4.5rem 4rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.vision-card:hover,
.mission-card:hover {
  transform: scale(1.02);
}

.vision-card h3,
.mission-card h3 {
  color: #071a57;
  font-size: 40px;
  margin-bottom: 1.5rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 0.75rem;
}

.vision-card p,
.mission-card p {
  color: #4a4a4a;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Leadership Insight Section */
.leadership-sec {
  padding: 6rem 0;
  background: #ffffff;
}

.leadership-sec .cs-container {
  padding: 0 55px;
}

.leadership-sec .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.leadership-sec .section-header h3 {
  color: #071a57;
  font-size: 50px;
  font-weight: bold;
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  text-transform: capitalize;
}

.leadership-content {
  display: flex;
  gap: 3rem;
  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: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.insight-content {
  flex: 1;
}

.insight-text {
  font-size: 1.1rem;
  line-height: 1.8;
  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: 5rem 0;
  background: #e8e8e8;
}

.team-sec .cs-container {
  padding: 0 55px;
}

.team-sec .section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.team-sec .section-header h3 {
  color: #071a57;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  text-transform: initial;
}

.team-sec .section-header p {
  font-size: 1.2rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
}

/* Team Slider */
.team-slider {
  margin: 0 -15px;
}

.team-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin: 0 15px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(7, 26, 87, 0.1);
}

.team-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h3 {
  color: #071a57;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.team-position {
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-bio {
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-social a {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.team-social a:hover {
  opacity: 0.7;
}

.team-social img {
  width: 24px;
  height: 24px;
}

/* Slick Slider Custom Styles */
.team-slider .slick-list {
  margin: 0 -15px;
}

.team-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 2rem 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.2);
  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;
  transform: scale(1.2);
}

.team-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(7, 26, 87, 0.1);
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-slider .slick-arrow:hover {
  background: #071a57;
  border-color: #071a57;
}

.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;
}

.team-slider .slick-arrow:hover:before {
  border-color: #ffffff;
}

.team-slider .slick-prev {
  left: -20px;
}

.team-slider .slick-prev:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.team-slider .slick-next {
  right: -20px;
}

.team-slider .slick-next:before {
  transform: translate(-50%, -50%) rotate(225deg);
}

/* How CompSure Works Section - Modern Style */
.how-it-works-sec {
  padding: 6rem 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: 4rem;
}

.how-it-works-sec .section-header h2 {
  color: #071a57;
  font-size: 72px;
  line-height: 27px;
  margin-bottom: 40px;
  font-weight: bold;
}

.header-subtitle {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding: 0 2rem;
}

.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 {
  flex: 1;
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(7, 26, 87, 0.05);
  border: 1px solid #0056b3;
  overflow: hidden;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/* Card hover effect */
.works-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 30px 50px rgba(31, 42, 77, 0.15);
  border: 3px solid #0056b3;
}

.works-icon {
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.works-icon img {
  width: 90px;
  height: 90px;
  padding: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 5px 10px rgba(7, 26, 87, 0.1));
}

.works-card h3 {
  color: #071a57;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.works-card p {
  color: #4a4a4a;
  font-size: 1.1rem;
  line-height: 1.7;
  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.8rem 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: 2px solid #071a57;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.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-content .testimonial-sec {
  background: #f8f8f8 !important;
  padding: 3rem 0 8rem 0;
}

.page-content .testimonial-sec h2 {
  color: #071a57;
}

.page-content .testimonial-sec p {
  color: #000;
}

.page-content .testimonial-sec .item-inner-container {
  background: #ffffff;
  box-shadow: 0 0 10px -3px #cbcbcb;
}

.page-content .testimonial-sec ul.slick-dots li button {
  background: #e7e7e7;
}

.page-content .testimonial-sec ul.slick-dots li.slick-active button {
  background: #071a57;
}

/* CTA Section with Background Image */
.cta-bg-section {
  padding: 7rem 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 26, 87, 0.95) 0%,
      rgba(7, 26, 87, 0.8) 50%,
      rgba(7, 26, 87, 0.6) 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(230, 57, 70, 0.2) 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: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-content .btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #ffffff;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  border: none;
}

.cta-content .btn-primary:hover {
  color: var(--bg-white);
}

/**/
.testimonial-grid {
  padding: 4rem 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 0 12px -7px #071a57;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.inner-ts-row .testimonial-item .item-inner-container:hover {
  transform: scale(1.02);
}

/* Page Content */
.page-content .cs-container {
  padding: 0 55px;
}

/* How We Help Section */
.hwh-section {
  padding: 5rem 0;
  background: #ffffff;
}

.hwh-section .cs-container {
  padding: 0 55px;
}

.hwh-grid {
  display: flex;
  gap: 4rem;
  align-items: center;
  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;
}

.hwh-content .hwh-intro {
  font-size: 18px;
  color: var(--secondary-color, #071a57);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  border-left: 2px solid var(--primary-color, #103fd5);
  padding: 15px;
  padding-left: 1.5rem;
  background-color: var(--light-color);
}

.hwh-content p {
  color: #4a4a4a;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--primary-color, #103fd5);
  font-weight: 600;
}

.service-list {
  margin-top: 2rem;
}

.service-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f8f8;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.service-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(7, 26, 87, 0.1);
  border-left-color: var(--primary-color, #103fd5);
}

.service-item h4 {
  color: var(--secondary-color, #071a57);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-item p {
  margin-bottom: 0;
  font-size: 1rem;
}

.hwh-image {
  flex: 0 0 40%;
  position: sticky;
  top: 100px;
}

.hwh-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(7, 26, 87, 0.15);
}

/* Control Section */
.control-section {
  padding: 6rem 0;
  background: #ffffff;
}

.control-section .cs-container {
  padding: 0 55px;
}

.control-grid {
  display: flex;
  gap: 4rem;
  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;
}

.control-content p {
  color: #4a4a4a;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.control-highlight {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--secondary-color, #071a57);
  border-left: 2px solid var(--primary-color, #103fd5);
  padding-left: 1.5rem;
  margin-top: 2rem;
  font-style: italic;
}

.control-video {
  flex: 0 0 45%;
}

.control-video video {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(7, 26, 87, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: block;
  cursor: pointer;
}

.control-video video:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(7, 26, 87, 0.25);
}

.video-caption {
  margin-top: 1rem;
  text-align: center;
}

.video-caption p {
  color: var(--secondary-color, #071a57);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.8;
  margin: 0;
}

/* Custom video controls styling (optional) */
.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: 5rem 0;
  background: #ffffff;
}

.contact-section .cs-container {
  padding: 0 55px;
}

.contact-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.contact-header h2 {
  color: var(--secondary-color, #071a57);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.contact-header h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color, #103fd5);
}

.contact-header p {
  color: #4a4a4a;
  font-size: 1.2rem;
  line-height: 1.7;
}

.contact-grid {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Form */
.contact-form-wrapper {
  flex: 1.2;
}

.contact-form {
  background: #f8f8f8;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(7, 26, 87, 0.05);
}

.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: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(7, 26, 87, 0.1);
  border-radius: 8px;
  background: #ffffff;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.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.1);
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: rgba(7, 26, 87, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--primary-color, #103fd5);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-submit:hover {
  background: transparent;
  color: var(--primary-color, #103fd5);
  border-color: var(--primary-color, #103fd5);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(16, 63, 213, 0.2);
}

/* Contact Information */
.contact-info-wrapper {
  flex: 0.8;
}

.contact-info-card {
  background: var(--secondary-color, #071a57);
  padding: 2.5rem;
  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.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.contact-info-card h3 {
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  color: #fff;
}

.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;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color, #103fd5);
}

.info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.info-text p,
.info-text a {
  color: #ffffff;
  text-decoration: none;
  line-height: 1.5;
  transition: opacity 0.3s ease;
}

.info-text a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.business-hours {
  margin: 2rem 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: 1.1rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.business-hours p {
  color: #ffffff;
  line-height: 1.6;
}

.contact-social {
  display: flex;
  gap: 1rem;
  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.3s ease;
}

.contact-social .social-icon:hover {
  background: var(--primary-color, #103fd5);
  transform: translateY(-3px);
}

.contact-social .social-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/**/
.insurance-lines-sec {
  display: block;
  background: #071a57;
  padding: 5rem 0;
  color: #fff;
}

.insurance-lines-sec .section-header h2 {
  color: #fff;
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.insurance-item {
  background: hsl(0deg 0% 100% / 7.84%);
  padding: 30px;
  margin-bottom: 20px;
  border-bottom: 2px solid #103fd5;
  box-shadow: 0 0 12px -7px #000000;
}

.insurance-item h3 {
  color: #fff;
}

.insurance-item p {
  margin-bottom: 0;
}

/*  Exra-Large devices */
@media (max-width: 1749.98px) {
  .cs-slider-item.slider1 h2 {
    font-size: 12rem;
    line-height: 9rem;
  }

  .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;
  }
}

@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;
  }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .cs-header {
    padding: 1rem 2rem;
  }

  /* Hide desktop navigation */
  .cs-navbar {
    display: none;
  }

  /* Show mobile menu button */
  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  /* Mobile menu active state for button */
  .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 */
  .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 container */
  .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 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .mobile-nav .dropdown .dropdown-toggle {
    justify-content: center;
  }

  .nav-item.dropdown > .nav-link::after {
    display: none;
  }

  .mobile-menu.active {
    right: 0;
    display: block;
  }

  /* Mobile navigation styles */
  .mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav li {
    margin-bottom: 0;
    border-bottom: 1px solid #e0e0e0;
  }

  .mobile-nav li:last-child {
    border-bottom: none;
  }

  .mobile-nav .nav-link {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-color);
    padding: 15px 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: #f4f4f4;
    padding: 0;
    margin-bottom: 20px;
  }

  .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: 16px;
    line-height: 18px;
  }

  .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: 20px;
  }

  .works-grid {
    flex-direction: column;
  }

  .works-icon {
    margin-bottom: 5px;
  }

  .works-card p {
    min-height: 10px;
  }

  .form-row {
    flex-direction: column;
  }
}

/* Medium devices (tablets, less than 992px) */
@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: #7e7e7e;
    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%;
  }
}

/* Small devices (landscape phones, less than 768px) */
@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;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@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;
  }

  .tool-img img {
    width: 80%;
    margin-bottom: 30px;
  }

  .how-it-works-sec .section-header h2 {
    font-size: 32px;
    line-height: 34px;
    margin-bottom: 10px;
  }
}
