@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

:root {
  --primary:
    /*#233362*/
    #284b78;
  --secondary: #a3cdf1
    /* #4a6ca8*/
  ;
  --white: #ffffff;
  --black: #000000;
  --gray: #8b8b89;
  --gray-bg: #f6f5f2;
}




/*- common css -*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--primary);
  font-weight: 400;
  transition: all 0.3s ease;
}

a,
a:hover {
  text-decoration: none;
}

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

img,
svg {
  max-width: 100%;
}

b,
strong {
  font-weight: 600;
}

h1 {
  font-size: 48px;
  font-weight: 600;
  margin: 0px;
  font-family: "Montserrat", sans-serif;

}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 0px;
  font-family: "Montserrat", sans-serif;
  color: var(--primary);
}

h3,
h4,
h5,
h6 {
  font-family: "Lato", sans-serif;
  color: var(--primary);
  font-weight: 600;
}


h6 {
  font-size: 20px;
  font-weight: 600;
  margin: 0px;
}

p {
  font-size: 16px;
  line-height: 22px;
  margin: 0px;
}

.small-title {
  color: #1F3556;
  color: #3E6FA8;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.bg-blue {
  background: var(--primary);
  border-radius: 24px;
}

.bg-skyblue {
  background: var(--secondary);
}

.separate {
  border-top: 2px solid var(--secondary);
  width: 50px;
}

.title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.custom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.custom-list {
  list-style: disc;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: 20px;
}

.image-box ul.custom-list {
  list-style: none;
  margin: 0;
}

.image-box ul.custom-list li {
  border: solid 2px;
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.image-box ul.custom-list li a{
  color: inherit;
}
.image-box ul.custom-list li:hover{
  background: var(--primary);
  color: var(--white);
}

.common-btn {
  background: var(--primary);
  color: var(--white);
  padding: 11px 51px;
  border-radius: 100px;
  transition: 0.3s;
  display: inline-block;
  cursor: pointer;
  text-transform: capitalize;
  width: max-content;
  font-size: 20px;
  font-weight: 400;
  border: 1px solid transparent;
}

.common-btn:hover {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.contact-form {
  margin: 0 !important;
  width: 100% !important;
  display: grid;
  gap: 25px;
}

.contact-form .common-btn {
  background: var(--secondary) !important;
  color: var(--white) !important;
  line-height: normal;
  height: auto;
  padding: 11px 51px;
  border-radius: 100px;
  transition: 0.3s;
  display: inline-block;
  cursor: pointer;
  text-transform: capitalize;
  width: max-content;
  font-size: 20px;
  font-weight: 400;
  border: 1px solid transparent;
}

.contact-form .common-btn:hover {
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.contact-form input,
.contact-form textarea {
  padding: 14px 20px;
  width: 100%;
  border-radius: 12px;
  font-size: 14px;
  border: 1px solid #ffffff30;
  background: transparent;
  height: auto;
  line-height: inherit;
  color: var(--white);
}

.contact-form textarea {
  max-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ebebebba !important;
  font-weight: 400 !important;
}

.img-radius {
  border-radius: 24px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.custom-accordian .accordion-item {
  border: none;
  margin-bottom: 15px;
  position: relative;
  background: var(--primary);
  color: var(--white);
  border-radius: 20px !important;
  padding: 20px;
}

.custom-accordian .accordion-button::after {
  background-image: url(../images/plus-icon.svg);
  position: absolute;
  left: 0;
  height: 42px;
  width: 42px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../images/minus-icon.svg);
}

.custom-accordian .accordion-button {
  box-shadow: none;
  background: transparent;
  padding: 0 0px 0px 60px;
  color: var(--white);
}

.custom-accordian .accordion-collapse {
  padding: 10px 0px 0px 60px;
  color: #ebebebba;
}

.accordion-body {
  padding: 0;
}

.image-h {
  height: 630px;
}

.image-h img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons li {
  background: #3E6FA8;
  border-radius: 100%;
  height: 36px;
  width: 36px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icons li * {
  color: var(--white);
}

.social-icons li:hover {
  background: #6FAFD8;
}


.site-logo img {
  width: 160px;
  /* filter: brightness(0) invert(1); */
}

button {
  background: transparent;
  border: none;
}

.input-wrapper {
  margin-bottom: 20px;
}

/* slick-slider */
.slick-track {
  display: flex;
}

.testimonial-slider  .slick-slide{
  height: inherit; 
  margin: 0px 10px;
}

.slick-dots {
  position: initial;
  margin: 0;
}

.slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 2px;
  margin: 0 5px;
}

.slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 100%;
  background: var(--secondary);
}

.slick-dots li.slick-active button {
  background: var(--white);
}

.slick-dots li button:before {
  display: none;
}

.bg-gradiant {
  border-radius: 24px;
  /* background: linear-gradient(180deg, var(--secondary) 0%, #ffffff 80%); */
  background: linear-gradient(3deg, rgb(255 255 255 / 18%) 0%, rgb(224 211 255 / 17%) 80%);
  box-shadow: 0 -19px 30px rgb(242 246 255);
  backdrop-filter: blur(5px);
  overflow: hidden;
}

.bg-gray {
  /* background: var(--gray-bg); */
  background: hsla(45, 18%, 96%, 0.15);
  /* border-radius: 24px; */
}

.title-w {
  max-width: 740px;
}

.gray-border-btn {
  padding: 17px 31px;
   background: rgb(255 255 255 / 29%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  width: 100%; 
  font-size: 18px;
  font-weight: 500;
  color: var(--text-color);
  transition: all 0.3s ease;
  display: flex; 
  flex-direction: column;
  gap: 15px;
}

.gray-border-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.inner-padding {
  padding: 50px 60px;
}

/* Header */
.header-fixed header {
  animation: smoothScroll 1s forwards;
  left: 0;
  right: 0;
  top: 0;
  position: fixed;
  z-index: 999;
  /* padding: 10px 0; */
  /* From https: //css.glass */
  background: rgb(23 76 118 / 68%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.header-wrapper .row {
  position: relative;
}

header .mobile-toggle {
  display: none;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 
.navbar-menu li {
  display: flex;
  align-items: center;
} */
/*.navbar-menu > li:last-child > a {
  background: var(--secondary);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
  cursor: pointer;
  line-height: 15px;
  text-transform: capitalize;
  width: max-content;
}
.navbar-menu > li:last-child > a :hover {
  background: #a1c3ff;
  color: var(--white);
} */
.navbar-menu>li>a {
  color: var(--white);
  transition: all 0.3s ease;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 500;
}

header .navbar-menu>li>a:hover,
header .navbar-menu>li.active>a {
  color: var(--white);
  opacity: 0.8;
}

.submenu li a:before {
  content: "";
  position: absolute;
  right: 20px;
  height: 20px;
  width: 20px;
  background-image: url(../images/blue-pointer-arrow.svg);
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: center;
  border-radius: 100%;
  opacity: 0;
}

.submenu li a:hover:before {
  opacity: 1;
}

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

.submenu li a {
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  padding: 10px;
  position: relative;
  font-weight: 500;
}

.submenu li a .round-icon {
  height: 20px;
  width: 20px;
  background: var(--secondary);
}

header .burger-menu,
header .close-menu {
  display: none;
  width: 30px;
}

.navbar-menu .down-arrow {
  width: 11px;
  margin-left: 5px;
  filter: brightness(0) invert(1);
}

li.location-menu ul.submenu {
  max-width: 600px;
  left: auto;
  right: 0;
  grid-template-columns: auto auto;
}

/* contact-form */
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
}

.contact-left-content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
  gap: 20px;
  padding: 40px;
  color: var(--white);
}

.contact-left-content p {
  max-width: 390px;
  font-weight: 400;
}

.contact-right h2 {
  color: var(--white);
}

form.wpcf7-form.init {
  width: 100%;
  display: block;
}

span.wpcf7-list-item label {
  display: flex;
  width: 100%;
  gap: 15px;
}

.contact-right {
  padding: 30px;
  gap: 20px;
  display: grid;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  grid-template-columns: 100%;
  color: var(--white);
}

.contact-box .small-title {
  color: var(--white);
}

.contact-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px 0px 0px 24px;
}

.contact-form .wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px !important;
  height: 20px !important;
  border: none !important;
  border-radius: 4px !important;
  background: transparent !important;
  position: relative;
  cursor: pointer;
  padding: 0 !important;
}

.contact-form input[type="checkbox"]::before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent !important;
  border: 2px solid #4da3ff !important;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 4px !important;
  width: 100%;
  height: 100%;
}

.contact-form .wpforms-field-checkbox label {
  color: #fff !important;
}

.contact-form input[type="checkbox"]:checked:before {
  box-shadow: none !important;
}

.wpcf7-form-control.wpcf7-acceptance input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -31%);
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
}

/* 
.contact-form input[type="checkbox"]:checked:after {
  border-left: 4px solid #a3b9e0 !important;
  border-bottom: 4px solid #a3b9e0 !important;
} */

/* homepage */
.result-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-weight: 900;
}

.result-wrapper li {
  width: 47%;
}

.result-wrapper .result-box {
  padding: 20px;
  border-radius: 20px;
  height: 100%;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.result-wrapper .count {
  font-size: 50px;
  font-weight: 600;
  color: var(--primary);
}

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

.rating span {
  font-size: 28px;
  font-weight: 500;
}

.about-content li {
  border-top: 1px solid var(--color-grey-5231, #8081874f);
}

.about-content li:not(:last-child) {
  margin-bottom: 20px;
}

.about .title-wrapper {
  max-width: 420px;
  position: sticky;
  top: 100px;
}

.about-content li:nth-child(2) .list-items,
.about-content li:last-child .list-items {
  flex-direction: row-reverse;
}

.about-content li:nth-child(2) .list-right,
.about-content li:last-child .list-right {
  background: var(--secondary);
  /* From https: //css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-content .list-items {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.about-content .list-left {
  width: 60%;
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-content .list-left a {
  color: var(--primary);
  font-weight: 300;
}

.about-content .list-right {
  background: var(--primary);
  border-radius: 0px 0px 20px 20px;
  max-height: 176px;
  /* color: var(--white); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 30%;
  text-align: center;
  font-weight: 700;

  /* From https: //css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #1F3556;
  color: #3E6FA8;


}

.about-content .list-right .title {
  font-size: 40px;
  font-weight: 500;
  line-height: normal;
}

/* .about-content .list-right span {
  color: #ebebebba;
} */

.services-inner {
  position: relative;
  display: flex;
  margin-top: 100px;
}

.services-inner .icon.bg-skyblue img {
  filter: brightness(0) invert(1);
}

section.content {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.content-box {
  height: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  color: var(--primary);
  box-shadow: 0 0 10px #4a6ca89e;
  max-width: 350px;
  margin: auto;
  width: 100%;
  /* From https: //css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.round-icon {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  background: var(--white);
  box-shadow: 0 0 10px #cccc;
}

.content-box:hover .round-icon {
  background: var(--primary);
}

.content-box:hover .round-icon img {
  filter: brightness(0) invert(1);
}



.br-0 {
  border-radius: 0;
}

.content-wrapper {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content-box .service-img {
  aspect-ratio: 3/4;
  /* box-shadow: 0 0 10px; */
}

.content-box .service-img img {
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 10px #4a6ca840;
}

.content-box:hover {
  background: var(--secondary);
  color: var(--primary);
}

.border-box {
  border: 1px solid var(--primary);
  border-radius: 15px;
  padding: 30px;
  background: rgb(255 255 255 / 29%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.square-icon-box {
  border-radius: 15px;
  color: var(--white);
  /* position: absolute; */
  margin-top: -50px;
  left: 0;
  right: 0;
  max-width: 230px;
  margin: -80px auto 50px;
  padding: 25px;
  background: rgb(255 255 255 / 29%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.icon {
  height: 65px;
  width: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin-bottom: 40px;
  background: var(--primary);
  background: rgb(23 76 118 / 88%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}



.testimonial-slider {
  margin-top: 30px;
  margin-bottom: 0px !important;
}

.testimonial-slider .testimonial-box {
  box-shadow: 0px 5px 30px -10px #1d1d4b1f;
  padding: 30px 35px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  gap: 10px;
  height: 100%;
  background: var(--white);
}

/* service & inner pages */
.other-service-wrapper {
  counter-reset: section;
  padding-left: 50px;
  padding-right: 50px;
}

.other-servies {
  background: var(--white);
  border: 1px solid #ebebebba;
  border-radius: 24px;
  padding: 13px;
  transition: all 0.3s ease;
  height:calc(100% - 30px) !important ;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  background: rgb(255 255 255 / 29%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin-top: 30px;
  margin-bottom: 30px;
}

.other-service-content {
  color: var(--black);
  flex: 1;
  display: flex; 
  flex-direction: column;
  gap: 15px;
}

.other-servies .number {
  height: 60px;
  width: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
  margin-top: -40px;
}

/* 
.other-servies .number:before {
  counter-increment: section;
  content: counter(section);
} */

.custom-service-list {
  padding-left: 20px;
}

.custom-service-list li {
  margin-top: 20px;
}

/* blog */

.blog-box {
  background: var(--gray-bg);
  border-radius: 24px;
  color: var(--text-color);
  height: 100%;
  background: rgb(255 255 255 / 29%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.blog-box .content-wrapper {
  padding: 20px 10px 10px;
  gap: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  color: #233362;
}

.blog-box .round-icon {
  background: var(--white);
  height: 50px;
  width: 50px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.blog-box .image img {
  height: 100%;
  object-fit: cover;
}

/* footer */
.footer {
  padding: 70px 10px 10px;
  background: var(--primary);
  color: var(--white);
  margin-top: 70px;
  /* max-width: 1140px;
  margin: 70px auto 35px; */
  font-family: "Lato", sans-serif;
}

.footer h6 {
  margin-bottom: 20px;
  color: var(--white);
}

.footer-content p {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 400;
}


.footer-link li {
  margin-bottom: 10px;
}

.footer-link li:last-child {
  margin-bottom: 0px;
}

.footer-contact a {
  display: block;
  color: #7fb6e6;
  font-weight: bold;
}

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

.footer-link a {
  font-size: 14px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white);
}

.footer-link a:hover {
  color: #7fb6e6;
}

.copyright-box {
  text-align: center;
  color: #7fb6e6;
  padding: 20px 0px 10px;
  border-top: solid 1px #7fb6e6;
  margin-top: 40px;
}

/* animation */
@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0px);
  }
}

.header-wrapper {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  padding: 0;
  z-index: 99;
  /* From https://css.glass */
  background: rgba(42, 42, 42, 0.2);

  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.header-fixed .header-wrapper {
  /* background: var(--primary); */
  /* padding: 10px 0; */
}
li.location-menu {
    padding: 40px 0;
}

.c-wt * {
  color: var(--white);
}

.hero-section {
  padding: 180px 0 100px 0;
  position: relative;
  margin-bottom: 70px;
  background: var(--primary);
  overflow: hidden;
}

.hero-section .container {
  z-index: 1;
  position: relative;
}

.hero-section.main {
  padding-bottom: 0;
  min-height: 600px;
}

/* .hero-section.main .title-wrapper {
  min-height: 590px;
} */
.hero-section.main .title-wrapper {
  margin-bottom: 60px;
}

.hero-media {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}

.hero-media * {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-media:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: var(--primary);
  left: 0;
  opacity: 0.8;
  mix-blend-mode: multiply;
}

.hero-section .common-btn {
  background: var(--white);
  color: var(--primary);
}

.hero-section .common-btn:hover {
  background: var(--secondary);
  color: var(--white);
}

.icon-box {
  box-shadow: 0 0 10px #ccc;
  height: 100%;
  border-radius: 8px;
  padding: 15px;
  font-weight: 600;
  /* From https: //css.glass */
  background: rgb(255 255 255 / 90%);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.icon-box img {
  max-height: 90px;
  width: 100%;
  margin-bottom: 5px;
}

section.about-text .bg-skyblue {
  padding: 40px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  /* background: var(--primary); */
  background: rgb(23 76 118 / 55%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

section.about-text .bg-skyblue:before {
  content: "";
  background-image: url(https://finovate.vamtam.com/wp-content/uploads/2025/02/popup-mask.svg);
  --background-overlay: "";
  background-position: -20% 50%;
  background-repeat: no-repeat;
  background-size: 50% auto;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.1;
  z-index: -1;
}

/* COMMON BOX */
.core-box {
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 20px;
  background: rgb(23 76 118 / 84%);
  box-shadow: 0 4px 20px rgb(38 103 138 / 25%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* BEFORE ICON (COMMON) */
.core-box::before {
  content: "";
  background: url(https://finovate.vamtam.com/wp-content/uploads/2025/02/popup-mask.svg) no-repeat center/contain;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 20px;
  right: 20px;
}

/* LIGHT BOX */
.core-box.light {
  background: #dce9f7 !important;
}

.core-box.light p {
  margin-top: 100px;
}

.core-box.light::before {
  mix-blend-mode: overlay;
}

.core-box.light .tag {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

/* BLUE BOX */
.core-box.blue * {
  /* background: var(--primary); */
  color: var(--white);
}

.core-box.blue p {
  margin-top: auto;
}

.core-box.blue::before {
  filter: invert(1);
}

/* TAG */
.tag {
  border: 1px solid currentColor;
  padding: 5px 20px;
  border-radius: 20px;
  max-width: max-content;
  margin-bottom: 20px !important;
}

/* IMAGE */
.cover-img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 20px !important;
}

section.two-col .row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

section.two-col .row+.row {
  padding-top: 64px;
}

section.two-col ul {
  list-style: disc;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: 20px;
}


.single-post section.hero-section.inner {
  margin: 0;
  padding-bottom: 200px;
}

article.blog-detail {
  padding: 40px;
  border-radius: 26px;
  margin-top: -150px;
  position: relative;
  display: grid;
  gap: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.post-thumbnail {
  background: rgb(255 255 255 / 29%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 26px;
  overflow: hidden;
}

.post-content {
  display: grid;
  gap: 20px;
}

.post-content * {
  margin: 0;
}

.post-content ul {
  list-style: inside;
}

.post-content ol {
  list-style-type: nu;
  list-style-position: inside;
  line-height: 1.75;
}

.two-col img.cover-img {
  /* aspect-ratio: 16/9; */
  height: 100%;
}

.result img.img-radius {
  aspect-ratio: 16/9;
  height: 100%;
}

/**/

.stats-card {
  background: radial-gradient(97.57% 210.75% at 0.9% 2.98%,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(21px);
  backdrop-filter: blur(21px);
  clip-path: polygon(0 0,
      calc(100% - 77px) 0,
      100% 77px,
      100% 100%,
      0 100%);
  border-radius: 20px 0 30px 20px;
  max-width: calc(25% - 12px);
  height: 218px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px 40px 30px 40px;
  transform: translateY(30px);
  transition: 0.3s;
  font-weight: 600;
  text-transform: capitalize;
  justify-content: center;
}

.stats-number {
  color: #fff;
  font-weight: 900;
  font-size: 40px;
  margin-top: 30px;
  line-height: 1;
  transition: 0.4s;
}

.stats-text {
  color: #fff;
  transition: 0.5s;
  /* font-size: 18px; */
  /* display: block; */
  /* margin-bottom: 22px; */
}

/* Hover effect – SAME as before */
.stats-card:hover {
  transform: translateY(10px);
  gap: 20px;
  padding: 30px 40px 30px 40px;
  justify-content: flex-start;
}

.stats-card:hover .stats-number {
  /* margin-bottom: -10px; */
  margin-top: 0;
}

.stats-card:hover .stats-text {
  margin-top: -20px;
}

.row.hero-stats-row {
  gap: 15px;
  margin: 0;
  justify-content: space-between;
}

@media screen and (min-width: 992px) {
  section.two-col.default .row:nth-of-type(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  section.two-col.default .row:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  section.two-col.reversed .row:nth-of-type(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  section.two-col.reversed .row:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

/* section.why-choose-us + section.our-services {
  padding-bottom: 0;
} */
section.content+section.our-services,
section.two-col+section.our-services,
section.testimonial+section.our-services,
section.our-services+section.result,
section.result+section.why-choose-us,
section.testimonial+section.result,
section.two-col+section.tools {
  padding: 70px 0 0 0;
}

/* .industry-detail-page .our-services{
  padding-bottom: 70px;
} */
.profile img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 100%;
  height: 80px;
  border: solid;
}

.row-gap-4 {
  row-gap: 20px;
}

.error-404-page {
  padding: 120px 0 20px;
  background: linear-gradient(180deg, #76bcf7, rgba(255, 255, 255, 0.10));
  background: linear-gradient(180deg, #3c679f 0%, #76bcf7 40%, hsla(0, 0%, 100%, 0.05) 90%);
}

.error-404-page .container {
  width: 654px;
  backdrop-filter: blur(304px);
  padding: 40px;
  background: linear-gradient(357deg, #76bcf703, #ffffff47);
  backdrop-filter: blur(2px) saturate(100%);
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2),
    inset 0 4px 20px rgba(255, 255, 255, 0.3);
  position: relative;
}

.error-404-page .container.text-center:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 2rem;
  backdrop-filter: blur(1px);
  box-shadow: inset -10px -8px 0px -11px rgba(255, 255, 255, 1),
    inset 0px -9px 0px -8px rgba(255, 255, 255, 1);
  opacity: 0.6;
  z-index: -1;
  filter: blur(1px) drop-shadow(10px 4px 6px black) brightness(167%);
}

.error-section .error-code {
  font-size: 120px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.error-section .error-title {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--primary);
}

.error-section .error-text {
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--primary);
}

.error-section .common-btn {
  padding: 12px 28px;
  border-radius: 30px;
}

/* responsive */
@media (min-width: 992px) {

  header .navbar-menu>li:hover .down-arrow,
  header .navbar-menu>li.active .down-arrow {
    transform: rotate(180deg);
    transition: all 0.3s ease;
  }

  header .navbar-menu>li:hover .submenu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .submenu {
    position: absolute;
    background: var(--white);
    border-radius: 4px;
    width: 100%;
    left: 0;
    transition: all 0.3s ease;
    transform: translateY(30%);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    top: 100%;
    box-shadow: 0 0 10px #ccc;
    display: grid;
    padding: 20px;
    grid-template-columns: auto auto auto;
  }

  /*     .submenu li:first-child {
        border-radius: 24px 24px 0px 0px;
    }

    .submenu li:last-child {
        border-radius: 0px 0px 24px 24px;
    } */

  /*     .submenu li:hover {
        background: var(--primary);
    } */

  .navbar-menu li.active .down-arrow {
    transform: rotate(180deg);
  }
}

@media (max-width: 1199px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 100%;
  }
  .navbar-menu{
    gap: 30;
  } 
}

@media (max-width: 991px) {
  /* .hero-section.main .title-wrapper {
    min-height: 390px;
  } */

  .mobile-open {
    overflow: hidden;
  }

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

  .mobile-open .burger-menu {
    display: none;
  }

  .mobile-open .navbar-menu {
    left: 0;
    transition: 1s;
  }

  header.header-wrapper { 
    padding: 10px;
    border-radius:0 0 12px 12px;
  }

  header .right {
    position: absolute;
    right: 50px;
    top: 20px;
  }

  header .social-icons li {
    height: 28px;
    width: 28px;
  }

  .navbar-menu {
    background: var(--primary);
    height: 100vh;
    position: fixed;
    top: 0px;
    gap: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    flex-direction: column;
    align-items: flex-start;
    transition: 1s;
    z-index: 9;
    padding: 100px 20px 20px;
  }

  header .burger-menu {
    display: block;
    width: 25px;
  }

  header .mobile-toggle {
    position: absolute;
    right: 10px;
    z-index: 999;
    top:10px;
    display: block;
  }

  .down-arrow {
    position: absolute;
    right: 15px;
    top: 10px;
    width: 16px;
  }

  .round-icon {
    height: 35px;
    width: 35px;
  }

  .navbar-menu li.active .down-arrow {
    transform: rotate(180deg);
  }

  .navbar-menu>li {
    width: 100%;
    margin-bottom: 20px;
    flex-wrap: wrap;
    position: relative;
    padding: 0;
  }

  .submenu {
    position: static;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: 1s;
    width: 100%;
    overflow: hidden;
  }

  .navbar-menu li.active .submenu {
    overflow: auto;
    max-height: 100%;
    transition: 1s;
    opacity: 1;
    visibility: visible;
  }

  .submenu li {
    padding: 0px;
    margin: 15px 10px 0px;
  }

  .submenu li a {
    color: var(--white);
  }

  .submenu li:before {
    right: 0;
    background-color: var(--white);
  }

  .pt-70 {
    padding-top: 50px;
  }

  .pb-70 {
    padding-bottom: 50px;
  }

  .common-btn {
    padding: 11px 25px;
  }

  .title-wrapper {
    gap: 15px;
  }

  .image-h {
    height: 430px;
  }

  .inner-padding {
    padding: 30px 20px;
  }

  .custom-row-space {
    row-gap: 24px;
  }

  .footer-link li {
    margin-bottom: 5px;
  }

  .footer h6 {
    margin-bottom: 5px;
  }

  address {
    margin-bottom: 10px;
  }

  .stats-card {
    max-width: calc(50% - 15px);
    padding: 30px 20px;
    clip-path: polygon(0 0, calc(100% - 27px) 0, 100% 27px, 100% 100%, 0 100%);
    height: 190px;
  }

  .stats-card:hover {
    padding: 30px 20px;
  }

  .row.hero-stats-row {
    gap: 30px;
    text-align: center;
  }

  .stats-number {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 26px;
  }

  h6 {
    font-size: 16px;
  }

  p {
    font-size: 14px;
  }

  .image-h {
    height: 300px;
  }

  .rating-box {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-content .list-items,
  .about-content li:nth-child(2) .list-items,
  .about-content li:last-child .list-items {
    flex-direction: column-reverse;
  }

  .about-content .list-right {
    max-height: 100%;
  }

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

  .about-content .list-left,
  .about-content .list-right {
    width: 100%;
  }


  .result-wrapper {
    flex-direction: column;
  }

  .result-wrapper li {
    width: 100%;
  }

  .result-wrapper .result-box {
    text-align: center;
  }

  .gray-border-btn {
    padding: 20px 10px;
  }

  .other-service-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .contact-image {
    border-radius: 24px 24px 0px 0px;
    height: 350px;
  }

  .contact-left-content,
  .contact-right {
    padding: 20px;
  }

  .contact-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .contact-form .common-btn {
    margin: 0 auto;
  }

  .footer {
    padding: 50px 10px 10px;
  }

}


@media (max-width: 480px) {
  .stats-card {
    max-width: 100%;
  }
}

body {
  background-image: linear-gradient(219deg, rgba(248, 249, 250, 1) 0%, rgba(163, 205, 241, 0.5) 10%, rgba(248, 249, 250, 1) 20%, rgba(163, 205, 241, 0.5) 30%, rgba(248, 249, 250, 1) 40%, rgba(163, 205, 241, 0.5) 50%, rgba(248, 249, 250, 1) 59%, rgba(163, 205, 241, 0.5) 70%, rgba(248, 249, 250, 1) 80%, rgba(163, 205, 241, 0.5) 90%, rgba(248, 249, 250, 1) 100%);
  background-size: 250%;
  background-image: linear-gradient(to left top, #a3cdf1, #b1d4f3, #bedaf5, #cbe1f7, #d8e8f9, #dfecfa, #e6effc, #ecf3fd, #eff5fe, #f2f7fe, #f5f9ff, #f8fbff, #d8e8f9, #dfecfa, #e6effc, #ecf3fd, #eff5fe, #f2f7fe, #f5f9ff, #f8fbff, #d8e8f9, #dfecfa, #e6effc, #ecf3fd, #eff5fe, #f2f7fe, #f5f9ff, #f8fbff, #d8e8f9, #dfecfa, #e6effc, #ecf3fd, #eff5fe, #f2f7fe, #f5f9ff, #f8fbff);
  background-image: linear-gradient(242deg, rgb(163 205 241 / 30%) 0%, rgb(127 182 230 / 30%) 14%, rgb(215 212 255 / 40%) 29%, rgb(148 210 245 / 35%) 44%, rgb(221 249 255 / 30%) 58%, rgb(229 233 242 / 30%) 79%, rgb(244 245 247 / 30%) 89%);
  background-size: 200%;
  background-position: top center;
  color: #2F2F2F;
  /* color: #5F6368; */
}


/* .services-slider {
    margin-right: -120px; /* RIGHT side cut effect */
/*} */

.services-slider .slick-track {
  width: 100% !important;
}
.services-slider .service-slide {
    padding-right: 24px;
    height: auto;
    min-width: 320px;
}

.services-slider .slick-list {
    overflow: visible; /* ⭐ important */
}

.services-slider .slick-arrow {
    position: absolute;
    /* top: -60px; */
    right: 0;
    background:var(--primary);
    color:var(--white);
    border: none;
    padding: 20px;
    cursor: pointer;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.services-slider .slick-arrow::before {
    opacity: 1;
    font-size: 18px;
    color: inherit;
}
.services-slider .slick-arrow:hover {
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary);
}

.services-slider .slick-prev {
    right: 60px;
    left: 0;
}

/* ===============================
   GLOBAL BRAND BACKGROUND
   Soft premium gradient
================================ */

body {
    background: linear-gradient(
        225deg,
        rgba(163, 205, 241, 0.35) 0%,   /* #a3cdf1 */
        rgba(215, 212, 255, 0.35) 25%,  /* #d7d4ff */
        rgba(221, 249, 255, 0.35) 50%,  /* #ddf9ff */
        rgba(244, 245, 247, 0.6) 75%,   /* #f4f5f7 */
        rgba(248, 251, 255, 0.9) 100%
    );
    background-attachment: fixed;
    color: #2F2F2F;
}
/* ===============================
   CREATIVE PREMIUM CTA BUTTON
================================ */

.common-btn {
    position: relative;
    padding: 14px 56px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        #284b78,
        #3E6FA8
    );
    border: none;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow:
        0 12px 30px rgba(40, 75, 120, 0.35);
    border:solid 1px;
}

/* SHINE LAYER */
.common-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 100%
    );
    transform: translateX(-120%);
    transition: transform 0.6s ease;
}

/* GLOW BORDER */
.common-btn::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
     background: linear-gradient(
        135deg,
        rgb(0 98 182 / 90%),
        rgb(0 87 164)
    );
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

/* HOVER EFFECT */
.common-btn:hover {
    transform: translateY(0px);
    box-shadow:
        0 18px 45px rgba(40, 75, 120, 0.45);
    color: #ffffff;
}

/* SHINE MOVE */
.common-btn:hover::before {
    transform: translateX(120%);
}

/* SOFT GLOW */
.common-btn:hover::after {
    opacity: 1;
}

/* HERO SPECIFIC (white button version) */
.hero-section .common-btn {
    background: #ffffff;
    color: #284b78;
}

.hero-section .common-btn::after {
    background: linear-gradient(
        135deg,
        rgb(0 98 182 / 90%),
        rgb(0 87 164)
    );
}

.hero-section .common-btn:hover {
    color: #fff;
}
/***/

.country-dd {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  margin: 5px 0;
}

.country-btn {
  background: #fff;
  border: 1px solid #ddd;
  padding: 4px 9px 4px 6px;
  border-radius: 80px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: -2px 2px 2px #cccc;
  min-width: 75px;
}

.country-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 45px;
  background: #fff;
  list-style: none;
  padding: 5px 5px;
  margin: 0;
  width: 120px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  box-shadow: 0 0 10px #fff;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}

.country-menu li a {
  display: flex;
  gap: 8px;
  padding: 5px 15px 5px 2px;
  border-radius: 80px;
  text-decoration: none;
  color: #2F2F2F;
  transition: 0.3s;
  justify-content: center;
  text-shadow: -2px 2px 2px #cccc;
}

.country-menu li a:hover {
  background: rgb(152 206 239 / 25%);
}

/* open state */
.country-dd.open .country-menu {
  display: flex;
} 

.country-dd img  {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 3px #444;
}
.country-dd.open .country-btn {
    box-shadow: 0 0 10px #fff;
}