@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quattrocento:wght@400;700&display=swap");
body {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  margin: 0px;
  padding: 0px;
}
body::-webkit-scrollbar {
  width: 0.5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}
html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #123956;
  --secondary-color: #14b8a6;
  --gradient-color: linear-gradient(135deg, #ff6a00, #ff3d3d);
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
.bgGradient {
  background: var(--gradient-color);
}
p {
  font-size: 16px;
  color: #000;
}
ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
a,
button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  text-decoration: none;
}
button:focus,
input:focus,
textarea:focus,
select:focus,
a:hover {
  outline: none;
  box-shadow: none;
}
section {
  padding: 50px 0 50px;
}
.inlineHeader {
  display: flex;
  padding: 0px 0;
  align-items: center;
  justify-content: space-between;
}
.large_heading {
  font-size: clamp(2rem, 3.5vw, 3.9rem);
  font-weight: 700;
}
.heading {
  font-size: clamp(1.4rem, 2.8vw, 3rem);
  font-weight: 600;
}
.sub_heading {
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  font-weight: 500;
}

.small_heading {
  font-size: clamp(1rem, 1.5vw, 1.6rem);
  font-weight: 500;
}
.title {
  font-size: 18px;
}
.small-title{
    font-size: 14px!important;  
}
.fontWeight300 {
  font-weight: 300;
}
.fontWeight400 {
  font-weight: 400;
}
.fontWeight500 {
  font-weight: 500;
}
.fontWeight600 {
  font-weight: 600;
}
.fontWeight600 {
  font-weight: 700;
}
.fontWeight800 {
  font-weight: 800;
}
.fontWeight900 {
  font-weight: 900;
}
.header.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
.fontHeading {
  font-family: "Poppins", sans-serif;
}
.text_secondary {
  color: var(--secondary-color);
}
.text_primary {
  color: var(--primary-color);
}
.bgPrimary {
  background: var(--primary-color);
}
.bgSecondary {
  background: var(--secondary-color);
}
.bgGrey {
  background-color: #f1f1f1;
}
.containerFull {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
}

.header.stricky-fixed .leftLogo {
  width: 70px;
}
/* .header {
    padding: 10px 0;
  } */
.heroSection {
  background: url(../images/banner/banner-new2.jpg) no-repeat center
    center/cover;
  position: relative;
  height: calc(100vh - 90px);
  z-index: 1;
  display: flex;
  align-items: center;
  padding-bottom: 140px;
}
.heroSection:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
  width: 100%;
  height: 100%;
}
.leftHeroBanner {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 950px;
}

.leftLogo {
  width: 80px;
}
.leftLogo img {
  width: 100%;
}
.centerMenu ul {
  display: flex;
}
.centerMenu ul li a {
  color: #333;
  font-size: 17px;
  font-weight: 500;
  padding: 5px 15px;
  &:hover {
    color: var(--secondary-color);
  }
}
/*.centerMenu ul li a.active {*/
/*  color: var(--secondary-color);*/
/*}*/
.centerMenu li.active > a {
  color: var(--secondary-color);
}
.btnTheme {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 17px;
  line-height: 30px;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  padding: 12px 35px;
  z-index: 1;
  color: #fff;
  border: none;
}
.btnTheme:after,
.btnSecondary:after {
  content: "";
  position: absolute;
  width: 0;
  top: 0;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  background: #000;
  z-index: -1;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.btnTheme:hover:after,
.btnSecondary:hover:after {
  width: 100%;
}
.btnTheme:hover,
.btnSecondary:hover {
  color: #fff;
}
.subHeader {
  background: var(--primary-color);
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
}

.subHeaderContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.subLeft a {
  color: #fff;
  margin-right: 20px;
  text-decoration: none;
  transition: color 0.3s;
}

.subLeft a:hover {
  color: var(--secondary-color);
}

.subLeft i {
  margin-right: 5px;
}

.subRight.socialIcons a {
  margin-left: 10px;
  color: #fff;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  transition: 0.3s ease;
  text-decoration: none;
}

.subRight.socialIcons a.facebook {
  background: #1877f2;
}
.subRight.socialIcons a.linkedin {
  background: #0a66c2;
}

.subRight.socialIcons a.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.subRight.socialIcons a.twitter {
  background: #1da1f2;
}
.footer {
  background: #111;
  padding: 60px 0 0 0;
}
.bottom-border {
  border-bottom: 1px solid #333;
}
.itemFooter ul li a {
  display: inline-block;
  color: #eee;
  font-size: 15px;
  padding: 5px 0;
  transition: 0.3s;
}

.itemFooter ul li a:hover {
  color: var(--secondary-color);
}

.textLight {
  color: #eee;
}
/*.socialLink ul {*/
/*  display: flex;*/
/*}*/
/*.socialLink ul li a {*/
/*  display: inline-block;*/
/*  padding: 15px;*/
/*  color: #eee;*/
/*  font-size: 17px;*/
/*  transition: 0.3s;*/
/*}*/
/*.socialLink ul li a:hover {*/
/*  color: var(--secondary-color);*/
/*}*/
.socialLink ul {
  display: flex;
  margin-top:20px;
  margin-bottom:20px;
}

.socialLink ul li {
  list-style: none;
  margin-right: 10px;
}

.socialLink ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}
.socialLink ul li.instagram a {
  background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, #fdf497 5%, #fd5949 45%, 
    #d6249f 60%, #285AEB 90%);
}

.socialLink ul li.email a {
  background: var(--primary-color);
}

.socialLink ul li a:hover {
  transform: translateY(-5px);
  color:#fff;
}
.bottomMenu ul {
  display: flex;
  gap: 15px;
}
.subRight.socialIcons a:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}
.copyright {
  background: #fff;
  padding: 15px 0;
  text-align: center;
}
.copyright p {
  color: #000;
}
.whatsAppIcon {
  position: fixed;
  bottom: 20px;
  right: 5px;
  z-index: 99;
}
.whatsAppIcon a {
  display: inline-block;
  width: 55px;
  height: 55px;
  background: #40c351;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #fff;
  line-height: 55px;
  text-align: center;
  font-size: 30px;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -140px;
  right: 10px;
  color: #fff;
  background-color: var(--secondary-color);
  z-index: 999;
  width: 45px;
  text-align: center;
  height: 45px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 18px;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  overflow: hidden;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 80px;
}
.infoBox {
  border: 1px solid #ccc;
  background: #fff;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.infoHeader {
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 20px;
  display: inline-block;
}
.infoBody {
  padding: 20px;
}

.infoBody p {
  margin-bottom: 20px;
}

.infoBox.active {
  background: var(--primary-color);
  color: #fff;
  border: none;
}

.infoBox.active p {
  color: #f1f1f1;
}

.infoBox.active .whiteHeader {
  background: var(--secondary-color);
  color: #fff;
}
.pad-extra {
  padding-top: 20px;
  padding-bottom: 20px;
}
.border-info {
  border-left: 1px solid var(--secondary-color);
}
.titleStyle {
  display: flex;
  align-items: center;
  gap: 15px;
}

.titleStyle .left,
.titleStyle .right {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--secondary-color);
}

.titleStyle .left::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--secondary-color);
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.titleStyle .right::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--secondary-color);
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.aboutRight {
  overflow: hidden;
  border-radius: 10px;
}

.aboutRight img {
  max-width: 100%;
  width: 100%;
  border-radius: 10px;
  height: 480px;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.aboutRight img:hover {
  transform: scale(1.06);
  filter: brightness(1.05);
}
.whyCard {
  background: #fff;
  padding: 30px 28px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease-in-out;
  height: 100%;
}

.whyCard:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.whyCard2 {
  background: #fff;
  border: 1px solid #ccc;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease-in-out;
  height: 100%;
}

.whyCard2:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.whyIconCircle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--primary-color);
  /* background: linear-gradient(135deg, #123956 0%, #14B8A6 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 12px 30px rgba(18, 57, 86, 0.18);
}

.whyIconCircle i {
  font-size: 30px;
  color: #fff;
}
.impactCard {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 25px;
  height: 100%;
  transition: all 0.35s ease-in-out;
}

.impactCard:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.14);
}
.impactIcon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.impactIcon i {
  font-size: 32px;
  color: #fff;
}

.impactNumber {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.itemTestimonial hr {
  opacity: 0.15;
}
.itemTestimonial {
  height: 100%;
}
.iconQuote {
  width: 50px;
}
.iconQuote img {
  max-width: 100%;
}
.iconsCol {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: #fff;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}
.itemCol {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.itemCol:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  box-shadow: var(--bs-box-shadow) !important;
}
.accordion-button {
  font-size: 1.1rem;
  font-weight: 600;
}

.accordion-button:focus {
  outline: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background: var(--secondary-color);
  box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.bgAction {
  background: url(../images/banner/banner.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
   overflow: hidden;
  z-index: 1;
}
.bgAction:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.itemServices {
  padding: 20px;
}
.iconServices {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;

  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.itemForm {
  margin-bottom: 24px;
}

.itemForm label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
}

.itemForm label span {
  color: red;
}

.itemForm input,
.itemForm select,
.itemForm textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 14px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  background: #fff;
  outline: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.itemForm input,
.itemForm select {
  height: 50px;
}

.itemForm textarea {
  min-height: 140px;
  resize: none;
}

.itemForm input:focus,
.itemForm select:focus,
.itemForm textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.itemContact {
  display: flex;
  gap: 15px;
}
.btnWhatsapp {
  background-color: #25d366 !important;
}
.chooseIcon {
  width: 35px;
  height: 35px;
  border-radius: 14px;
  background: var(--gradient-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chooseIcon i {
  font-size: 18px;
  color: #fff;
  line-height: 1;
}

.steps-wrapper {
  position: relative;
  margin-top: 50px;
}

.timeline-line {
  position: absolute;
  top: 95px;
  left: 2%;
  right: 2%;
  height: 2px;
  border-top: 2px dotted #cbd5e1;
  z-index: 0;
}

.step-col {
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.step-top {
  position: relative;
}

.step-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.dot {
  width: 16px;
  height: 16px;
  border: 2px solid #94a3b8;
  border-radius: 50%;
  position: relative;
  margin: 18px auto;
}

.dot::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #94a3b8;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dot::after {
  content: "";
  width: 2px;
  height: 28px;
  background: #cbd5e1;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.step-number {
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  margin-top: 22px;
  color: var(--primary-color);
}

.step-box {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 70px 20px 40px;
  min-height: 280px;

  clip-path: polygon(
    0 14%,
    34% 14%,
    50% 0,
    66% 14%,
    100% 14%,
    100% 100%,
    0 100%
  );

  transition: all 0.35s ease;
}

.step-col:hover .step-icon {
  transform: translateY(-4px);
  transition: 0.3s ease;
}
.color-1 {
  background: #60a5fa;
}

.color-2 {
  background: #f87171;
}

.color-3 {
  background: #34d399;
}

.color-4 {
  background: #f59e0b;
}

.color-5 {
  background: #22d3ee;
}

.country-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.country-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.card-top {
  position: relative;
  padding: 35px 30px 90px;
  color: #fff;
}

.top-content {
  position: relative;
  z-index: 2;
}

.country-code {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

.card-top {
  position: relative;
  padding: 35px 30px 50px;
  color: #fff;
}

.top-content {
  position: relative;
  z-index: 2;
}

.uni-badge {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 50px;
  display: block;
}

.wave path {
  fill: #fff;
}

.card-body-custom {
  padding: 5px 30px 15px;
  flex: 1;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.info-list li {
  font-size: 15px;
  color: #334155;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-list li span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eff6ff;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.highlight-title {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 18px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tags span {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.country-1 .card-top {
  background: linear-gradient(135deg, #123956, #1d5c89);
}

.country-2 .card-top {
  background: linear-gradient(135deg, #ff6a00, #ff3d3d);
}

.country-3 .card-top {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}
.country-4 .card-top {
  background: linear-gradient(135deg, #ff004c, #ff2d55);
}
.country-5 .card-top {
  background: var(--secondary-color);
}

.privacyList {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.privacyList li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  margin-top: 15px;
}

.privacyList li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.ppt-service-card {
  position: relative;
  height: 100%;
  min-height: 190px;
  display: flex;
  align-items: stretch;
}

.color-shape {
  width: 190px;
  height: calc(100% + 24px);
  border-radius: 28px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.service-content-card {
  position: relative;
  z-index: 2;
  background: #fff;
  width: calc(100% - 25px);
  margin-left: 25px;
  border-radius: 20px;
  padding: 24px 24px 24px 22px;
  display: flex;
  align-items: center;
  gap: 22px;
  height: 100%;
  min-height: 160px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.icon-box {
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.divider-line {
  width: 1px;
  height: 92px;
  background: #d1d5db;
  flex-shrink: 0;
}

.ppt-service-card:hover .service-content-card {
  transform: translateY(-4px);
  transition: 0.35s ease;
}

.shape-1 {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.shape-2 {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.shape-3 {
  background: linear-gradient(135deg, #a3e635, #65a30d);
}

.shape-4 {
  background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.shape-5 {
  background: linear-gradient(135deg, #fb923c, #ea580c);
}

.shape-6 {
  background: linear-gradient(135deg, #06b6d4, #0284c7);
}
.centerMenu ul li {
  position: relative;
}
/* .centerMenu ul li ul {
  position: absolute;
  top: 65px;
  visibility: hidden;
  opacity: 0px;
  transition: all 0.3s ease-in-out;
  padding: 10px 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  opacity: 0;
  left: 0px;
  width: 250px;
  z-index: 9;
  background: #fff;

  border-radius: 5px;
} 
 .centerMenu ul li ul li {
  width: 100%;
} */
.centerMenu .twoColumn {
  position: absolute;
  top: 65px;
  visibility: hidden;
  opacity: 0px;
  transition: all 0.3s ease-in-out;
  padding: 10px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  opacity: 0;
  left: 0px;
  width: 450px;
  z-index: 9;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.centerMenu .twoColumn li {
  width: calc(50% - 10px);
  margin-bottom: 12px;
}
.centerMenu .twoColumn li a {
  display: flex;
  align-items: center;
  gap: 8px;

  border: 1px solid #ccc;
  border-radius: 15px;
}

.centerMenu .twoColumn li img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}
.centerMenu ul li ul li a {
  padding: 10px 20px;
  text-transform: capitalize;
  color: var(--primary-color);
  font-weight: 600;
  display: block;
  font-size: 14px;
}
.centerMenu ul li ul li a:hover {
  background: var(--primary-color);
  color: #fff;
}
.centerMenu ul li:hover ul {
  top: 55px;
  opacity: 1;
  visibility: visible;
}
.innerPage {
  background-size: cover;
  background-position: center;
  backgruound-repeat: no-repeat;
  height: 350px;
  padding-top: 110px;
  position: relative;
  z-index: 1;
  display: flex;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.custom-border {
  border-radius: 50px;
}
.iconBox {
  width: 70px;
  height: 70px;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}
.itemProcess {
  display: flex;
  column-gap: 30px;
  position: relative;
}
.iconProcess {
  width: 65px;
  height: 65px;
  border-radius: 20px;

  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
}
.contentProcess {
  width: calc(100% - 90px);
  margin-bottom: 25px;
}
.itemProcess:after {
  content: "";
  position: absolute;
  top: 70px;
  left: 35px;
  height: calc(100% - 70px);
  width: 2px;
}
.itemProcess.line-1:after {
  background: linear-gradient(
    to bottom,
    rgba(59, 130, 246, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.itemProcess.line-2:after {
  background: linear-gradient(
    to bottom,
    rgba(139, 92, 246, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.itemProcess.line-3:after {
  background: linear-gradient(
    to bottom,
    rgba(163, 230, 53, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.itemProcess.line-4:after {
  background: linear-gradient(
    to bottom,
    rgba(20, 184, 166, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.itemProcess.line-5:after {
  background: linear-gradient(
    to bottom,
    rgba(251, 146, 60, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.itemProcess.shape-6:after {
  background: linear-gradient(
    to bottom,
    rgba(6, 182, 212, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.listBullet li {
  padding: 5px;
  position: relative;
  padding-left: 20px;
}
.listBullet li:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--secondary-color);
  border-radius: 50%;
  left: 0;
  top: 12px;
}
.docBox {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.docBox:hover {
  transform: translateY(-5px);
}

.iconBg {
  min-width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.docBox p {
  font-weight: 500;
}
.intakeCard {
  padding: 25px 20px;
}

.iconTop {
  width: 65px;
  height: 65px;
  background: #fff;
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
}
.infoBox2 {
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
}

.infoBox2:hover {
  transform: translateY(-5px);
}

.infoBox2 i {
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
}
.alert-primary {
  color: #084298;
  background-color: #cfe2ff;
  border-color: #b6d4fe;
}
.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
.infoBigBox {
  padding: 30px;
  border-radius: 15px;
  height: 100%;
  transition: 0.3s;
}

.infoBigBox ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.infoBigBox ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}
.infoBigBox ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-size: 14px;
}

.table-wrapper {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.table-wrapper th,
.table-wrapper td {
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  text-align: left;
}

.table-wrapper thead {
  background-color: var(--primary-color);
  color: white;
}

.table-wrapper tbody tr:nth-child(even) {
  background-color: #f3f3f3;
}
.serviceCard {
  padding: 30px 20px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease-in-out;
  height: 100%;
}

.serviceCard:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.serviceCard .icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

.serviceCard .icon i {
  font-size: 22px;
}
.customList-new {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.customList-new li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.6;
}

.customList-new li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--primary-color);
  font-size: 16px;
  line-height: 1;
}
.destinationCard {
  display: block;
  padding: 12px 9px;
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  background: #fff;
  color: var(--primary-color);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.imageWrapper img {
  width: 100%;
  height: 550px;
  border-radius: 12px;
}
/* .stickyContent{
  position: sticky;
  top: 80px;
} */
.popupOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popupBox {
  background: #fff;
  width: 800px;
  max-width: 95%;
  border-radius: 10px;
  position: relative;

  overflow: hidden;
}

.closeBtn {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 40px;
  cursor: pointer;
  color: #000;
  padding-bottom: 20px;
}

.popupBox input,
.popupBox select {
  height: 55px !important;
  border-radius: 8px;
  font-size: 15px;
  border: 1px solid #888;
}
.popupBox input:focus,
.popupBox select:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #ccc !important;
}
.inputIcon {
  position: relative;
}
.iti {
  position: relative;
  width: 100% !important;
}

.iti input {
  width: 100% !important;
  padding-left: 60px;
}
/* Default (normal form) */
.iti__country-list {
  position: absolute !important;
  top: 100% !important; 
  bottom: auto !important;
  z-index: 9999 !important;
  max-height: 200px;
  width: 280px !important;
  overflow-y: auto;
}

#enquiryPopup .iti__country-list {
  top: auto !important;
  bottom: 100% !important; 
  margin-bottom: 5px;
}

.inputIcon i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 14px;
}

.inputIcon input,
.inputIcon select {
  padding-left: 35px;
  height: 45px;
  border-radius: 8px;
}
.iti {
  width: 100% !important;
}

.iti input {
  width: 100% !important;
   padding-left: 60px; 
}
.popupBox .row {
  margin: 0;
  display: flex;
  align-items: stretch;
}


.popupImgWrap {
  width: 100%;
  height: 100%;
}

.popupImgWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.innerPage2 {
  background-size: cover;
  background-position: center;
  backgruound-repeat: no-repeat;
  height: 300px;
  padding-top: 110px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.innerPage2:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}
