/* Varialbes */
:root {
  --font-default: 'Manrope', sans-serif;
  --font-heading: 'Manrope', sans-serif;
  --fontawesome: "Font Awesome 5 Pro";
  --black: #000000;
  --dark: #171827;
  --white: #ffffff;
  --color-primary: #015FC9;
  --color-secondary: #25cdc7;
  --color-style-five: #05be8a;
  --color-heading: #04000b;
  --color-paragraph: #666666;
  --main: #009fd4;
  --border-radius: 3rem;
  --border-hover: transparent;
  --footer: #DDD;

}

::selection {
  background-color: var(--main);
  color: black;
}

.active-color {
  color: var(--main) !important;
  text-decoration: 3px underline;
}


/* ============================================================== 
     # Reset Browsers
=================================================================== */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

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

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

input {
  border: 1px solid #e7e7e7;
  border-radius: inherit;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  min-height: 50px;
}

input:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

select:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

ul {
  list-style-type: none;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}


/* ============================================================== 
    # Template Default Styles
=================================================================== */

body {
  font-family: var(--font-default);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  overflow-x: hidden;
  background-color: var(--white);
  color: var(--color-paragraph);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter Tight", sans-serif;
}

a,
.btn,
button {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  outline: medium none;
  text-decoration: none;
  font-weight: 700;
}

p {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.color-style-five .bg-theme {
  background-color: var(--color-secondary);
}

.text-light {
  color: var(--white);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light span,
.text-light a {
  color: var(--white);
}

.title {
  font-weight: 800;
  font-size: 50px;
}

@media (max-width: 767px) {
  .title {
    font-size: 36px;
    margin-top: 0;
  }
}

.bg-dark .title {
  color: var(--white);
}


button {
  display: inline-block;
  font-weight: 700;
  text-transform: capitalize;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 7px;
  border: 2px solid transparent;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  font-size: 16px;
  letter-spacing: 0;
  padding: 14px 40px;
  background: #E7EDF8;
  position: relative;
  z-index: 1;
  color: var(--white);
  border: none;
  background: var(--color-primary);
}

.color-style-five button {
  background: var(--color-secondary);
}

button i {
  margin-right: 4px;
}

.bg-dark,
.bg-dark-secondary,
.bg-dark p,
.bg-dark-secondary p {
  color: #cccccc;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
  color: var(--white);
}

.scroll-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  bottom: 105%;
  right: 25px;
  font-size: 24px;
  z-index: 99;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  transition: 1s ease;
  border-radius: 50%;
}

.scroll-top:hover {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}

.scroll-top.open {
  bottom: 100px;
}

.scroll-top i {
  color: #fff;
}

.scroll-top {
  background: var(--main);
}

/*-- =============  Banner Css ============ -- */

.banner {
  margin-top: -2px;
}

.banner .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: '';
  display: none;
}

.banner .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: '';
}

/* Custom Swiper Navigation Styles */
.custom-swiper-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-button-prev,
.swiper-button-next {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.swiper-button-prev i,
.swiper-button-next i {
  font-size: 1.5rem;
}

/* Responsive Styles for buttons */
@media (max-width: 768px) {

  .swiper-button-prev,
  .swiper-button-next {
    font-size: 1.5rem;
    padding: 8px;
  }
}

@media (max-width: 480px) {

  .swiper-button-prev,
  .swiper-button-next {
    font-size: 0.8rem !important;
    padding: 3px;
  }

  .swiper-button-prev i,
  .swiper-button-next i {
    font-size: 0.8rem;
  }

}


/*-- ===================== About Section ======================== --*/


.section-title {
  position: relative;
}

.section-title .cmn-tag {
  background-color: var(--main);
  padding: 6px 12px;
  border-radius: 50px;
  color: var(--white);
  font-size: 20px;
}

.section-title h2 {
  font-weight: 700;
  color: var(--black);
  line-height: 1.6;
}

.section-title .title-badge1 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.title-badge1 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.section-title-area {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}

@media (max-width: 767px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 20px;
  }
}



.about-thumb-inner {
  z-index: 1;
  position: relative;
}

.about-thumb-inner .thumb {
  max-width: 387px;
  margin: 0 auto;
}

.about-thumb-inner .about1-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}

.about-thumb-inner .about1-element1 {
  position: absolute;
  bottom: 50px;
  left: -30px;
  animation: rots 2s linear infinite;
}

.about-thumb-inner .about1-element2 {
  position: absolute;
  bottom: 190px;
  right: -30px;
  animation: updown 2s linear infinite;
}

@media (max-width: 575px) {
  .about-thumb-inner .thumb {
    max-width: 300px;
  }

  .about-thumb-inner .thumb img {
    width: 100%;
  }

  .about-thumb-inner .about1-element1 {
    display: none;
  }

  .about-thumb-inner .about1-element2 {
    display: none;
  }

  .about-thumb-inner .about1-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    max-width: 400px;
  }
}

@keyframes rots {
  50% {
    transform: rotate(10deg);
  }
}

@keyframes updown {
  50% {
    transform: translateY(10px);
  }
}

@keyframes rots {
  50% {
    transform: rotate(7deg);
  }
}

.about-content2 .about-point {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media (max-width: 767px) {
  .about-content2 .about-point {
    gap: 26px 24px;
  }
}

@media (max-width: 575px) {
  .about-content2 .about-point {
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .about-content2 .about-point .about-point-item img {
    width: 50px;
  }

  .about-content2 .about-point .about-point-item h4 {
    line-height: 22px;
  }
}


.section-title .title-badge1 {
  position: absolute;
  left: 0;
  bottom: -18px;
}

.title-badge1 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.cmn-tag {
  font-size: 14px;
  color: var(--n700-clr);
  font-weight: 700;
  padding: 6px 15px;
  border-radius: 100px;
  display: inline-flex;
}

.about .pra {
  font-size: 18px;
}

.text {
  color: var(--text);
}

.about {
  background-color: #f5f6f8;
}


.about-thumb-inner {
  z-index: 1;
  position: relative;
}

.about-thumb-inner .thumb {
  max-width: 387px;
  margin: 0 auto;
}

.about-thumb-inner .about1-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}

.about-thumb-inner .about1-element1 {
  position: absolute;
  bottom: 50px;
  left: -30px;
  animation: rots 2s linear infinite;
}

.about-thumb-inner .about1-element2 {
  position: absolute;
  bottom: 190px;
  right: -30px;
  animation: updown 2s linear infinite;
}

@media (max-width: 575px) {
  .about-thumb-inner .thumb {
    max-width: 300px;
  }

  .about-thumb-inner .thumb img {
    width: 100%;
  }

  .about-thumb-inner .about1-element1 {
    display: none;
  }

  .about-thumb-inner .about1-element2 {
    display: none;
  }

  .about-thumb-inner .about1-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    max-width: 400px;
  }
}

@keyframes rots {
  50% {
    transform: rotate(10deg);
  }
}

@keyframes updown {
  50% {
    transform: translateY(10px);
  }
}

@keyframes rots {
  50% {
    transform: rotate(7deg);
  }
}

@media (max-width: 767px) {
  .about-content2 .about-point {
    gap: 26px 24px;
  }
}

@media (max-width: 575px) {
  .about-content2 .about-point {
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .about-content2 .about-point .about-point-item img {
    width: 50px;
  }

  .about-content2 .about-point .about-point-item h4 {
    line-height: 22px;
  }
}

.space-bottom {
  padding-bottom: 120px;
}

@media (max-width: 1199px) {
  .space-bottom {
    padding-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .space-bottom {
    padding-bottom: 80px;
  }
}

.about .common-btn {
  background-color: var(--white);
  padding: 10px 18px;
  color: var(--black);
  border-radius: 50px;
  font-size: 20px;
  overflow: hidden;
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}

.mb-40 {
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .mb-40 {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .mb-40 {
    margin-bottom: 20px;
  }
}

.about-point .data {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  margin-top: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
  transition: all 0.5s linear;
}

.about-point .data:hover {
  transform: translateY(-10px);
}

.about-point h4 {
  font-weight: 600;
  color: var(--black);
}

.coolBeans {
  overflow: hidden;
  padding: 1rem 2rem;
  position: relative;
  text-decoration: none;
  transition: transform 1s ease-in-out, border-color 0.5s ease-in-out, color 0.5s ease-in-out;
  will-change: transform, border-color, color;
  background-color: none;
  z-index: 0;

  &::after {
    background-color: var(--black);
    border-radius: var(--border-radius);
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-100%, 0) rotate(10deg);
    transform-origin: top left;
    transition: transform 0.4s ease-out;
    will-change: transform;
    z-index: -1;
  }

  &:hover::after {
    overflow: hidden;
    transform: translate(0, 0);
  }

  &:hover {
    color: var(--white);
    transform: scale(1.05);
    will-change: transform, border-color, color;
  }
}

/*-- ================= Management Section =================== --*/

.management {
  background: url(../images/services-bg.png);
  background-size: cover;
  background-position: center;
}

.management .heading h5 {
  background-color: var(--main);
  color: var(--white);
  font-weight: 700;
  padding: 7px 18px;
  display: inline-block;
  border-radius: 50px;
  font-size: 18px;
}

.management .heading h1 {
  font-size: clamp(30px, 2.6vw, 120px);
  color: var(--black);
  font-weight: 600;
}

.management .top {
  overflow: hidden;
}

.services-area .section-title h2 {
  font-weight: 700;
}

.services-item {
  margin-bottom: 30px;
  transition: 0.5s;
}

.services-item:hover {
  transform: translate(0, -5px);
}

.services-item:hover .bottom span {
  width: 50px;
  height: 50px;
}

.services-item:hover .bottom .icon {
  color: #fff;
  background-color: #20bdd1;
}

.services-item .top {
  margin: auto;
  width: 400px;
  height: 100%;
  border-radius: 10px;
}

.services-item .top a {
  display: block;
}

.services-item .top a img {
  width: 100%;
  height: 100%;
  margin: auto;
  border-radius: 10px;
}

.services-item .bottom {
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  padding: 30px;
  max-width: 62%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -40px;
  box-shadow: 0px 8px 20px 0px #f5fcfe;
}

.services-item .bottom span {
  position: absolute;
  width: 15px;
  height: 15px;
  transition: 0.5s;
}

.services-item .bottom span:nth-child(1) {
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top: 3px solid var(--main);
  border-left: 3px solid var(--main);
}

.services-item .bottom span:nth-child(2) {
  top: 0;
  right: 0;
  border-top-right-radius: 10px;
  border-top: 3px solid var(--main);
  border-right: 3px solid var(--main);
}

.services-item .bottom span:nth-child(3) {
  bottom: 0;
  right: 0;
  border-bottom-right-radius: 10px;
  border-bottom: 3px solid var(--main);
  border-right: 3px solid var(--main);
}

.services-item .bottom span:nth-child(4) {
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 10px;
  border-bottom: 3px solid var(--main);
  border-left: 3px solid var(--main);
}

.services-item .bottom .icon {
  display: inline-block;
  position: absolute;
  top: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 10px;
  text-align: center;
  font-size: 30px;
  color: var(--main);
  background-color: #e0f8fc;
  transition: 0.5s;
  font-weight: 700;
}

.services-item .bottom h2 {
  font-size: 25px;
  margin-bottom: 10px;
}

.services-item .bottom h2 a {
  color: #02123a;
}

.services-item .bottom h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.services-item .bottom h3 a {
  color: #02123a;
}

.services-item .bottom h3 a:hover {
  color: var(--main);
}

.services-item .bottom p {
  margin-bottom: 10px;
}

.services-item .bottom .services-btn {
  display: inline-block;
  color: var(--main);
  font-weight: 700;
}

.services-item .bottom .services-btn i {
  position: relative;
  font-size: 14px;
  margin-left: 5px;
}

.services-item .bottom .services-btn:hover {
  color: #02123a;
}


@media(max-width:1400px) {
  .services-item .bottom {
    max-width: 72%;
  }
}

@media(max-width:991px) {
  .services-item .top {
    width: 100%;
    height: 100%;
  }

  .services-item .bottom {
    max-width: 92%;
  }
}

@media (max-width: 450px) {

  .services-area .navi {
    width: 120px;
  }

}

/* =========== Services section here ============ */

.services {
  background-color: #f5f6f8;
}

.services .upper {
  font-size: 18px;
  color: black;
  font-weight: 700;
}

.services .heading h5 {
  background-color: var(--main);
  color: var(--white);
  font-weight: 700;
  padding: 7px 18px;
  display: inline-block;
  border-radius: 50px;
  font-size: 18px;
}

.services .heading h1 {
  font-size: clamp(30px, 2.6vw, 120px);
  color: var(--black);
  font-weight: 600;
}

.services .upper i {
  color: #FFA500;
}

.services .top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.services .navi {
  display: flex;
  justify-content: space-between;
  width: 200px;
  position: relative;
  height: 40px;
}

.services .swiper-pagination-fraction {
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  font-weight: 900;
  font-size: 20px;
}

.services .swiper-button-next,
.services .swiper-button-prev {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--main);
  display: grid;
  place-items: center;
  margin-top: 0;
  top: 0;
}

.services .swiper-button-prev:after,
.services .swiper-button-next:after {
  font-size: 16px;
  color: white;
  font-weight: 900;
}

.services .top h3 {
  font-size: 35px;
  font-weight: 700;
  color: #055986;
}

.services .services_slider .data {
  padding: 25px 25px;
  box-shadow: 0px 10px 30px -5px rgb(109 117 143 / 33%);
  border-radius: 10px;
  background-color: white;
  /* height: 75%; */
}

.services .services_slider .swiper-slide .image {
  height: 200px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.services .services_slider .swiper-slide .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.services .services_slider .swiper-slide h4 {
  font-size: 25px;
  font-weight: 700;
  color: var(--main);
}

.services .services_slider .swiper-slide h5 {
  font-weight: 700;
  color: var(--black);
}

.services .services_slider .swiper-slide a {
  color: var(--main);
}

@media(max-width:576px) {
  .services .top h3 {
    font-size: 30px;
  }

  .services .services_slider .data {
    height: 80%;
  }
}

@media(max-width:400px) {
  .services .services_slider .data {
    padding: 35px 15px;
  }
}

.services .swiper-button-next,
.services .swiper-button-prev {
  position: absolute;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--main);
  box-shadow: 0px 10px 30px -5px rgb(109 117 143 / 33%);
  display: grid;
  place-items: center;
  margin-top: 0;
  top: 50%;
  color: white;
}

.services .swiper-button-next {
  right: 0px;
}

.services .swiper-button-prev {
  left: 0px;
}

.services .swiper-button-prev:after,
.services .swiper-button-next:after {
  font-size: 20px;
  color: var(--white);
  font-weight: 900;
}

@media(max-width:991px) {

  .services .swiper-button-next,
  .services .swiper-button-prev {
    display: none;
  }
}

/*-- =====================   FAQ Section ====================== --*/

.faq .heading h5 {
  background-color: var(--main);
  color: var(--white);
  font-weight: 700;
  padding: 7px 18px;
  display: inline-block;
  border-radius: 50px;
  font-size: 18px;
}

.faq .heading h1 {
  font-size: clamp(30px, 2.6vw, 120px);
  color: var(--black);
  font-weight: 600;
}

.faq .section-title h5 {
  text-decoration: underline;
  text-decoration-color: var(--main);
}

.faq .section-title p {
  color: var(--black);
  font-weight: 500;
}

.faq .section-title h2 {
  font-size: clamp(30px, 3vw, 120px);
}

.faq .section-title h2 span {
  color: var(--main);
}

.faq .accordion-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 10px 30px -5px rgb(109 117 143 / 33%);
  border-radius: 30px 0px 30px 0 !important;
  border: none;
}

.faq .accordion-header button {
  font-size: 18px;
}

@media(max-width:525px) {
  .faq .accordion-header button {
    font-size: 16px;
  }
}

.faq .accordion-body p {
  color: var(--black);
}

.faq .accordion-item {
  border-radius: 10px;
  overflow: hidden;
}

.faq .accordion-button {
  padding: 1.5rem 1.25rem;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--black) !important;
  background-color: var(--white) !important;
  font-weight: 700;
  border-bottom: 1px solid var(--black);
}

.faq .accordion-button:focus {
  box-shadow: 0 0 0 .25rem #FFF !important;
}

.faq.accordion-item span {
  width: 45px;
  height: 45px;
}

.faq .accordion-item i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50px;
  background: var(--main);
  text-align: center;
  color: var(--white);
}

.accordion-button::after {
  content: '';
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="%230c63e4"><path fill="none" stroke="black" stroke-width="2" d="M8 1v14M1 8h14"/></svg>');
  background-size: 1rem 1rem;
  width: 1rem;
  height: 1rem;
  margin-left: auto;
  transition: transform 0.2s ease, background-image 0.2s ease;
  color: var(--main) !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor"><path fill="none" stroke="currentColor" stroke-width="2" d="M2 8h12"/></svg>');
}

/* Change the icon color dynamically on hover */
.accordion-button:hover::after {
  color: var(--main);
}