@import url(https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;600;700;800&display=swap);
@import url('https://fonts.googleapis.com/css2?family=Sansita:ital,wght@0,400;0,700;0,800;0,900;1,400;1,700;1,800;1,900&display=swap');

/* ================================ Basic CSS =============================== */
body {
  margin: 0px;
  padding: 0px;
  font-family: 'Raleway', sans-serif;
  box-sizing: border-box;
  text-align: left !important;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

p {
  margin: 0px;
}

a:hover {
  text-decoration: none;
}

button:focus {
  outline: none;
}

.container {
  max-width: 1170px;
}

@media screen and (max-width: 575px) {
  .container {
    padding: 0px 15px;
    max-width: 100%;
    width: 100%;
  }
}

/* ================================ Header CSS =============================== */
header .my-nav {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  padding: 10px 0px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #002db3;
  height: 7rem;
}

header .sub-01 {
  position: relative;
  background: #002db3;
}

.my-ba img {
  height: 30rem;
  width: 35rem;
  /* border: 1px solid #000; */
  /* margin-top: 2.5rem; */
  border-radius: 40%;
  margin-left: 7rem;
  /* margin-bottom: 20rem; */
  /* box-shadow: #FF8729 0px 3px 8px; */
  position: relative;
  bottom: 3rem;
}

header .nav-items {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%;
  position: relative;
}

header .nav-items .menu-toggle {
  position: absolute;
  top: 1.5625rem;
  right: 0.9375rem;
  transition: ease-in-out 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
}

@media screen and (max-width: 767.98px) {
  header .nav-items .menu-toggle {
    visibility: visible;
    opacity: 1;
  }
}

header .nav-items .menu-toggle .menu-hamburger {
  width: 1.875rem;
  height: 0.125rem;
  transition: ease-in-out 0.1s;
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.6);
  background: #fff;
  position: relative;
}

header .nav-items .menu-toggle .menu-hamburger.active {
  background: rgba(0, 0, 0, 0);
  box-shadow: none;
}

header .nav-items .menu-toggle .menu-hamburger.active::after {
  transform: rotate(45deg);
}

header .nav-items .menu-toggle .menu-hamburger.active::before {
  transform: rotate(135deg);
}

header .nav-items .menu-toggle .menu-hamburger::before {
  position: absolute;
  content: "";
  width: 1.875rem;
  height: 0.125rem;
  transition: ease-in-out 0.1s;
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.6);
  background: #fff;
  transform: translatey(-0.625rem);
}

header .nav-items .menu-toggle .menu-hamburger::after {
  position: absolute;
  content: "";
  width: 1.875rem;
  height: 0.125rem;
  transition: ease-in-out 0.1s;
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.6);
  background: #fff;
  transform: translatey(0.625rem);
}

header .nav-items .logo {
  width: 30%;
  flex: 1 1 30%;
  max-width: 30%;
}

@media screen and (max-width: 767.98px) {
  header .nav-items .logo {
    width: 80%;
    flex: 1 1 80%;
    max-width: 80%;
  }
}

header .nav-items .menu-items {
  width: 70%;
  flex: 1 1 70%;
  max-width: 70%;
  position: relative;
  align-items: center;
  justify-content: center;
  /* border: 2px solid #000; */
  margin-top: 1.3rem;
}

@media screen and (max-width: 767.98px) {
  header .nav-items .menu-items {
    width: 100%;
    flex: 1 1 100%;
    max-width: 100%;
  }
}

header .nav-items .menu-items .menu {
  display: block;
  align-items: center;
  width: 100%;
  text-align: right;
  /* border: 1px solid #000; */
}

header .nav-items .menu-items .menu.active {
  opacity: 1;
  visibility: visible;
  display: block;
  transition: ease-in-out 0.9s;
}

@media screen and (max-width: 767.98px) {
  header .nav-items .menu-items .menu {
    text-align: left;
    opacity: 0;
    visibility: hidden;
    display: none;

  }

  .header-menu-items .header-menu ul a {
    text-align: left !important;
  }
}

header .nav-items .menu-items .menu ul li {
  display: inline-block;
  padding: 0.625rem;
}

@media screen and (max-width: 767.98px) {
  header .nav-items .menu-items .menu ul li {
    display: block;
  }
}

header .nav-items .menu-items .menu ul li a {
  color: black;
  padding: 0 1.25rem;
  font-weight: 700;
  /* border: 1px solid #000; */
}

@media screen and (max-width: 767.98px) {
  header .nav-items .menu-items .menu ul li a {
    padding: 0rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  header .nav-items .menu-items .menu ul li a {
    padding: 0 0.625rem;
  }
}

.og-hf {
  position: fixed;
  transition: ease-in-out 0.5s;
  width: 100%;
  z-index: 999;
  left: 0;
  top: 0;
}

.og-hf .my-nav {
  background: white;
}

/* ================================ Slider CSS =============================== */
.slider {
  position: relative;
  padding: 9.5rem 0;
  overflow: hidden;
  background: linear-gradient(to right, #002db3, #0033CC);
  z-index: 1;
}

.slider::before {
  border-right: 50vw solid #fff;
  border-top: 6.25rem solid transparent;
  bottom: 0;
  content: "";
  height: 0;
  position: absolute;
  right: 0;
  width: 0;
  z-index: 1;
}

.slider::after {
  border-left: 50vw solid #fff;
  border-top: 6.25rem solid transparent;
  bottom: 0;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  width: 0;
  z-index: 1;
}

.slider .shap {
  position: absolute;
  background-image: linear-gradient(35deg, #fff, #edf4f8);
  width: 45%;
  height: 85%;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  z-index: 1;
  opacity: 0.1;
}

.slider .shap-01 {
  position: absolute;
  top: 10rem;
  left: 50%;
  opacity: 0.1;
  -webkit-animation-name: rotateMe;
  animation-name: rotateMe;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.slider .shap-02 {
  position: absolute;
  left: 6%;
  transform: rotate(54deg);
  z-index: 1;
  opacity: 0.1;
}

.slider .shape-03 {
  position: absolute;
  z-index: 0;
  left: 60%;
  top: -5%;
  width: 31.25rem;
  height: 100%;
  transform: translate3d(-23%, 17%, 0) rotate(-54deg);
  background-image: linear-gradient(35deg, #fff, #edf4f8);
  opacity: 0.1;
}

.slider .shape-03::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2.5rem;
  background: #fff;
  left: 0px;
  top: -246px;
  z-index: -1;
  border-radius: 1.25rem;
  transform: rotate(79deg);
}

.slider .shape-03::after {
  position: absolute;
  content: "";
  width: 31.25rem;
  height: 31.25rem;
  background: #ffff;
  border-radius: 50%;
  right: -36.125rem;
  top: 9.5625rem;
}

.slider .main-wrapper {
  display: flex;
  -webkit-display: flex;
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
  margin: 1.25rem 0;
  position: relative;
  z-index: 2;
}

.slider .main-wrapper .sub-wrapper-01 {
  flex: 1 1 50%;
  max-width: 50%;
  width: 50%;
}

@media screen and (max-width: 767.98px) {
  .slider .main-wrapper .sub-wrapper-01 {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    padding: 1rem;
  }
}

.slider .main-wrapper .sub-wrapper-01 .image {
  padding: 0.375rem 0.9375rem;
  display: inline-block;
  position: relative;
  z-index: 9;
}

.slider .main-wrapper .sub-wrapper-01 .content {
  padding: 4.625rem 0.9375rem;
  color: #fff;
  display: inline-block;
  position: relative;
  z-index: 9;
}

.slider .main-wrapper .sub-wrapper-01 .content h1 {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 3.75rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  position: relative;
}

.slider .main-wrapper .sub-wrapper-01 .content h1::before {
  position: absolute;
  content: "";
  background-image: radial-gradient(#fafafa 3px, transparent 0);
  background-size: 0.9375rem 0.9375rem;
  height: 9.375rem;
  width: 9.375rem;
  opacity: 0.2;
  right: 7.5rem;
}

.slider .main-wrapper .sub-wrapper-01 .content p {
  font-size: 1.125rem;
  line-height: 1.875rem;
  font-weight: 400;
  margin: 0 0 1.125rem;
  display: inline-block;
}

.slider .main-wrapper .sub-wrapper-01 .content .btn-01 {
  display: block;
  margin: 1.125rem 0;
  position: relative;
}

.slider .main-wrapper .sub-wrapper-01 .content .btn-01 ul li {
  display: inline-block;
  margin: 0 0.625rem;
  padding: 0.3125rem 1.25rem;
  border-radius: 1.25rem;
  background: transparent;
  border: solid 0.0625rem #fff;
  position: relative;
  z-index: 9;
}

.slider .main-wrapper .sub-wrapper-01 .content .btn-01 ul li:nth-of-type(1) {
  margin-left: 0;
}

.slider .main-wrapper .sub-wrapper-01 .content .btn-01 ul li a {
  color: #fff;
}

@keyframes rotateMe {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(1turn);
  }
}

/* ================================ Section CSS =============================== */
.bg-se-01 {
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
}

.bg-se-01::before {
  position: absolute;
  content: "";
  background: #e8f6ff;
  height: 43.75rem;
  width: 43.75rem;
  left: -10%;
  bottom: -10%;
  transform: translate3d(-21%, -7%, 0) rotate(-54deg);
}

@media screen and (max-width: 767.98px) {
  .bg-se-01::before {
    height: 33.75rem;
    width: 33.75rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .bg-se-01::before {
    top: 0;
    left: -38%;
  }
}

.bg-se-01 .main-card {
  position: relative;
  display: inline-block;
  margin: 1.875rem 0;
}

.bg-se-01 .content {
  position: relative;
  display: block;
  width: 100%;
  /* padding: 1rem 1.25rem; */
}

.bg-se-01 .content ol li {
  display: inline-block;
  padding: 0 0 0 4.375rem;
  margin: 1.25rem 0;
  z-index: 3;
  position: relative;
}

.bg-se-01 .content ol li:nth-child(4)::after {
  display: none;
}

.bg-se-01 .content ol li:nth-child(4)::before {
  content: "\f5ea";
}

.bg-se-01 .content ol li:nth-child(2)::before {
  content: "\f155";
}

.bg-se-01 .content ol li:nth-child(3)::before {
  content: "\f073";
}

.bg-se-01 .content ol li::before {
  position: absolute;
  content: "\f19c";
  font-family: "Font Awesome 5 Pro";
  font-size: 1.25rem;
  width: 3.125rem;
  height: 3.125rem;
  background: #002db3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0.0625rem 0.375rem #dfe7ff;
}

.bg-se-01 .content ol li::after {
  position: absolute;
  content: "";
  width: 0.1875rem;
  height: 100%;
  top: 2.5rem;
  left: 1.5625rem;
  background: #dfe7ff;
  z-index: 1;
}

.bg-se-01 .content ol li h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  text-transform: capitalize;
  margin: 0 0 0.625rem 0;
}

.bg-se-01 .content ol li p {
  font-size: 1rem;
  color: #848484;
  line-height: 1.5rem;
  display: inline-block;
  margin: 0 0 0.625rem 0;
  font-weight: 400;
}

.heading {
  position: relative;
  margin: 1.25rem 0;
  display: block;
  /* padding: 0 0.9375rem; */
}

.heading h2 {
  font-size: 1.5625rem;
  position: relative;
  padding: 0 0 0 1.25rem;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  font-weight: 800;
  color: #333333;
}

.heading h2::before {
  position: absolute;
  content: "";
  width: 5%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: #002db3;
}

.bg-se-02 {
  padding: 3.125rem 0;
  position: relative;
  background: #f8faff;
  overflow: hidden;
}

.bg-se-02 .main-wrapper {
  position: relative;
  border: solid 0.0625rem #002db3;
  padding: 0.625rem 0;
  background: #fff;
  margin: 1.25rem 0;
  border-radius: 1rem;
}

.bg-se-02 .main-wrapper .content {
  padding: 0.625rem 1.25rem;
  position: relative;
}

.bg-se-02 .main-wrapper .content .icon {
  height: 3.75rem;
  width: 3.75rem;
  line-height: 3.75rem;
  background: #f8faff;
  margin: 0 auto;
  border-radius: 0.1875rem;
  color: #002db3;
  font-size: 1.875rem;
  border-radius: 50%;
}

.bg-se-02 .main-wrapper .content .sentence {
  position: relative;
  margin: 1.25rem 0 0;
  display: inline-block;
}

.bg-se-02 .main-wrapper .content .sentence h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.bg-se-02 .main-wrapper .content .sentence p {
  font-size: 1rem;
  color: #656565;
  line-height: 1.5625rem;
}

.bg-se-03 {
  padding: 3.125rem 0;
  position: relative;
  overflow: hidden;
}

.bg-se-03 .wrapper {
  margin: 1.25rem 0;
  position: relative;
}

.bg-se-03 .wrapper .owl-nav {
  position: relative;
  display: inline-block;
  width: 100%;
}

.bg-se-03 .wrapper .owl-nav .owl-prev {
  position: absolute;
  height: 2.5rem;
  width: 2.5rem;
  background: #002db3;
  line-height: 2.1875rem;
  left: 45%;
  border-radius: 0.3125rem;
}

@media screen and (max-width: 575.98px) {
  .bg-se-03 .wrapper .owl-nav .owl-prev {
    left: 35%;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .bg-se-03 .wrapper .owl-nav .owl-prev {
    left: 40%;
  }
}

.bg-se-03 .wrapper .owl-nav .owl-prev span {
  font-size: 2.5rem;
  color: #fff;
  position: relative;
  display: inline-block;
}

.bg-se-03 .wrapper .owl-nav .owl-next {
  position: absolute;
  height: 2.5rem;
  width: 2.5rem;
  background: #002db3;
  text-align: center;
  line-height: 2.1875rem;
  left: 50%;
  border-radius: 0.3125rem;
}

.bg-se-03 .wrapper .owl-nav .owl-next span {
  font-size: 2.5rem;
  color: #fff;
  position: relative;
  display: inline-block;
}

.bg-se-03 .wrapper .item .my-items {
  padding: 0.625rem 1.25rem;
  position: relative;
  display: block;
}

.bg-se-03 .wrapper .item .my-items .content .image-01 {
  display: block;
  width: 100%;
}

.bg-se-03 .wrapper .item .my-items .content .sentence {
  padding: 0.625rem 0;
  text-align: center;
  display: inline-block;
  border: 0.0625rem solid #dddd;
  border-top: 0rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.bg-se-03 .wrapper .item .my-items .content .sentence b {
  font-size: 1.25rem;
  display: inline-block;
  margin: 0 0 0.625rem;
  color: #002db3;
}

.bg-se-03 .wrapper .item .my-items .content .sentence p {
  font-size: 0.9375rem;
  margin: 0 0 0.625rem;
  color: #444444;
}

.bg-se-03 .wrapper .item .my-items .content .sentence ol li {
  display: inline-block;
  font-size: 0.75rem;
  color: #002db3;
  padding: 0 0.625rem 0 0;
  border-right: 0.0625rem solid #dddd;
  margin-bottom: 0.625rem;
}

.bg-se-03 .wrapper .item .my-items .content .sentence ol li:nth-child(3) {
  border: 0;
}

.bg-se-04 {
  padding: 3.125rem 0;
  background-image: url(../images/background/1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 9;
}

.bg-se-04::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 45, 179, 0.9);
  z-index: 1;
}

.bg-se-04 ._lk_bg_cd {
  padding: 1.25rem 1.5625rem;
  position: relative;
  display: block;
  z-index: 8;
  text-align: center;
}

.bg-se-04 ._lk_bg_cd i {
  font-size: 1.5625rem;
  color: #002db3;
  background: #fff;
  height: 3.75rem;
  width: 3.75rem;
  line-height: 3.75rem;
  border-radius: 50%;
  display: block;
  margin: 0 auto 1.25rem;
  font-weight: bold;
}

.bg-se-04 ._lk_bg_cd .counting {
  display: block;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 800;
}

.bg-se-04 ._lk_bg_cd h5 {
  font-size: 1.125rem;
  color: #fff;
  padding: 0.625rem 0;
  display: inline-block;
}

.bg-se-05 {
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
}

.bg-se-05 ._lk_bg_sd_we {
  position: relative;
  overflow: hidden;
  margin: 1.25rem 0;
  box-shadow: 0px 0px 15px 0px #ddd;
  border-radius: 1rem;
}

.bg-se-05 ._lk_bg_sd_we ._xs_we_er {
  display: inline-block;
  width: 100%;
  padding: 0.9375rem;
}

.bg-se-05 ._lk_bg_sd_we ._xs_we_er ._he_w {
  position: relative;
  margin: 0.625rem 0;
  z-index: 2;
  overflow: hidden;
}

.bg-se-05 ._lk_bg_sd_we ._xs_we_er ._he_w p {
  font-size: 1rem;
  color: #5c5c5c;
  letter-spacing: 0.5px;
  line-height: 1.5rem;
  margin: 0.9375rem 0 0.625rem 0;
}

.bg-se-05 ._lk_bg_sd_we ._xs_we_er ._he_w ol li {
  color: #002db3;
  font-size: 0.875rem;
  display: inline-block;
  width: 100%;
  margin: 0.3125rem 0 0;
}

.bg-se-05 ._lk_bg_sd_we ._xs_we_er ._he_w ol li ._mn_cd_xs {
  margin: 0 0.625rem;
}

.bg-se-05 ._lk_bg_sd_we ._xs_we_er ._he_w ol li span {
  color: #5c5c5c;
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 0 0.3125rem 0 0;
}

.bg-se-05 ._lk_bg_sd_we ._xs_we_er ._he_w h3 {
  font-size: 1.125rem;
  font-weight: 400;
  color: #292929;
}

.bg-se-05 ._lk_bg_sd_we ._bv_xs_we {
  position: relative;
  z-index: 1;
}

.bg-se-05 ._lk_bg_sd_we ._bv_xs_we:hover::before {
  opacity: 0.8;
  height: 100%;
  visibility: visible;
  transition: 0.5s;
}

.bg-se-05 ._lk_bg_sd_we ._bv_xs_we::before {
  content: "";
  position: absolute;
  height: 0;
  width: 100%;
  top: 0;
  background: #002db3;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.bg-se-06 {
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
  background: #fafafa;
}

.bg-se-06 .team-card {
  position: relative;
  display: block;
  margin: 1.25rem 0;
  /* border: 1px solid #000; */
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  border-radius: 1rem;
}

.bg-se-06 .team-card .image-team {
  display: inline-block;
}

.bg-se-06 .team-card .team-content {
  display: block;
  text-align: center;
  /* border: solid #002db3 0.0625rem; */
  border-top: 0rem;
  background: #fff;
  border-radius: 20px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.bg-se-06 .team-card .team-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #002db3;
  padding: 0.625rem 0 0.3125rem 0;
}

.bg-se-06 .team-card .team-content p {
  display: block;
  font-size: 0.9375rem;
  color: #848484;
  padding: 0 0 0.625rem 0;
}

.bg-se-06 .team-card .team-content ol li {
  display: inline-block;
  height: 1.875rem;
  width: 1.875rem;
  line-height: 1.875rem;
  text-align: center;
  background: #002db3;
  color: #fff;
  transition: ease-in-out 0.5s;
  padding: 0 0.3125rem;
  position: relative;
}

.bg-se-06 .team-card .team-content ol li:hover {
  background: #002db3;
}

.abt-01 {
  padding: 3.125rem 0;
  background: #002db3;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.abt-01::before {
  position: absolute;
  content: "";
  background: #fff;
  height: 9.375rem;
  width: 9.375rem;
  top: 0%;
  left: 48%;
  z-index: 1;
  opacity: 0.1;
  transform: translate3d(-23%, 17%, 0) rotate(-54deg);
  display: none;
}

@media screen and (max-width: 767px) {
  .abt-01::before {
    display: none;
  }
}

.abt-01 .heading-wrapper {
  position: relative;
  margin: 1.25rem 0;
  display: block;
  text-align: center;
  z-index: 8;
}

.abt-01 .heading-wrapper h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
}

.abt-01 .heading-wrapper ol li {
  display: inline-block;
  font-size: 1rem;
  color: #ddd;
}

.abt-01 .heading-wrapper ol li:nth-child(2) {
  color: #fff;
}

.abt-01 .heading-wrapper ol li i {
  margin: 0 0.625rem;
  color: #ddd;
}

.abt-02 {
  padding: 3.125rem 0;
  position: relative;
  background: #fafafa;
  overflow: hidden;
}

.abt-02 .abt-main {
  flex-wrap: wrap;
  flex: 1 1 100%;
  padding: 10px 15px;
  margin: 30px 0px;
}

.abt-02 .abt-main .abt-spirit {
  width: 50%;
  max-width: 50%;
  flex: 1 1 50%;
  position: relative;
  padding: 10px 15px;
  border: 1px solid #000;
}

@media (max-width: 575.98px) {
  .abt-02 .abt-main .abt-spirit {
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
  }
}

.abt-02 .abt-main .abt-spirit .abt-content-card {
  margin: 10px 0px;
  position: relative;
}

.abt-02 .abt-main .abt-spirit .abt-content-card span {
  display: block;
  margin: 20px 0px;
}

.abt-02 .abt-main .abt-spirit .abt-content-card span a {
  padding: 6px 14px;
  border: 1px solid #fff;
  background: #002db3;
  color: #fff;
  font-size: 15px;
}

.abt-02 .abt-main .abt-spirit .abt-content-card h2 {
  font-size: 25px;
  margin: 0 0 10px 0;
}

.abt-02 .abt-main .abt-spirit .abt-content-card p {
  font-size: 16px;
  line-height: 27px;
  color: #6a6a6a;
  letter-spacing: 0.5px;
}

.abt-02 .abt-main .abt-spirit .image-box {
  position: relative;
  z-index: 1;
}

.abt-02 .abt-main .abt-spirit .image-box::before {
  content: "";
  position: absolute;
  background: #002db3;
  width: 100%;
  height: 100%;
  left: -10px;
  top: -10px;
  z-index: -1;
}

.bg-0-b {
  padding: 50px 0px;
  position: relative;
  background: #e8f0f5;
  z-index: 2;
}

.bg-0-b .main-card-contact {
  flex-wrap: wrap;
  width: 100%;
  margin: 20px 0px;
  padding: 10px 15px;
  position: relative;
  z-index: 9;
}

.bg-0-b .main-card-contact .sup-card-contact {
  width: 40%;
  max-width: 40%;
  flex: 1 1 40%;
}

@media screen and (max-width: 767.98px) {
  .bg-0-b .main-card-contact .sup-card-contact {
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
  }
}

.bg-0-b .main-card-contact .sup-card-contact .contact-title {
  position: relative;
}

.bg-0-b .main-card-contact .sup-card-contact .contact-title h2 {
  font-size: 20px;
  margin: 0 0 10px 0;
  color: #222;
  padding-bottom: 5px;
  position: relative;
  display: inline-block;
}

.bg-0-b .main-card-contact .sup-card-contact .contact-title h2::before {
  position: absolute;
  content: "";
  background: #002db3;
  width: 100%;
  height: 3px;
  bottom: 0;
}

.bg-0-b .main-card-contact .sup-card-contact .contact-title ol li {
  display: block;
  padding: 10px 0px;
  color: #606060;
  font-size: 16px;
  font-weight: 600;
}

.bg-0-b .main-card-contact .sup-card-contact .contact-title ol li i {
  color: #002db3;
  padding-right: 15px;
}

.bg-0-b .main-card-contact .sup-card-contact .head-content {
  position: relative;
  display: block;
}

.bg-0-b .main-card-contact .sup-card-contact .head-content h2 {
  font-size: 20px;
  margin: 0 0 10px 0;
  color: #222;
  padding-bottom: 5px;
  position: relative;
  display: inline-block;
}

.bg-0-b .main-card-contact .sup-card-contact .head-content h2::before {
  position: absolute;
  content: "";
  background: #002db3;
  width: 100%;
  height: 3px;
  bottom: 0;
}

.bg-0-b .main-card-contact .sup-card-contact .head-content p {
  font-size: 16px;
  line-height: 27px;
  display: block;
  padding: 20px 0px;
  margin: 0px;
}

.bg-0-b .main-card-contact .sup-card-contact-0a {
  width: 60%;
  max-width: 60%;
  flex: 1 1 60%;
}

@media screen and (max-width: 767.98px) {
  .bg-0-b .main-card-contact .sup-card-contact-0a {
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
  }
}

.bg-0-b .main-card-contact .sup-card-contact-0a .dived {
  width: 100%;
  flex-wrap: wrap;
}

.bg-0-b .main-card-contact .sup-card-contact-0a .dived .ca-ool {
  padding: 0px 10px;
}

.bg-0-b .main-card-contact .sup-card-contact-0a .dived .form-group {
  width: 50%;
  max-width: 50%;
  flex: 1 1 50%;
}

.bg-0-b .main-card-contact .sup-card-contact-0a .dived .form-group .form-sup {
  margin: 10px;
  position: relative;
}

.bg-0-b .main-card-contact .sup-card-contact-0a .dived .form-group .form-sup .cal-01 {
  position: relative;
}

.bg-0-b .main-card-contact .sup-card-contact-0a .dived .form-group .form-sup i {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 45px;
  width: 45px;
  background: #002db3;
  text-align: center;
  line-height: 45px;
  color: #fff;
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}

.bg-0-b .main-card-contact .sup-card-contact-0a .dived .form-group .form-sup label {
  font-size: 15px;
  color: #6e6e6e;
}

.bg-0-b .main-card-contact .sup-card-contact-0a .dived .form-group .form-sup label span {
  position: relative;
  top: 4px;
  left: 5px;
  color: #002db3;
}

.bg-0-b .main-card-contact .sup-card-contact-0a .dived .form-group .form-control {
  padding: 10px 15px;
  margin: 30px 0px;
  height: 45px;
  position: relative;
}

/* ================================ Footer CSS =============================== */
footer {
  /* padding: 3.125rem 0; */
  position: relative;
  overflow: hidden;
  background: #163FB9;
}

footer ._kl_de_w {
  margin: 1.25rem 0;
  padding: 0.625rem 0;
  color: #fff;
  position: relative;
}

footer ._kl_de_w .form-group a {
  text-align: left;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.25rem;
  background: #fff;
  color: #002db3;
  font-size: 0.9375rem;
  display: inline-block;
}

footer ._kl_de_w ol .last {
  border-bottom: 0.0625rem solid #92929292;
}

footer ._kl_de_w ol li {
  display: block;
  margin: 0 1.5625rem 0 0;
  padding: 0.625rem 0;
  border-top: 0.0625rem solid #92929292;
  color: #ddd;
  font-size: 0.9375rem;
}

@media screen and (max-width: 768px) {
  .header-menu-items.active {
    display: flow-root !important;
  }

  .header-dropdown-container:hover .header-dropdown-trigger::after {
    top: 22% !important;
  }

  .header-dropdown-container.active .header-dropdown-trigger::after {
    transform: translateY(-4%) rotate(0deg) !important;
  }

  .header-menu ul li>a:hover {
    background: none !important;
    color: #000 !important;
  }

  footer ._kl_de_w ol li {
    margin: 0rem;
  }
}

footer ._kl_de_w ol li i {
  margin-right: 0.75rem;
}

footer ._kl_de_w p {
  font-size: 0.9375rem;
  line-height: 1.625rem;
  color: #ddd;
}

footer ._kl_de_w h3 {
  font-size: 1.25rem;
  margin: 0 0 1.25rem 0;
}

.end-footer {
  padding: 0.625rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.end-footer .last-card {
  /* display: block; */
  width: 100%;
  color: #0456af;
  text-align: center;
}

.end-footer .last-card p {
  font-size: 1rem;
  font-weight: normal;
  /* display: inline-block; */
  /* padding: 0.625rem 0; */
  text-align: left !important;
}

.end-footer .last-card p a {
  color: #002db3;
  /* font-size: 1rem; */
  /* font-weight: 700; */
  margin: 0 0 0 0.625rem;
}

/*# sourceMappingURL=style.css.map */



/* header css */
/* ================================ HEADER-RESET =============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================================ HEADER-MY-NAV =============================== */
header .header-my-nav {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  padding: 15px 0;
  /* background: rgba(255, 255, 255, 0.95); */
  /* backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); */
  transition: all 0.3s ease;
  /* border: 1px solid #000; */
}

/* ================================ HEADER-CONTAINER =============================== */
.header-container {
  max-width: 1400px;
  /* Increased width for better desktop display */
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================ HEADER-NAV-ITEMS =============================== */
.header-nav-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: nowrap;
  /* Prevent wrapping */
  /* border: 1px solid #000; */
}

/* ================================ HEADER-LOGO =============================== */
.header-logo {
  flex: 0 0 auto;
  min-width: 70px;
  /* Minimum width for logo */
}

.header-logo img {
  height: 50px;
  width: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.header-logo img:hover {
  transform: scale(1.05);
}

/* ================================ HEADER-MENU-ITEMS =============================== */
.header-menu-items {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  overflow: visible;
  /* Allow dropdown to overflow */
}

/* ================================ HEADER-MENU =============================== */
.header-menu ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  /* border: 1px solid #000; */
}

.header-menu ul li {
  position: relative;
  /* border: 1px solid #000; */
  flex-shrink: 0;
  /* border: 1px solid #000; */
}

.header-menu ul li>a {
  color: #000000;
  text-decoration: none;
  padding: 12px 16px;
  /* Slightly reduced padding */
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
  white-space: nowrap;
  /* Prevent text wrapping */
  font-size: 14px;
  /* Consistent font size */
}

.knowledge-bank-ul li>a {
  color: #333;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  font-size: 14px;
  padding: 1px 5px !important;
  font-weight: 00
}

.header-menu ul li>a:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

/* Dropdown Trigger */
.header-dropdown-trigger {
  /* background: linear-gradient(135deg, #FF8729, #ff6b1a); */
  /* color: black !important; */
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  /* border: 1px solid #000; */
  margin-left: 1rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.header-dropdown-trigger::after {
  content: '▼';
  margin-left: 8px;
  font-size: 10px;
}

.header-dropdown-container:hover .header-dropdown-trigger::after {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.header-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 200px;
  max-width: 250px;
  z-index: 1000;
  /* border: 1px solid #000; */
}

.header-dropdown-container:hover .header-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Submenu */
.header-has-submenu {
  position: relative;
}

.header-has-submenu>a .header-arrow {
  float: right;
  font-size: 10px;
}

.header-submenu {
  position: absolute;
  right: 100%;
  top: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  min-width: 200px;
  max-width: 250px;
  z-index: 1001;
}

.header-has-submenu:hover>.header-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header-has-submenu:hover>a .header-arrow {
  transform: rotate(90deg);
}

/* Submenu Links */
.header-dropdown-menu ul,
.header-submenu ul {
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-dropdown-menu ul li,
.header-submenu ul li {
  width: 100%;
  position: relative;
}

.header-dropdown-menu ul li a,
.header-submenu ul li a {
  color: #333;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-dropdown-menu ul li:hover>a,
.header-submenu ul li:hover>a {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white !important;
}


/* ================================ HEADER-HAS-SUBMENU =============================== */
.header-has-submenu {
  position: relative;
}

.header-has-submenu>a {
  position: relative;
}

.header-has-submenu>a .header-arrow {
  float: right;
  font-size: 10px;
  transition: transform 0.3s ease;
}

/* ================================ HEADER-SUBMENU =============================== */
.header-submenu {
  position: absolute;
  right: 100%;
  top: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  min-width: 200px;
  /* Increased minimum width */
  max-width: 250px;
  /* Maximum width to prevent overflow */
  border: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1001;
  height: max-content;
}

.header-has-submenu:hover>.header-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header-has-submenu:hover>a .header-arrow {
  transform: rotate(90deg);
}

/* ================================ HEADER-SUBMENU-UL =============================== */
.header-submenu ul li a {
  /* padding: 10px 15px !important; */
  font-weight: normal !important;
  color: #555 !important;
  text-transform: none !important;
  font-size: 12px !important;
  /* letter-spacing: normal !important; */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-submenu ul li:hover>a {
  background: #f8f9fa !important;
  color: #FF8729 !important;
  /* padding-left: 20px !important; */
}

/* ================================ HEADER-NESTED-SUBMENU =============================== */
.header-submenu .header-has-submenu>.header-submenu {
  right: 100%;
  top: 0;
}

/* ================================ HEADER-MENU-TOGGLE =============================== */
.header-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  /* padding: 8px; */
  background: transparent;
  border: none;
  z-index: 1001;
}

/* ================================ HEADER-MENU-HAMBURGER =============================== */



.header-menu-hamburger {
  position: relative;
  display: block;
}

.header-menu-hamburger::before,
.header-menu-hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.header-menu-hamburger::before {
  top: -8px;
}

.header-menu-hamburger::after {
  top: 8px;
}

.header-menu-hamburger.active {
  background: transparent;
}

.header-menu-hamburger.active::before {
  transform: rotate(45deg);
  top: 0;
}

.header-menu-hamburger.active::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ================================ RESPONSIVE FIXES =============================== */
/* Large Desktop */
@media (min-width: 1440px) {
  .header-container {
    max-width: 1600px;
  }

  .header-menu ul {
    /* gap: 12px; */
  }

  .header-menu ul li>a {
    /* padding: 12px 20px; */
  }
}

/* Standard Desktop */
@media (min-width: 1024px) and (max-width: 1439px) {
  .header-container {
    max-width: 1200px;
  }

  .header-menu ul {
    /* gap: 8px; */
  }

  .header-menu ul li>a {
    /* padding: 12px 16px; */
    font-size: 14px;
  }
}

/* Small Desktop/Large Tablet */
@media (min-width: 769px) and (max-width: 1023px) {
  .header-container {
    max-width: 100%;
    /* padding: 0 15px; */
  }

  .header-menu ul {
    /* gap: 6px; */
  }

  .header-menu ul li>a {
    padding: 10px 12px;
    font-size: 13px;
  }

  .header-dropdown-trigger {
    padding: 10px 16px !important;
    font-size: 13px;
  }

  .header-dropdown-menu {
    min-width: 280px;
    max-width: 350px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .header-menu-toggle {
    display: flex;
  }

  .header-menu-items {
    display: none;
  }

  .header-menu-items.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 20px;
  }

  .header-menu ul {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .header-menu ul li {
    width: 100%;
  }

  .header-menu ul li>a {
    padding: 15px 20px;
    text-align: center;
  }

  .header-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin-top: 10px;
  }

  .header-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    margin-left: 20px;
  }
}

/* ================================ HEADER-CONTENT =============================== */
.header-content {
  margin-top: 100px;
  padding: 40px 20px;
  text-align: center;
  color: white;
}

.header-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

/* ================================ MOBILE RESPONSIVE STYLES =============================== */
@media screen and (max-width: 768px) {
  .header-menu-toggle {
    display: flex;
  }

  .header-logo img {
    height: 40px;
  }

  .header-menu-items {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.4s ease;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    z-index: 998;
  }

  .header-menu-items.active {
    left: 0;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .header-menu {
    height: 100%;
    overflow-y: auto;
  }

  .header-menu ul {
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
    height: auto;
  }

  .header-menu ul li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .header-menu ul li>a {
    padding: 15px 20px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
  }

  /* Mobile Dropdown Styles */
  .header-dropdown-container {
    position: relative;
    width: 100%;
  }

  .header-dropdown-trigger {
    background: linear-gradient(135deg, #FF8729, #ff6b1a);
    border-radius: 0;
    width: 100%;
    text-align: left;
    margin: 0;
    position: relative;
  }

  .header-dropdown-trigger::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
  }

  .header-dropdown-container.active .header-dropdown-trigger::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
  }

  .header-dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.03);
    margin: 0;
    padding: 0;
    min-width: auto;
    border-radius: 0;
    border: none;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .header-dropdown-container.active .header-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
    padding: 10px 0;
  }

  .header-dropdown-menu ul li a {
    padding: 12px 30px !important;
    font-size: 14px !important;
    color: #555 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  /* Mobile Submenu Styles */
  .header-has-submenu>a {
    position: relative;
  }

  .header-has-submenu>a::after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.3s ease;
  }

  .header-has-submenu.active>a::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
  }

  .header-submenu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.05);
    margin: 0;
    border-radius: 0;
    border: none;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .header-has-submenu.active>.header-submenu {
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
    padding: 5px 0;
  }

  .header-submenu ul li a {
    padding: 10px 50px !important;
    font-size: 13px !important;
    color: #666 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  }

  /* Nested Submenu for Mobile */
  .header-submenu .header-has-submenu>a::after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
  }

  .header-submenu .header-has-submenu.active>a::after {
    content: '−';
  }

  .header-submenu .header-has-submenu>.header-submenu {
    background: rgba(0, 0, 0, 0.08);
  }

  .header-submenu .header-has-submenu>.header-submenu ul li a {
    padding: 8px 70px !important;
    font-size: 12px !important;
    color: #777 !important;
  }

  .header-content h1 {
    font-size: 2rem;
  }

  .header-container {
    padding: 0 15px;
  }
}

/* ================================ VERY SMALL MOBILE =============================== */
@media screen and (max-width: 480px) {
  .header-container {
    padding: 0 10px;
  }

  .header-logo img {
    height: 35px;
  }

  .header-content h1 {
    font-size: 1.5rem;
  }

  .header-content p {
    font-size: 1rem;
  }

  .header-menu ul li>a {
    padding: 12px 15px;
    font-size: 14px;
  }

  .header-dropdown-menu ul li a {
    padding: 10px 25px !important;
    font-size: 13px !important;
  }

  .header-submenu ul li a {
    padding: 8px 40px !important;
    font-size: 12px !important;
  }

  .header-submenu .header-has-submenu>.header-submenu ul li a {
    padding: 6px 55px !important;
    font-size: 11px !important;
  }
}


@media screen and (max-width: 768px) {

  .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }


  .header-menu-items.active {
    left: 0 !important;
  }

  .slider {
    padding: 50px 0;
  }

  .header-menu-items.active {
    left: -298px;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

@media (min-width:300px) and (max-width: 400px) {
  .header-menu-items.active {
    left: 0px;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

@media (min-width:400px) and (max-width: 500px) {
  .header-menu-items.active {
    left: -80px;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

@media (min-width:500px) and (max-width: 600px) {
  .header-menu-items.active {
    left: -150px;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

@media (min-width:600px) and (max-width:700px) {
  .header-menu-items.active {
    left: -150px;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}


/* ================================ OTHER EXISTING STYLES =============================== */
@media (min-width: 992px) {
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
  }
}

.abt-01 {
  padding: 6.125rem 0;
  background: #002db3;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.abt-02 .abt-main .abt-spirit .abt-content-card span {
  display: block;
  margin: 20px 0px;
}

.quick-links a {
  color: white;
  text-decoration: none;
}

/* notigcations button */
/* Toggle Button */
.toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.432);
  color: rgb(0, 0, 0);
  border: none;
  padding: 15px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  z-index: 1001;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
}

.toggle-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4);
}

.toggle-btn.active {
  right: 420px;
  background: #d32f2f;
}

/* Sidebar Container */
.sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1000;
  overflow-y: auto;
}

.sidebar.open {
  right: 0;
}

/* Sidebar Header */
.sidebar-header {
  background: linear-gradient(135deg, #2c5530, #1a3d1f);
  color: white;
  padding: 0px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 10;
  position: relative;
}

/* Close Button */
*/ .close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* border: 5px solid #000; */
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Notification Widget */
.notification-widget {
  background: white;
  border-bottom: 2px solid #eee;
}

.notification-header {
  background: linear-gradient(135deg, #2c5530, #1a3d1f);
  color: white;
  padding: 15px 20px;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
}

.notification-content {
  max-height: 300px;
  overflow-y: auto;
  background: white;
}

.notification-item {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  line-height: 1.5;
  transition: background 0.2s ease;
}

.notification-item:hover {
  background: #f8f9fa;
}

.notification-item:last-child {
  border-bottom: none;
}

.notification-date {
  color: #666;
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 12px;
}

.notification-text {
  color: #333;
}

.notification-link {
  color: #2c5530;
  text-decoration: none;
  display: block;
  margin-top: 5px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.notification-link:hover {
  color: #1a3d1f;
  text-decoration: underline;
}

.notification-controls {
  display: flex;
  justify-content: center;
  padding: 12px;
  background: #f9f9f9;
  border-top: 1px solid #eee;
  gap: 8px;
}

.nav-btn {
  background: #2c5530;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  background: #1a3d1f;
  transform: translateY(-2px);
}

.update-info {
  background: #2c5530;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: bold;
}

.search-section {
  padding: 15px 20px;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}

.search-input {
  width: 70%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 13px;
}

.search-btn {
  width: 25%;
  padding: 8px 12px;
  background: #2c5530;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 8px;
  font-size: 13px;
  transition: background 0.2s ease;
}

.search-btn:hover {
  background: #1a3d1f;
}

/* Calendar Widget */
.calendar-widget {
  background: white;
  margin-top: 10px;
}

.calendar-header {
  background: linear-gradient(135deg, #2c5530, #1a3d1f);
  color: white;
  padding: 15px 20px;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
}

.calendar-month {
  background: #4a6fa5;
  color: white;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  font-size: 16px;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
}

.calendar-table th {
  background: #2c5530;
  color: white;
  padding: 12px 8px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
}

.calendar-table td {
  padding: 12px 8px;
  text-align: center;
  font-size: 13px;
  border: 1px solid #eee;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calendar-table td:hover {
  background: #e8f4f8;
  transform: scale(1.1);
}

.calendar-today {
  background: #ffd700 !important;
  font-weight: bold;
  color: #333;
  border: 2px solid #ffb300 !important;
}

.calendar-other-month {
  color: #ccc;
}

.calendar-weekend {
  background: #f9f9f9;
}

/* ----------------------------------------------------------------------------------------- */



/* Main Content */
.main-content {
  padding: 20px;
  transition: margin-right 0.4s ease;
}

.main-content.sidebar-open {
  margin-right: 400px;
}

.demo-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* Overlay for mobile */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    right: -100%;
  }

  .sidebar.open {
    right: 0;
  }



  .main-content.sidebar-open {
    margin-right: 0;
  }

  .toggle-btn {
    /* border: 5px solid #000; */
    position: fixed;


  }
}


.bg-se-06 img {
  /* border: 1px solid blue; */
  border-radius: 20px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;

}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  .my-ba img {
    /* border-radius: 40%; */
    margin-left: 0rem;
    /* box-shadow: #FF8729 0px 3px 8px; */
  }

  .slider {
    position: relative;
    padding: -1.5rem 0;
    overflow: hidden;
    background: linear-gradient(to right, #002db3, #0033CC);
    z-index: 1;
  }




  .location-map {
    width: 100%;
    border: 1px solid #000;
  }
}

/* Small devices (landscape phones) */
@media (min-width: 576px) and (max-width: 767px) {
  .my-ba img {
    /* border-radius: 40%; */
    margin-left: 3rem;
    /* box-shadow: #FF8729 0px 3px 8px; */
    height: 30rem;
    margin-top: 4rem;


  }
}

/* Medium devices (tablets) */
@media (min-width: 768px) and (max-width: 991px) {
  .my-ba img {
    /* border-radius: 40%; */
    /* box-shadow: #FF8729 0px 3px 8px; */
    margin-left: 0rem;
    /* border: 5px solid #000; */


  }
}

/* Large devices (desktops) */
@media (min-width: 992px) and (max-width: 1199px) {
  .my-ba img {
    /* border-radius: 40%; */
    /* box-shadow: #FF8729 0px 3px 8px; */
    margin-left: 0rem;
    /* border: 5px solid #000; */


  }
}

@media (min-width: 300px) and (max-width: 500px) {
  .slider .main-wrapper .sub-wrapper-01 .content {
    padding: 0.625rem 0.9375rem;
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 9;
  }

  /* .slider {
        position: relative;
        padding: 0.5rem 0;
        overflow: hidden;
        background: linear-gradient(to right, #002db3, #0033CC);
        z-index: 1;
    } */

}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
}

._bv_xs_we img {
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  /* border-radius: 2rem; */
}

/* .main-wrapper a {
  color: white !important;
} */

/* .main-wrapper a:hover {
  color: rgb(255, 255, 255) !important;
} */

.whatsapp-icon {
  position: fixed;
  bottom: 0.8rem;
  /* left: 3rem; */
  z-index: 1000;
  right: 1rem;
}

.whatsapp-icon a img {
  height: 6.3rem;

}


.bg-se-02 .container .row .main-wrapper a {
  color: black !important;
}

.bg-se-02 .container .row .main-wrapper a:hover {
  color: blue !important;
}

.btn-secondary:hover {
  color: black !important;
}

.view-all-button {
  padding: 1rem;
  border-radius: 20px;
  width: 10rem;
  background-color: #002DB3;
  margin-top: 1rem;
}

.view-all .container {
  align-items: center;
  text-align: center;
}

.view-all-button a {
  color: white !important;
}



.main-card .content {
  /* border: 1px solid #000; */
  position: relative;
  bottom: 6rem;
}

@media (min-width:300px) and (max-width:800px) {
  .main-card .content {
    /* border: 1px solid #000; */
    position: relative;
    bottom: 6rem;
    top: 1.5rem;
  }
}

/* -------------------------------------------------------------------------- */
/* our services */
/* our services */
/* our services */
/* our services */
/* our services */
/* our services */
/* our services */
/* our services */
/* -------------------------------------------------------------------------- */

.slider-bg-se-02 {
  /* border: 1px solid #000; */
  background: #f8f9fa;
  /* padding: 80px 0; */
  overflow: hidden;
}

.slider-container {
  /* border: 1px solid #000; */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.slider-heading {
  text-align: center;
  margin-bottom: 60px;
}

.slider-heading h2 {
  font-size: 2.5rem;
  color: #333;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: left;
}

.slider-carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  width: 100%;
  height: 400px;
  mask: linear-gradient(to right, transparent, white 100px, white calc(100% - 100px), transparent);
  -webkit-mask: linear-gradient(to right, transparent, white 100px, white calc(100% - 100px), transparent);
}

.slider-carousel-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
  gap: 30px;
  align-items: center;
  height: 100%;
}

.slider-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.slider-service-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 320px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

.slider-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.slider-service-icon {
  margin-bottom: 25px;
}

.slider-service-icon i {
  font-size: 3rem;
  color: #007bff;
  transition: all 0.3s ease;
}

.slider-service-card:hover .slider-service-icon i {
  transform: scale(1.1);
  color: #0056b3;
}

.slider-service-content h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.slider-service-content p {
  color: #666;
  line-height: 1.6;
  font-size: 0.9rem;
}

.slider-service-content ul {
  list-style: none;
  text-align: left;
}

.slider-service-content li {
  color: #555;
  line-height: 1.7;
  font-size: 0.9rem;
  text-align: center !important;
}

.slider-service-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

@media (max-width: 768px) {
  .slider-heading h2 {
    font-size: 2rem;
  }

  .slider-service-card {
    width: 280px;
    height: 300px;
    padding: 30px 20px;
  }

  .slider-carousel-wrapper {
    height: 350px;
    mask: linear-gradient(to right, transparent, white 50px, white calc(100% - 50px), transparent);
    -webkit-mask: linear-gradient(to right, transparent, white 50px, white calc(100% - 50px), transparent);
  }

  .slider-carousel-track {
    gap: 20px;
  }
}


/* ---------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------- */
.section-why-choose-us {
  /* padding: 80px 0; */
  overflow: hidden;
  position: relative;
  /* border: 1px solid #000; */
  background-color: #F1F1F1;
}

.section-why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.why-choose-container {
  max-width: 1200px;
  /* border: 1px solid #000; */
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;

}

.why-choose-heading {
  text-align: center !important;
  margin-bottom: 60px;
  animation: fadeInDownCustom 1s ease-out;
  font-weight: 600;
}

.why-choose-heading h2 {
  font-weight: 800 !important;
}



.why-choose-marquee-container {
  overflow: hidden;
  /* border: 1px solid #000; */
  mask: linear-gradient(to right, transparent, white 100px, white calc(100% - 100px), transparent);
  -webkit-mask: linear-gradient(to right, transparent, white 100px, white calc(100% - 100px), transparent);
  width: 100%;
  position: relative;
}

.about-description-heading {
  margin-left: 22px;
}

.why-choose-marquee-wrapper {
  display: flex;
  animation: marqueeScrollCustom 30s linear infinite;
  width: fit-content;
  padding: 30px;

}

.why-choose-marquee-wrapper:hover {
  animation-play-state: paused;
}

.why-choose-items {
  flex: 0 0 auto;
  width: 380px;
  margin: 0 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.why-choose-items::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.8s;
}

.why-choose-items:hover::before {
  left: 100%;
}

.why-choose-items:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.why-choose-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.why-choose-image {
  margin-bottom: 25px;
  position: relative;
}

.why-choose-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ff6b6b;
  transition: all 0.4s ease;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.why-choose-items:hover .why-choose-image img {
  transform: rotate(360deg) scale(1.1);
  border-color: #4ecdc4;
}

.why-choose-text b {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  letter-spacing: 1px;
  line-height: 1.3;
  background: #333;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  text-align: center !important;
  padding: 0 10px;
}

/* Duplicate items for seamless loop */
.why-choose-marquee-wrapper::after {
  content: '';
  flex: 0 0 auto;
  width: 40px;
}

@keyframes marqueeScrollCustom {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes fadeInDownCustom {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInCustom {
  from {
    width: 0;
  }

  to {
    width: 100px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-choose-heading h2 {
    font-size: 2.5rem;
  }

  .why-choose-items {
    width: 320px;
    margin: 0 15px;
    padding: 25px 20px;
  }

  .why-choose-text b {
    font-size: 1.2rem;
  }

  .why-choose-text p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .why-choose-heading h2 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .why-choose-items {
    width: 280px;
    margin: 0 10px;
  }
}

/* Pause animation controls */
.why-choose-pause-control {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 10px 15px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  color: #2c3e50;
  transition: all 0.3s ease;
  z-index: 10;
}

.why-choose-pause-control:hover {
  background: #fff;
  transform: scale(1.05);
}


/* about us page  */
.abt-02 {
  padding: 60px 0;
  border: 1px solid #000;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-header h2 {
  /* font-size: 2.5rem; */
  color: #2c3e50;
  margin-bottom: 20px;
  /* position: relative; */
  /* display: inline-block; */
}

/* .about-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #3498db, #2980b9);
  border-radius: 2px;
} */

.about-description {
  max-width: 800px;
  /* border: 1px solid #000; */
  margin: 0 auto;
  font-size: 1.1rem;
  color: #555;
  text-align: left !important;
  line-height: 1.8;
}

.cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #3498db, #2980b9);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #3498db, #2980b9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.card p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

.what-we-do-list {
  list-style: none;
  margin-top: 15px;
}

.what-we-do-list li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  color: #555;
}

.what-we-do-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: #3498db;
  font-weight: bold;
}

@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-header h2 {
    font-size: 2rem;
  }

  .card {
    padding: 20px;
  }

  .card h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .abt-02 {
    padding: 40px 0;
  }

  .about-header h2 {
    font-size: 1.8rem;
  }

  .about-description {
    font-size: 1rem;
  }
}

.main-card .sub-card img {
  /* border: 1px solid #000; */
  border-radius: 10%;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}


/* clients section */
.clients-section {
  padding: 10px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.clients-section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.clients-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.clients-section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  position: relative;
}

.clients-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #2563eb 0%, #16a34a 50%, #ea580c 100%);
  border-radius: 2px;
}

.clients-section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 1.3rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.clients-client-card {
  background: white;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.clients-client-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2563eb 0%, #16a34a 50%, #ea580c 100%);
}

.clients-client-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.clients-client-logo {
  width: 120px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.clients-client-card:hover .clients-client-logo {
  transform: scale(1.1);
}

.clients-client-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
}

.clients-client-industry {
  font-size: 0.9rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Carousel Style Alternative */
.clients-carousel {
  position: relative;
  overflow: hidden;
  margin: 40px 0;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  border-radius: 15px;
}

.clients-carousel-track {
  display: flex;
  animation: clients-scroll 30s linear infinite;
  gap: 40px;
  width: calc(200px * 8 + 40px * 7);
  /* Adjust width for seamless loop */
}

.clients-carousel-item {
  flex: 0 0 200px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.clients-carousel-item:hover {
  transform: scale(1.05);
}

.clients-carousel-logo {
  width: 180px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.clients-carousel-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

@keyframes clients-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-200px * 6 - 40px * 6));
  }
}

.clients-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.clients-stat-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.clients-stat-item:hover {
  transform: translateY(-5px);
}

.clients-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 10px;
}

.clients-stat-label {
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 500;
}

/* Decorative Elements */
.clients-bg-decoration {
  position: absolute;
  top: 20%;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #2563eb20, #16a34a20);
  border-radius: 50%;
  z-index: -1;
}

.clients-bg-decoration-2 {
  position: absolute;
  bottom: 20%;
  left: -50px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #ea580c20, #2563eb20);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .clients-section-title {
    font-size: 2.2rem;
  }

  .clients-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .clients-client-card {
    padding: 30px 15px;
  }

  .clients-carousel-track {
    gap: 20px;
  }

  .clients-carousel-item {
    flex: 0 0 150px;
    padding: 20px;
  }

  .clients-stats-row {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }

  .clients-stat-number {
    font-size: 2.2rem;
  }
}

.send_via_whatsapp {
  border: 1px solid #000;
  padding: 0.3rem;
  border-radius: 1rem;
  cursor: pointer;
}

.send_via_whatsapp:hover {
  transform: scale(1.1);
  transition: all 1s;
  /* color: or; */
}

.contact-title a {
  color: white;
}

.contact-us-submit {
  margin-top: 1rem;
  margin-left: 0.5rem;
  width: 5rem;
}

.end-footer .last-card {
  display: flex;
  justify-content: space-between;
  /* border: 10px solid #ffffff; */
}


@media (min-width:300px) and (max-width:700px) {
  .end-footer .last-card {
    display: block;
    justify-content: space-between;
    /* border: 1px solid #000; */
    width: 90%;
    margin: auto;
    /* border: 10px solid #ffffff; */
  }

  .end-footer .last-card p {
    font-size: 0.7rem;
    font-weight: normal;
    /* display: inline-block; */
    /* padding: 0.625rem 0; */
    text-align: left !important;
  }
}

@media (min-width:300px) and (max-width:767px) {
  .bg-se-01 .main-card {
    position: relative;
    display: inline-block;
    margin: 0rem 0rem;
  }
}


/* * Notification Calendar Toggle Button - Fixed Bottom Left */
.notification-calendar-toggle-btn {
  position: fixed;
  bottom: 33px;
  left: 30px;
  background: white;
  color: white;
  border: none;
  border-radius: 10px;
  /* padding: 15px 25px; */
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(10px);
  height: 68px;
  width: 67px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* border: 5px solid #000; */
}

/* .notification-calendar-toggle-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
  background: orange;
} */

.notification-calendar-toggle-btn:active {
  transform: translateY(-1px);
}

.notification-button {
  color: blue;
  /* width: inherit; */
  /* height: inherit; */
}

.notification-button:hover {
  /* color: white; */
  /* border: 1px solid #000; */
  background-color: orange;
}

/* Notification Calendar Overlay */
.notification-calendar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
}

.notification-calendar-overlay.notification-calendar-active {
  opacity: 1;
  visibility: visible;
}

/* Notification Calendar Main Container */
.notification-calendar-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
  pointer-events: none;
}

/* Notification Calendar Sidebar */
.notification-calendar-sidebar {
  position: absolute;
  left: -400px;
  top: 0;
  width: 400px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  pointer-events: auto;
  box-shadow: 20px 0 40px rgba(0, 0, 0, 0.1);
}

.notification-calendar-sidebar.notification-calendar-active {
  left: 0;
}

/* Notification Calendar Sidebar Header */
.notification-calendar-sidebar-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 10;
}

.notification-calendar-close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s ease;
}

.notification-calendar-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* API Category Selector */
.notification-calendar-category-selector {
  padding: 20px;
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.notification-calendar-category-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(102, 126, 234, 0.2);
  border-radius: 12px;
  background: white;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: all 0.2s ease;
}

.notification-calendar-category-select:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Notification Calendar Widget */
.notification-calendar-widget {
  padding: 20px;
}

.notification-calendar-header {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

/* Notification Calendar Content */
.notification-calendar-content {
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.notification-calendar-content::-webkit-scrollbar {
  width: 6px;
}

.notification-calendar-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.notification-calendar-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 3px;
}

.notification-calendar-item {
  background: white;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #667eea;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.notification-calendar-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.notification-calendar-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.notification-calendar-date {
  font-size: 12px;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.notification-calendar-date::before {
  content: '📅';
  margin-right: 8px;
}

.notification-calendar-text {
  line-height: 1.5;
}

.notification-calendar-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  display: block;
  transition: color 0.2s ease;
}

.notification-calendar-link:hover {
  color: #667eea;
}

/* Loading State */
.notification-calendar-loading {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

.notification-calendar-loading::before {
  content: '⏳';
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
  animation: notification-calendar-spin 2s linear infinite;
}

@keyframes notification-calendar-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Error State */
.notification-calendar-error {
  text-align: center;
  padding: 20px;
  color: #e53e3e;
  background: rgba(229, 62, 62, 0.1);
  border-radius: 12px;
  margin: 10px 0;
}

/* Search Section */
.notification-calendar-search-section {
  padding: 20px;
  border-top: 1px solid rgba(102, 126, 234, 0.1);
  background: rgba(242, 245, 255, 0.5);
}

.notification-calendar-search-container {
  display: flex;
  gap: 10px;
}

.notification-calendar-search-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid rgba(102, 126, 234, 0.2);
  border-radius: 12px;
  background: white;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.notification-calendar-search-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.notification-calendar-search-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.notification-calendar-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Update Info */
.notification-calendar-update-info {
  text-align: center;
  padding: 15px;
  background: rgba(102, 126, 234, 0.1);
  margin: 20px;
  border-radius: 12px;
  font-size: 13px;
  color: #667eea;
  font-weight: 600;
}

/* Calendar Widget */
.notification-calendar-calendar-widget {
  padding: 20px;
  border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.notification-calendar-calendar-header {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.notification-calendar-calendar-month {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 15px;
}

.notification-calendar-calendar-table {
  width: 100%;
  border-spacing: 2px;
}

.notification-calendar-calendar-table th {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 10px 5px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
}

.notification-calendar-calendar-table td {
  background: white;
  padding: 10px 5px;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 500;
}

.notification-calendar-calendar-table td:hover {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}

.notification-calendar-calendar-today {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  font-weight: 700;
}

.notification-calendar-calendar-weekend {
  background: rgba(229, 62, 62, 0.1) !important;
  color: #e53e3e;
}

.notification-calendar-calendar-other-month {
  color: #ccc !important;
  background: rgba(0, 0, 0, 0.05) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .notification-calendar-sidebar {
    width: 100vw;
    left: -100vw;
  }

  .notification-calendar-toggle-btn {
    /* bottom: 15px; */
    left: 30px;
    /* padding: 12px 20px; */
    font-size: 14px;
  }
}