@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&amp;display=swap");

:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --primary-theme: #FE5722;
  --primary-theme2: #FE5722;
  --primary-green: #28a745;
  --header: #16171A;
  --base: #FE5722;
  --text-color: #5E5F63;
  --text-color2: #8A8C94;
  --text-color3: #FAFAFA;
  --border-color: #EEEFF4;
  --border-color2: #D7D7D7;
  --button: #1C2539;
  --button2: #030734;
  --ratting: #F09815;
  --bg: #F5F5F7;
  --bg2: #F6F6F6;
  --bg3: #F5F6FD;
  --bg4: #16171A;
  --bg5: #F8F8F8;
  --bg6: #16171A;
  --bg7: #EDEEEE;
  --color-gradient-1: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 19.36%, rgba(15, 116, 230, 0.55) 71.26%, #166FD3 100%);
  --color-gradient-2: linear-gradient(180deg, rgba(0, 0, 0, 0.31) 0%, rgba(0, 0, 0, 0.78) 100%);
  ---box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.primary-button {
  padding: 15px 25px;
  border: unset;
  border-radius: 30px;
  color: var(--white);
  z-index: 1;
  background: var(--primary-theme);
  position: relative;
  -webkit-box-shadow: 0 20px 25px -5px #fe57224a;
  box-shadow: 0 20px 25px -5px #fe57224a;
  transition: all 250ms;
  overflow: hidden;
}

.primary-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 30px;
  background-color: var(--white);
  z-index: -1;
  -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms;
  border: 1px solid var(--primary-theme);
}

.primary-button:hover {
  color: var(--primary-theme);
}

.primary-button:hover::before {
  width: 100%;
}

.primary-outline-button {
  padding: 15px 25px;
  border: 1px solid var(--primary-theme);
  border-radius: 30px;
  color: var(--primary-theme);
  z-index: 1;
  background: var(--white);
  position: relative;
  transition: all 250ms;
  overflow: hidden;
}

.primary-outline-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0%;
  width: 0;
  border-radius: 30px;
  background-color: var(--primary-theme);
  z-index: -1;
  -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms;
  border: 1px solid var(--primary-theme);
}

.primary-outline-button:hover {
  color: var(--white);
}

.primary-outline-button:hover::before {
  width: 100%;
  height: 100%;
}

.theme-btn {
  background-color: var(--primary-theme);
  font-weight: 700;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  padding: 24px 45px;
  /* border-radius: 8px; */
  z-index: 9;
  display: inline-block;
  line-height: 1;
}

.theme-btn i {
  margin-left: 8px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
  .theme-btn i {
    margin-left: 3px;
    font-size: 12px;
  }
}

.theme-btn span {
  position: relative;
  z-index: 9;
}

.theme-btn::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 0;
  content: "";
  background-color: var(--header);
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  z-index: 1;
}

.theme-btn::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 0;
  content: "";
  background-color: var(--header);
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  z-index: 1;
}

.theme-btn:hover {
  color: var(--white);
}

.theme-btn:hover::before {
  height: 100%;
}

.theme-btn:hover::after {
  height: 100%;
}

.theme-btn:hover i {
  transform: translate(5px);
}

.theme-btn.hover-white::before,
.theme-btn.hover-white::after {
  background-color: var(--white);
}

.theme-btn.hover-white:hover {
  color: var(--header);
}

.theme-btn.hover-white:hover i {
  transform: translate(5px);
  color: var(--header);
}

.theme-btn.bg-white {
  color: var(--header);
}

.theme-btn.bg-white:hover {
  color: var(--white);
}

.theme-btn.bg-white:hover i {
  transform: translate(5px);
  color: var(--white);
}

.theme-btn.theme-btn-2 {
  background-color: var(--primary-theme2);
}

.theme-btn.line-height {
  line-height: 1.3;
}

@media (max-width: 767px) {
  .theme-btn {
    padding: 22px 30px;
  }
}

@media (max-width: 575px) {
  .theme-btn {
    padding: 18px 30px;
  }

  .theme-btn span {
    font-size: 14px;
  }
}

.link-btn {
  text-transform: capitalize;
  font-size: 16px;
  color: var(--header);
  font-weight: 600;
}

.link-btn span {
  background-image: linear-gradient(var(--primary-theme), var(--primary-theme));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.link-btn i {
  margin-left: 10px;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 25px;
  background-color: var(--primary-theme);
  text-align: center;
  color: var(--white);
}

.link-btn:hover span {
  color: var(--primary-theme);
  background-size: 100% 1px;
}

.link-btn.link-btn-2 span {
  background-image: linear-gradient(var(--primary-theme2), var(--primary-theme2));
}

.link-btn.link-btn-2 i {
  background-color: var(--primary-theme2);
}

.link-btn.link-btn-2:hover span {
  color: var(--primary-theme2);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text-color);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

.orange-text {
  color: var(--primary-theme) !important;
}

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

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 72px;
  font-weight: 600;
  line-height: 106%;
}

h2 {
  font-size: 48px;
  line-height: 115%;
  font-weight: 700;
}

@media (max-width: 1199px) {
  h2 {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 145%;
}

@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 575px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
  font-weight: 600;
}

h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 156%;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 25px;
  bottom: 35px;
  height: 50px;
  width: 50px;
  transition: all 0.4s ease-in-out;
}

.scroll-up::after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  content: "\f176";
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-theme);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.scroll-up svg path {
  fill: none;
}

.scroll-up svg.scroll-circle path {
  stroke: var(--primary-theme);
  stroke-width: 4px;
  box-sizing: border-box;
  transition: all 0.4s ease-in-out;
}

.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
  margin-top: -6px;
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}

.section-title span {
  color: var(--primary-theme);
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.section-title span.color-style {
  color: var(--primary-theme);
}

.section-title h2 {
  text-transform: capitalize;
}

.section-title.style-2 span {
  color: var(--primary-theme2);
  text-decoration: none;
  letter-spacing: 0;
}

.section-title.style-2 h2 {
  text-transform: uppercase;
}

.section-title.style-2 h2 span {
  color: var(--primary-theme2);
  letter-spacing: 0;
  text-decoration: none;
}

.title-section-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .title-section-area {
    flex-wrap: wrap;
    gap: 0;
    text-align: center;
    justify-content: center;
  }
}

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

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg);
}

.section-bg-2 {
  background-color: var(--bg5);
}

.section-bg-3 {
  background-color: var(--bg6);
}

.section-bg-4 {
  background-color: var(--bg7);
}

.section-bg-5 {
  background-color: #191919;
}

.footer-bg {
  background-color: var(--bg4);
}

.section-padding {
  padding: 120px 0;
}

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

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

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes toggle {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes moveCursor1 {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes moveCursor1 {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@-webkit-keyframes moveCursor2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes moveCursor2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.animation__rotate {
  animation: rotate 40s linear infinite;
}

@keyframes rotateY {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.animation__rotateY {
  animation: rotateY 40s linear infinite;
}

@keyframes rounded {
  50% {
    transform: rotate(30deg);
  }
}

@keyframes handed {
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes right-image-bounce {
  0% {
    transform: translateX(8px);
  }

  50% {
    transform: translateX(-12px);
  }

  100% {
    transform: translateX(8px);
  }
}

@keyframes top-image-bounce {
  0% {
    transform: translateY(8px);
  }

  50% {
    transform: translateY(-12px);
  }

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

@-webkit-keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    transform: translateY(-30px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    transform: translateY(-30px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@-webkit-keyframes video-animation {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    opacity: 0;
    transform: scale(2);
  }
}

@keyframes video-animation {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    opacity: 0;
    transform: scale(2);
  }
}

.header-top-section {
  background-color: var(--bg4);
  padding: 10px 0;
  position: relative;
  z-index: 9;
}

@media (max-width: 991px) {
  .header-top-section {
    display: none;
  }
}

.header-top-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--primary-theme);
  z-index: -1;
  left: 73%;
}

@media (max-width: 1899px) {
  .header-top-section::before {
    display: none;
  }
}

.header-top-section-2 {
  background-color: var(--bg7);
}

@media (max-width: 1199px) {
  .header-top-section-2 {
    display: none;
  }
}

.header-top-section-3 {
  background-color: #F1F5FF;
}

@media (max-width: 1199px) {
  .header-top-section-3 {
    display: none;
  }
}

.header-top-section-3 .container-fluid {
  padding: 0 100px;
}

@media (max-width: 1399px) {
  .header-top-section-3 .container-fluid {
    padding: 0;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-wrapper .contact-list {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-top-wrapper .contact-list li {
  font-size: 15px;
  color: var(--text-color2);
}

.header-top-wrapper .contact-list li a {
  color: var(--text-color2);
}

.header-top-wrapper .contact-list li i {
  color: var(--primary-theme);
  margin-right: 10px;
}

.header-top-wrapper .top-right {
  display: flex;
  align-items: center;
  gap: 65px;
}

.header-top-wrapper .top-right .social-icon {
  gap: 15px;
}

.header-top-wrapper .top-right .social-icon a {
  color: var(--text-color2);
}

.header-top-wrapper .top-right .social-icon a:hover {
  color: var(--primary-theme);
}

.header-top-wrapper .top-right .header-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-wrapper .top-right .header-menu li a {
  color: var(--white);
  background-image: linear-gradient(var(--white), var(--white));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.header-top-wrapper .top-right .header-menu li a:hover {
  background-size: 100% 1px;
}

@media (max-width: 1899px) {
  .header-top-wrapper .top-right .header-menu li a {
    color: var(--text-color2);
    background-image: linear-gradient(var(--text-color2), var(--text-color2));
  }
}

.header-top-wrapper.style-2 .contact-list {
  display: initial;
}

.header-top-wrapper.style-2 .contact-list li {
  color: var(--header);
  font-weight: 500;
}

.header-top-wrapper.style-2 .contact-list li .line-none {
  text-decoration: none !important;
}

.header-top-wrapper.style-2 .top-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-top-wrapper.style-2 .flag-wrap {
  position: relative;
  width: 160px;
}

.header-top-wrapper.style-2 .flag-wrap .nice-select {
  padding: 10px 7px 10px 55px;
  background: transparent;
  border: none;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 999;
}

.header-top-wrapper.style-2 .flag-wrap .nice-select span {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--header);
}

.header-top-wrapper.style-2 .flag-wrap .flag {
  position: absolute;
  top: 9px;
  left: 15px;
  z-index: 1;
}

@media (max-width: 767px) {
  .header-top-wrapper.style-2 .flag-wrap .flag {
    display: none;
  }
}

.header-top-wrapper.style-2 .flag-wrap .flag img {
  width: 100%;
  height: 100%;
  border: 4px solid var(--white);
  border-radius: 50%;
}

.header-top-wrapper.style-2 .top-right {
  gap: 35px;
}

.header-top-wrapper.style-2 .top-right .header-menu {
  padding: 15px 25px;
  background-color: var(--primary-theme);
}

@media (max-width: 1899px) {
  .header-top-wrapper.style-2 .top-right .header-menu li a {
    color: var(--white);
    background-image: linear-gradient(var(--white), var(--white));
  }
}

.header-top-wrapper.style-2 .top-right .social-icon {
  gap: 20px;
}

.header-top-wrapper.style-2 .top-right .social-icon a {
  color: var(--header);
}

.header-top-wrapper.style-2 .top-right .social-icon a:hover {
  color: var(--primary-theme);
}

.header-top-wrapper.style-3 .top-left {
  display: initial;
}

.header-top-wrapper.style-3 .top-left .contact-list {
  display: flex;
  align-items: center;
  gap: 25px;
}

@media (max-width: 1600px) {
  .header-top-wrapper.style-3 .top-left .contact-list {
    gap: 10px;
  }
}

.header-top-wrapper.style-3 .top-left .contact-list li {
  font-size: 15px;
  color: var(--header);
  font-weight: 500;
}

@media (max-width: 1600px) {
  .header-top-wrapper.style-3 .top-left .contact-list li {
    font-size: 14px;
  }
}

.header-top-wrapper.style-3 .top-left .contact-list li:not(:last-child) {
  border-right: 1px solid var(--border-color2);
  padding-right: 20px;
}

@media (max-width: 1600px) {
  .header-top-wrapper.style-3 .top-left .contact-list li:not(:last-child) {
    padding-right: 10px;
  }
}

.header-top-wrapper.style-3 .top-left .contact-list li span {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--primary-theme2);
  padding: 5px 10px;
  color: var(--white);
  margin-right: 10px;
}

.header-top-wrapper.style-3 .top-left .contact-list li a {
  text-decoration: underline;
  color: var(--header);
}

.header-top-wrapper.style-3 .top-left .contact-list li a:hover {
  color: var(--primary-theme2);
}

.header-top-wrapper.style-3 .top-left .contact-list li i {
  color: var(--primary-theme2);
  margin-right: 10px;
}

.header-top-wrapper.style-3 .top-right {
  gap: 5px;
}

.header-top-wrapper.style-3 .top-right .nice-select.style-2 {
  background: transparent;
  border: none;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 999;
  padding: 0 30px;
}

.header-top-wrapper.style-3 .top-right .social-icon {
  background-color: var(--primary-theme2);
  padding: 18px 25px;
}

.header-top-wrapper.style-3 .top-right .social-icon a {
  color: var(--white);
}

.header-top-wrapper.color-style .top-left {
  display: initial;
}

.header-top-wrapper.color-style .top-left .contact-list li span {
  background-color: var(--primary-theme);
}

.header-top-wrapper.color-style .top-left .contact-list li a:hover {
  color: var(--primary-theme);
}

.header-top-wrapper.color-style .top-left .contact-list li i {
  color: var(--primary-theme);
}

.header-top-wrapper.color-style .top-right .social-icon {
  background-color: var(--primary-theme);
}

.header-section {
  position: relative;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  z-index: 999;
}

.header-section::before {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 110px;
  content: "";
  background-color: var(--primary-theme);
  z-index: -1;
}

@media (max-width: 1899px) {
  .header-section::before {
    display: none !important;
  }
}

.header-section-2 {
  position: relative;
}

.header-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg5);
  z-index: -1;
  top: 50%;
}

@media (max-width: 991px) {
  .menu-thumb {
    display: none !important;
  }
}

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

@media (max-width: 991px) {
  .header-main {
    padding: 15px 0px;
  }
}

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 40px;
}

.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  padding: 26px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li.active a {
  color: var(--primary-theme) !important;
}

.header-main .main-menu ul li a i {
  font-size: 15px;
  font-weight: 600;
  margin-left: 5px;
}

.header-main .main-menu ul li a:hover {
  color: var(--primary-theme) !important;
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 240px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  padding: 0 25px;
  padding-bottom: 11px;
  padding-top: 11px;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}

.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
  background: var(--primary-theme);
  color: var(--white) !important;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--primary-theme);
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--primary-theme);
}

.header-main .main-menu ul li .has-home-menu {
  width: 1000px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}

.header-main .main-menu ul li .has-home-menu .home-menu {
  position: relative;
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb {
  position: relative;
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb .demo-button .theme-btn {
  padding: 14px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
  border-radius: 0px !important;
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb .demo-button .theme-btn:hover::before,
.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb .demo-button .theme-btn:hover::after {
  border-radius: 0px;
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb::before {
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, var(--primary-theme2) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  content: "";
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb:hover.home-menu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-thumb img {
  width: 100%;
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

.header-main .main-menu ul li:hover>a {
  color: var(--primary-theme);
}

.header-main .main-menu ul li:hover>a::after {
  color: var(--primary-theme);
}

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

.header-sticky-section .container-fluid {
  padding: 0 50px;
}

@media (max-width: 470px) {
  .header-sticky-section .container-fluid {
    padding: 0 15px;
  }
}

@media (max-width: 1199px) {
  .header-sticky-section .mega-menu-wrapper .header-main {
    gap: 20px;
  }
}

.header-sticky-section .mega-menu-wrapper .header-main .header-left {
  display: flex;
  align-items: center;
  gap: 180px;
}

@media (max-width: 1899px) {
  .header-sticky-section .mega-menu-wrapper .header-main .header-left {
    gap: 100px;
  }
}

@media (max-width: 1399px) {
  .header-sticky-section .mega-menu-wrapper .header-main .header-left {
    gap: 90px;
  }
}

@media (max-width: 1199px) {
  .header-sticky-section .mega-menu-wrapper .header-main .header-left {
    gap: 60px;
  }
}

.header-sticky-section .mega-menu-wrapper .header-main .header-right {
  gap: 90px;
}

@media (max-width: 1899px) {
  .header-sticky-section .mega-menu-wrapper .header-main .header-right {
    gap: 30px;
  }
}

@media (max-width: 1399px) {
  .header-sticky-section .mega-menu-wrapper .header-main .header-right {
    gap: 50px;
  }
}

@media (max-width: 1199px) {
  .header-sticky-section .mega-menu-wrapper .header-main .header-right {
    gap: 40px;
  }
}


@media (max-width: 1199px) {
  .header-sticky-section .mega-menu-wrapper .header-main .header-right .header-button {
    display: none !important;
  }
}

.header-sticky-section .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle {
  color: var(--primary-theme);
}

.header-sticky-section .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle {
  color: var(--header);
}

.header-sticky-section .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle .header-bar span {
  background: var(--header);
}

.header-sticky-section .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle .header-bar span:first-child {
  background: var(--header);
}

.header-sticky-section .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle .header-bar span:nth-child(2) {
  background: var(--header);
}

.header-sticky-section .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle .header-bar span:last-child {
  background: var(--header);
}

.sidebar__toggle {
  cursor: pointer;
}

.sidebar__toggle .header-bar {
  position: relative;
  width: 31px;
  height: 18px;
}

.sidebar__toggle .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: var(--white);
  overflow: hidden;
}

.sidebar__toggle .header-bar span:first-child {
  top: 0;
  background: var(--white);
  left: 16px;
  width: 15px;
}

.sidebar__toggle .header-bar span:nth-child(2) {
  top: 44%;
  background: var(--white);
  width: 30px;
}

.sidebar__toggle .header-bar span:last-child {
  bottom: 0;
  background: var(--white);
  width: 15px;
}

.sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}

.sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}

.sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}

.sidebar__toggle .header-bar:hover {
  cursor: pointer;
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  transition: all 0.9s;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}



.sticky.header-sticky-section .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle {
  color: var(--primary-theme);
}

.sticky.header-2 {
  background-color: var(--primary-theme);
}

.sticky.header-2 .mega-menu-wrapper .header-main {
  padding: 0;
}

.sticky.header-2 .mega-menu-wrapper .header-main .logo {
  display: block;
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--primary-theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}

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

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--primary-theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 50px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--primary-theme);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--header);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border-color);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--primary-theme);
  color: var(--white);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--primary-theme);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ml-100 {
  margin-left: 100px;
}

.mt-10 {
  margin-top: 10px;
}

@media (max-width: 991px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.head-color {
  color: var(--header);
}

.theme-color-1 {
  color: var(--primary-theme) !important;
}

.border-none {
  border-top: none !important;
}

.mbm-10 {
  margin-bottom: -20px;
}

.ml-30 {
  margin-left: 30px;
}

@media (max-width: 1199px) {
  .ml-30 {
    margin-left: 0;
  }
}

.box-shadow {
  box-shadow: var(---box-shadow);
}

.brand-wrapper h6 {
  font-size: 14px;
  position: relative;
  margin-bottom: 50px;
}

p.sticky-label {
  position: absolute;
  right: 0;
  background: var(--primary-theme);
  color: var(--white);
  padding: 10px 40px;
  z-index: -1;
  top: 0;
  font-weight: 700;
}

.page-nav-wrap ul li {
  display: inline-block;
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #f6f6f6;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}

.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--primary-theme);
  color: var(--white);
}

@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--primary-theme);
  color: var(--white);
}

.social-share a {
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
}

.social-share a:hover {
  color: var(--primary-theme);
}

.tag-share-wrap {
  padding-bottom: 50px;
}

.tag-share-wrap h4 {
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .tag-share-wrap h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .tag-share-wrap .tagcloud {
    margin-bottom: 20px;
  }
}

.site_info_widget .single-contact-info {
  overflow: auto;
  margin-bottom: 20px;
}

.site_info_widget .single-contact-info span {
  display: block;
  color: var(--primary-theme);
}

.site_info_widget .single-contact-info .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--white);
  background-color: var(--primary-theme);
  float: left;
  text-align: center;
  overflow: hidden;
  font-size: 16px;
  margin-right: 20px;
}

.site_info_widget .single-contact-info:nth-child(2n) .icon {
  background-color: var(--primary-theme);
}

.site_info_widget .single-contact-info:nth-child(3n) .icon {
  background-color: var(--primary-theme);
}

.site_info_widget .social-link {
  margin-top: 35px;
}

.site_info_widget .social-link a {
  margin-right: 8px !important;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}


.hero-1 .hero-content {
  padding: 50px 0 50px;
  position: relative;
  z-index: 9;
}

@media (max-width: 767px) {
  .hero-1 .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 30px 0 30px;
  }
}

.hero-1 .hero-content h6 {
  color: var(--white);
  background-color: var(--theme);
  padding: 8px 20px;
  line-height: 1;
  display: inline-block;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.hero-1 .hero-content h1 {
  color: var(--white);
  margin-bottom: 15px;
}

@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    font-size: 70px;
  }
}

@media (max-width: 991px) {
  .hero-1 .hero-content h1 {
    font-size: 56px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 43px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 34px;
  }
}

.hero-1 .hero-content p {
  color: var(--text-color2);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 40px;
}

.hero-1 .hero-content .dot {
  color: red;
  height: 8px;
  width: 8px;
  background-color: #FF3D00;
  border-radius: 50%;
  display: inline-block;
  margin: 5px;
}

.hero-1 .hero-content .head_badge {
  background: #FEE6DB;
  padding: 6px 18px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #FE5722;
  margin-bottom: 15px;
}



/* Hero Banner Section  */

.journey-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.journey-card-wrapper .journey-card-shadow {
  position: absolute;
  top: -9px;
  left: 5px;
  right: -12px;
  bottom: 5px;
  background: linear-gradient(135deg, #fa8c6069 0%, #f7555552 100%);
  border-radius: 24px;
  border: 1.5px solid rgba(254, 87, 34, 0.3);
  backdrop-filter: blur(10px);
  z-index: 1;
  transform: rotate(366deg);
}

.journey-card-wrapper .journey-card {
  position: relative;
  width: 100%;
  aspect-ratio: 0.8695652174;
  /* background: linear-gradient(135deg, rgba(255, 245, 243, 0.75) 0%, rgba(255, 225, 218, 0.65) 50%, rgba(255, 210, 200, 0.7) 100%); */
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 24px;
  border: 2px solid rgba(254, 87, 34, 0.4);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
  box-shadow: 0 8px 32px 0 rgba(254, 87, 34, 0.15), 0 2px 8px 0 rgba(0, 0, 0, 0.05), inset 0 1px 2px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-card-wrapper .journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px 0 rgba(254, 87, 34, 0.2), 0 4px 16px 0 rgba(0, 0, 0, 0.08), inset 0 1px 2px 0 rgba(255, 255, 255, 0.6);
}

.journey-card-wrapper .icon-orb {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffa385 0%, #ff8b6b 30%, #fe5722 70%, #f54e1f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  box-shadow: 0 4px 20px 0 rgba(254, 87, 34, 0.3), 0 8px 40px 0 rgba(254, 87, 34, 0.25), 0 16px 60px 0 rgba(254, 87, 34, 0.15), inset 0 -4px 12px 0 rgba(179, 68, 34, 0.3), inset 0 4px 12px 0 rgba(255, 163, 133, 0.4);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-card-wrapper .icon-orb::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(254, 87, 34, 0.3) 0%, rgba(254, 87, 34, 0.15) 40%, transparent 70%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.journey-card-wrapper .journey-card:hover .icon-orb {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 24px 0 rgba(254, 87, 34, 0.35), 0 12px 48px 0 rgba(254, 87, 34, 0.3), 0 20px 70px 0 rgba(254, 87, 34, 0.2), inset 0 -4px 12px 0 rgba(179, 68, 34, 0.35), inset 0 4px 12px 0 rgba(255, 163, 133, 0.5);
}

.journey-card-wrapper .journey-card:hover .icon-orb::before {
  opacity: 1;
}

.journey-card-wrapper .airplane-icon {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-card-wrapper .journey-card:hover .airplane-icon {
  transform: translateY(-2px) rotate(5deg);
}

.journey-card-wrapper .bullet {
  font-size: 12px;
  opacity: 0.8;
}

.journey-card-wrapper .journey-card .card-subtitle {
  color: #7B3E00;
}

/* Glassmorphism Cards */
.journey-card-wrapper .journey-card .glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 0;
  aspect-ratio: 1;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.journey-card-wrapper .journey-card .glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.journey-card-wrapper .journey-card .glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(254, 87, 34, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 20px rgba(254, 87, 34, 0.15);
}

.journey-card-wrapper .journey-card .glass-card:hover::before {
  opacity: 1;
}

@media (max-width: 768px) {
  .journey-card-wrapper .journey-card .glass-card {
    border-radius: 16px;
  }

}

@media (max-width: 576px) {
  .journey-card-wrapper .journey-card {
    padding: 40px 30px;
    border-radius: 20px;
  }

  .journey-card-wrapper .journey-card-shadow {
    border-radius: 20px;
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
  }

  .journey-card-wrapper .icon-orb {
    width: 110px;
    height: 110px;
    margin-bottom: 40px;
  }

  .journey-card-wrapper .airplane-icon {
    width: 44px;
    height: 44px;
  }

  .journey-card-wrapper .journey-card .glass-card {
    border-radius: 14px;
  }
}

@media (max-width: 400px) {
  .journey-card-wrapper body {
    padding: 1rem;
  }

  .journey-card-wrapper .journey-card {
    padding: 35px 25px;
  }

  .journey-card-wrapper .icon-orb {
    width: 100px;
    height: 100px;
    margin-bottom: 35px;
  }

  .journey-card-wrapper .airplane-icon {
    width: 40px;
    height: 40px;
  }

}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.journey-card-wrapper .journey-card-wrapper {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Hero Banner Section  */


/* Services Section */
.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.services-section .service-card {
  background-color: var(--white);
  padding: 25px 25px;
  border-radius: 16px;
  text-align: start;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.services-section .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(254, 87, 34, 0.15);
}

.services-section .service-icon {
  width: 60px;
  height: 60px;
  background-color: #fff5f2;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.services-section .service-icon i {
  font-size: 32px;
  color: var(--primary-theme);
}

.services-section .service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--header);
}

.services-section .service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .services-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .services-section .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Statistics Section */
.statistics-section {
  background-color: #fafafa;
  padding: 60px 0;
  /* Statistics Card */
  /* Icon Wrapper */
  /* Icon Styling */
  /* Statistics Number */
  /* Statistics Label */
  /* Responsive Design */
}

.statistics-section .stat-card {
  padding: 24px 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statistics-section .stat-card:hover {
  transform: translateY(-5px);
}

.statistics-section .stat-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.statistics-section .stat-card:hover .stat-icon-wrapper {
  transform: scale(1.1);
}

.statistics-section .stat-icon {
  font-size: 28px;
  line-height: 1;
}

.statistics-section .stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #2c2c2c;
  line-height: 1.2;
  margin-bottom: 8px;
}

.statistics-section .stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  line-height: 1.4;
}

@media (max-width: 991.98px) {
  .statistics-section .stat-number {
    font-size: 28px;
  }

  .statistics-section .stat-label {
    font-size: 13px;
  }

  .statistics-section .stat-icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .statistics-section .stat-icon {
    font-size: 24px;
  }
}

@media (max-width: 767.98px) {
  .statistics-section .statistics-section {
    padding: 40px 0;
  }

  .statistics-section .stat-card {
    padding: 20px 8px;
  }

  .statistics-section .stat-number {
    font-size: 24px;
  }

  .statistics-section .stat-label {
    font-size: 12px;
  }

  .statistics-section .stat-icon-wrapper {
    width: 52px;
    height: 52px;
  }

  .statistics-section .stat-icon {
    font-size: 22px;
  }
}

@media (max-width: 575.98px) {
  .statistics-section .stat-number {
    font-size: 22px;
  }

  .statistics-section .stat-icon-wrapper {
    width: 48px;
    height: 48px;
    margin-bottom: 12px !important;
  }

  .statistics-section .stat-icon {
    font-size: 20px;
  }
}


/* Statistics Section */

/*  Why choose student */

.why-choose-section .why-choose-card {
  background: linear-gradient(180deg, #fe5722 0%, #ff7043 100%);
  border-radius: 40px;
  padding: 46px 46px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(254, 87, 34, 0.25);
  position: relative;
  overflow: hidden;
}

.why-choose-section .why-choose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.why-choose-section .why-choose-card>* {
  position: relative;
  z-index: 1;
}

.why-choose-section .why-choose-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.why-choose-section .why-choose-description {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: auto;
  max-width: 480px;
}

.why-choose-section .rating-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 22px 22px;
  margin-top: 30px;
}

.why-choose-section .rating-number {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.why-choose-section .rating-label {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.why-choose-section .rating-stars {
  display: flex;
  gap: 6px;
}

.why-choose-section .rating-stars .star {
  font-size: 24px;
  color: #ffc107;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .why-choose-section .why-choose-card {
    margin-bottom: 40px;
    min-height: auto;
  }

  .why-choose-section .why-choose-title {
    font-size: 42px;
  }

  .why-choose-section .why-choose-description {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .why-choose-section .why-choose-card {
    padding: 40px 32px;
    border-radius: 32px;
  }

  .why-choose-section .why-choose-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .why-choose-section .why-choose-description {
    font-size: 17px;
    margin-bottom: 32px;
  }

  .why-choose-section .rating-box {
    padding: 28px 32px;
    margin-top: 32px;
  }

  .why-choose-section .rating-number {
    font-size: 38px;
  }

  .why-choose-section .rating-label {
    font-size: 16px;
  }

  .why-choose-section .rating-stars .star {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .why-choose-section .why-choose-card {
    padding: 32px 24px;
  }

  .why-choose-section .why-choose-title {
    font-size: 32px;
  }

  .why-choose-section .why-choose-description {
    font-size: 16px;
  }

  .why-choose-section .rating-box {
    padding: 24px 28px;
  }
}

/*  Why choose student */

/* Testimonial Section  */
.testimonials-section .testimonial-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
}

.testimonials-section .testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.testimonials-section .quote-watermark {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 72px;
  color: #ffe5e5;
  opacity: 0.6;
  z-index: 1;
}

.testimonials-section .student-info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.testimonials-section .student-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #f5f5f5;
}

.testimonials-section .student-details {
  flex: 1;
}

.testimonials-section .student-name {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.testimonials-section .student-degree {
  font-size: 15px;
  font-weight: 400;
  color: #666;
  margin-bottom: 2px;
}

.testimonials-section .student-university {
  font-size: 15px;
  font-weight: 500;
  color: #fe5722;
}

.testimonials-section .rating {
  position: relative;
  z-index: 2;
}

.testimonials-section .rating i {
  color: #ffc107;
  font-size: 18px;
  margin-right: 4px;
}

.testimonials-section .testimonial-text {
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .testimonials-section .section-title {
    font-size: 36px;
  }

  .testimonials-section .testimonial-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .testimonials-section .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-section .section-title {
    font-size: 32px;
  }

  .testimonials-section .section-subtitle {
    font-size: 16px;
  }

  .testimonials-section .testimonial-card {
    padding: 28px 24px;
  }

  .testimonials-section .quote-watermark {
    font-size: 56px;
    top: 20px;
    right: 20px;
  }

  .testimonials-section .student-avatar {
    width: 60px;
    height: 60px;
  }

  .testimonials-section .student-name {
    font-size: 20px;
  }

  .testimonials-section .student-degree,
  .testimonials-section .student-university {
    font-size: 14px;
  }

  .testimonials-section .testimonial-text {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .testimonials-section .section-title {
    font-size: 28px;
  }

  .testimonials-section .testimonial-card {
    padding: 24px 20px;
  }
}

/* Testimonial Section  */


/* next intakes Section  */

.next-intakes-section .intakes-swiper {
  padding-bottom: 50px;
  position: relative;
}

.next-intakes-section .intake-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* .next-intakes-section .intake-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
} */

.next-intakes-section .intake-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 2px 14px;
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  /* border-radius: 50px; */
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.next-intakes-section .badge-orange {
  background-color: var(--primary-theme);
}

.next-intakes-section .badge-green {
  background-color: var(--primary-green);
}

.next-intakes-section .intake-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-theme), #ff7043);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.next-intakes-section .intake-icon i {
  font-size: 28px;
  color: var(--white);
}

.next-intakes-section .intake-month {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-color2);
  margin-bottom: 8px;
  line-height: 1.2;
}

.next-intakes-section .intake-type {
  font-size: 18px;
  color: var(--primary-theme);
  margin-bottom: 24px;
  font-weight: 500;
}

.next-intakes-section .intake-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.next-intakes-section .info-icon {
  font-size: 18px;
  color: var(--text-color2);
  margin-top: 2px;
  flex-shrink: 0;
}

.next-intakes-section .info-text {
  font-size: 15px;
  color: var(--text-color2);
  line-height: 1.6;
  margin: 0;
}

.next-intakes-section .intake-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-theme);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.next-intakes-section .intake-link:hover {
  color: #e64a19;
  gap: 12px;
}

.next-intakes-section .intake-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.next-intakes-section .intake-link:hover i {
  transform: translateX(4px);
}

.next-intakes-section .btn-cta-primary {
  background-color: var(--primary-theme);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(254, 87, 34, 0.3);
}

.next-intakes-section .btn-cta-primary:hover {
  background-color: #e64a19;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 87, 34, 0.4);
  color: var(--white);
}

.next-intakes-section .swiper-button-next,
.next-intakes-section .swiper-button-prev {
  color: var(--primary-theme);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.next-intakes-section .swiper-button-next:after,
.next-intakes-section .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 700;
}

.next-intakes-section .swiper-button-next:hover,
.next-intakes-section .swiper-button-prev:hover {
  background: var(--primary-theme);
  color: var(--white);
}

.next-intakes-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--text-color2);
  opacity: 0.3;
}

.next-intakes-section .swiper-pagination-bullet-active {
  background: var(--primary-theme);
  opacity: 1;
}

@media (max-width: 991px) {
  .next-intakes-section .intake-card {
    padding: 28px 24px;
  }
}

@media (max-width: 767px) {
  .next-intakes-section .intake-month {
    font-size: 28px;
  }

  .next-intakes-section .btn-cta-primary {
    padding: 14px 32px;
    font-size: 16px;
  }
}

/* next intakes Section  */

/* destination Section  */
.destination-section {
  background: linear-gradient(180deg, #ffe5d9 0%, #ffeee8 100%);

}

.destination-section .countries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.destination-section .country-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(254, 87, 34, 0.05);
  border: 1.5px solid #fe5722;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.destination-section .country-card:hover {
  background: rgba(254, 87, 34, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(254, 87, 34, 0.15);
}

.destination-section .country-flag {
  width: 32px;
  height: 24px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.destination-section .country-name {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.01em;
}

.destination-section .more-countries-btn {
  background: #fe5722;
  border: 1.5px solid #fe5722;
}

.destination-section .more-countries-btn:hover {
  background: #e64a19;
  border-color: #e64a19;
  box-shadow: 0 4px 12px rgba(254, 87, 34, 0.3);
}

.destination-section .more-countries-btn .country-name {
  color: #fff;
  font-weight: 700;
}

.destination-section .more-countries-btn i {
  color: #fff;
  font-size: 16px;
}


@media (max-width: 1024px) {


  .destination-section .countries-grid {
    gap: 14px;
  }
}

@media (max-width: 768px) {


  .destination-section .country-card {
    padding: 14px 20px;
  }

  .destination-section .country-name {
    font-size: 15px;
  }

  .destination-section .countries-grid {
    gap: 12px;
  }
}

@media (max-width: 576px) {

  .destination-section .countries-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0 20px;
  }

  .destination-section .country-card {
    justify-content: flex-start;
    padding: 14px 18px;
  }

  .destination-section .country-flag {
    width: 28px;
    height: 20px;
  }

  .destination-section .country-name {
    font-size: 15px;
  }
}

@media (max-width: 375px) {

  .destination-section .country-card {
    padding: 12px 16px;
  }
}


/* destination Section  */

/* University Card Styles */

.partners-section .university-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--bg5);
  border-radius: var(--border-radius);
  padding: 16px 20px;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.partners-section .university-card:hover {
  background-color: var(--white);
  /*  border-color: var(--primary-theme); */
  box-shadow: 0 4px 12px rgba(254, 87, 34, 0.15);
  transform: translateY(-2px);
}

.partners-section .university-card .icon-orange {
  color: var(--primary-theme);
  font-size: 20px;
  flex-shrink: 0;
}

.partners-section .university-card .university-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  line-height: 1.4;
}

.partners-section .feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px;
  border-radius: 20px;
  border: 2px solid;
  transition: var(--transition);
  cursor: pointer;
}

.partners-section .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.partners-section .feature-card-blue {
  background-color: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
}

.partners-section .feature-card-blue:hover {
  background-color: rgba(59, 130, 246, 0.1);
}

.partners-section .feature-card-purple {
  background-color: rgba(147, 51, 234, 0.05);
  border-color: rgba(147, 51, 234, 0.2);
}

.partners-section .feature-card-purple:hover {
  background-color: rgba(147, 51, 234, 0.1);
}

.partners-section .feature-card-green {
  background-color: rgba(40, 167, 69, 0.05);
  border-color: rgba(40, 167, 69, 0.2);
}

.partners-section .feature-card-green:hover {
  background-color: rgba(40, 167, 69, 0.1);
}

.partners-section .feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partners-section .feature-icon i {
  font-size: 28px;
  color: var(--white);
}

.partners-section .feature-icon-blue {
  background-color: #3b82f6;
}

.partners-section .feature-icon-purple {
  background-color: #9333ea;
}

.partners-section .feature-icon-green {
  background-color: var(--primary-green);
}

.partners-section .feature-content {
  flex: 1;
}

.partners-section .feature-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 6px;
}

.partners-section .feature-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .partners-section .university-card {
    padding: 14px 16px;
  }

  .partners-section .university-card .university-name {
    font-size: 14px;
  }

  .partners-section .feature-card {
    padding: 24px;
    gap: 16px;
  }

  .partners-section .feature-icon {
    width: 56px;
    height: 56px;
  }

  .partners-section .feature-icon i {
    font-size: 24px;
  }

  .partners-section .feature-title {
    font-size: 18px;
  }

  .partners-section .feature-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .partners-section .university-card .icon-orange {
    font-size: 18px;
  }

  .partners-section .university-card .university-name {
    font-size: 13px;
  }
}

/* University Card Styles */



.global-journey-section {
  background: linear-gradient(155.498deg, #FFFCFB 0%, #FFDBD0 25%, #FFDBD0 76%, #FFFCFB 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.global-journey-section .content-wrapper {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.global-journey-section .star-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.global-journey-section .star-rating i {
  color: #ffc107;
  font-size: 24px;
}

.global-journey-section .testimonial-quote {
  font-size: 18px;
  font-style: italic;
  color: #666;
  margin-bottom: 32px;
  font-weight: 400;
}

.global-journey-section .main-heading {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #111827;
}

.global-journey-section .main-heading .highlight {
  color: #fe5722;
}

.global-journey-section .description {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 400;
}

.global-journey-section .cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.global-journey-section .btn-primary-custom {
  background-color: #fff;
  color: #fe5722;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(254, 87, 34, 0.2);
  transition: all 0.3s ease;
}

.global-journey-section .btn-primary-custom:hover {
  background-color: #fe5722;
  color: #fff;
  box-shadow: 0 12px 32px rgba(254, 87, 34, 0.3);
  transform: translateY(-2px);
}

.global-journey-section .btn-primary-custom i {
  font-size: 14px;
}

.global-journey-section .btn-outline-custom {
  background-color: transparent;
  color: #fe5722;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  border: 2px solid #fe5722;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.global-journey-section .btn-outline-custom:hover {
  background-color: #fe5722;
  color: #fff;
  transform: translateY(-2px);
}

.global-journey-section .btn-outline-custom i {
  font-size: 16px;
}

@media (max-width: 768px) {
   .global-journey-section {
    padding: 60px 20px;
  }

  .global-journey-section .main-heading {
    font-size: 32px;
  }

  .global-journey-section .main-heading .highlight {
    display: block;
  }

  .global-journey-section .description {
    font-size: 16px;
  }

  .global-journey-section .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .global-journey-section .btn-primary-custom,
  .global-journey-section .btn-outline-custom {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .global-journey-section .star-rating i {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .global-journey-section .main-heading {
    font-size: 28px;
  }

  .global-journey-section .testimonial-quote {
    font-size: 16px;
  }

  .global-journey-section .btn-primary-custom,
  .global-journey-section .btn-outline-custom {
    padding: 14px 24px;
    font-size: 15px;
  }
}


.footer-section {
  position: relative;
}

.footer-section .arrow-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 1399px) {
  .footer-section .arrow-shape-1 {
    display: none;
  }
}

.footer-top {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(230, 230, 230, 0.1);
}

@media (max-width: 991px) {
  .footer-top {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .footer-top {
    padding: 40px 0;
  }
}

.footer-top ul {
  display: flex;
  align-items: center;
  gap: 55px;
}

@media (max-width: 767px) {
  .footer-top ul {
    gap: 20px;
    flex-wrap: wrap;
  }
}

.footer-top ul li i {
  color: var(--primary-theme);
  margin-right: 5px;
}

.footer-top ul li a {
  color: var(--white);
  font-weight: 500;
}

.footer-widgets-wrapper {
  padding: 0px 0 60px;
  position: relative;
  z-index: 9;
}


@media (max-width: 1199px) {
  .footer-widgets-wrapper {
    padding: 10px 0 45px;
  }
}

@media (max-width: 991px) {
  .footer-widgets-wrapper {
    padding: 10px 0 35px;
  }
}

.footer-widgets-wrapper .single-footer-widget {
  margin-top: 30px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head {
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 10px;
  }
}

.footer-widgets-wrapper .single-footer-widget .widget-head h5 {
  text-transform: capitalize;
  margin-top: 10px;
  color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
  font-size: 32px;
  text-transform: capitalize;
  color: var(--white);
  margin-top: 10px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content p {
  color: var(--text-color2);
}

@media (max-width: 1399px) {
  .footer-widgets-wrapper .single-footer-widget .footer-content br {
    display: none;
  }
}

.footer-widgets-wrapper .single-footer-widget .footer-content span {
  font-weight: 500;
  margin-top: 15px;
  display: inline-block;
  color: var(--text-color2);
}

@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .footer-content span {
    margin-top: 10px;
  }
}

.footer-widgets-wrapper .single-footer-widget .footer-content .link {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-top: 15px;
  display: inline-block;
}

@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .footer-content .link {
    margin-top: 10px;
  }
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
  margin-top: 10px;
  gap: 15px;
  position: relative;
  z-index: 9;
}

@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
    margin-top: 10px;
  }
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: rgba(92, 92, 91, 0.1);
  color: var(--text-color2);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--primary-theme);
  color: var(--white);
}





.footer-widgets-wrapper .single-footer-widget .list-items li {
  text-transform: capitalize;
}

.footer-widgets-wrapper .single-footer-widget .list-items li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widgets-wrapper .single-footer-widget .list-items li a {
  font-size: 16px;
  color: var(--text-color3);
  position: relative;
}

.footer-widgets-wrapper .single-footer-widget .list-items li a::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background-color: var(--primary-theme);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.footer-widgets-wrapper .single-footer-widget .list-items li a:hover {
  padding-left: 20px;
  color: var(--primary-theme);
}

.footer-widgets-wrapper .single-footer-widget .list-items li a:hover::before {
  opacity: 1;
  visibility: visible;
}




.footer-bottom {
  padding: 30px 0;
  position: relative;
  z-index: 9;
  background-color: #121315;
}

@media (max-width: 991px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center !important;
    margin-top: 30px;
    text-align: center;
  }
}

.footer-bottom .footer-wrapper p {
  color: var(--white);
}

.footer-bottom .footer-wrapper p a {
  color: var(--white);
}

.footer-bottom .footer-wrapper .footer-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom .footer-wrapper .footer-menu li a {
  color: var(--white);
  background-image: linear-gradient(var(--white), var(--white));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.footer-bottom .footer-wrapper .footer-menu li a:hover {
  background-size: 100% 1px;
}

.footer-bottom.style-2 {
  background-color: #101010;
  text-align: center;
  margin-top: -5px;
}

.footer-bottom.style-2 .footer-wrapper {
  display: initial !important;
}

.button-position-corner {
  position: absolute;
  right: 0;
  bottom: 0;
}

.time-saved h2 {
  color: #FC58A8;
}

.successStory h2 {
  color: #5C9FF0;
}

.text-justify {
  text-align: justify !important;
}

.common-borer-radius {
  border-radius: 8px;
}

.roundCheckIcon {
  width: 24px;
  height: 24px;
}



/* -- Custom Input Design -- */
.custom-input-design .inputGroup {
  width: 100%;
  position: relative;
}

.custom-input-design input {
  font-size: 0.9375rem;
  padding: 0.8em;
  outline: none;
  border: 1px solid #d9dee3;
  background-color: transparent;
  border-radius: 8px;
  width: 100%;
  color: var(--text-color);
}

.custom-input-design .inputGroup label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.3s ease;
  color: #777;
  background: #fff;
  padding: 0 6px;
}

.custom-input-design input:focus~label,
.custom-input-design input:not(:placeholder-shown)~label {
  top: 0;
  font-size: 12px;
  color: var(--primary-theme);
}

.custom-input-design input:focus {
  border-color: var(--primary-theme);
}

.custom-input-design .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%2867, 89, 113, 0.6%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.8em;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.53;
  color: #697a8d;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 17px 12px;
  border: var(--bs-border-width) solid #d9dee3;
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.custom-input-design .input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.custom-input-design .input-group>.form-control,
.custom-input-design .input-group>.form-select,
.custom-input-design .input-group>.form-floating {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.custom-input-design .input-group>.form-control:focus,
.custom-input-design .input-group>.form-select:focus,
.custom-input-design .input-group>.form-floating:focus-within {
  z-index: 5;
}

.custom-input-design .input-group .btn {
  position: relative;
  z-index: 2;
}

.custom-input-design .input-group .btn:focus {
  z-index: 5;
}

.custom-input-design .input-group-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.4375rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.53;
  color: #697a8d;
  text-align: center;
  white-space: nowrap;
  background-color: #fff;
  border: var(--bs-border-width) solid #d9dee3;
  border-radius: var(--bs-border-radius);
}

.custom-input-design .input-group-lg>.form-control,
.custom-input-design .input-group-lg>.form-select,
.custom-input-design .input-group-lg>.input-group-text,
.custom-input-design .input-group-lg>.btn {
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: var(--bs-border-radius-lg);
}

.custom-input-design .input-group-sm>.form-control,
.custom-input-design .input-group-sm>.form-select,
.custom-input-design .input-group-sm>.input-group-text,
.custom-input-design .input-group-sm>.btn {
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  border-radius: var(--bs-border-radius-sm);
}

.custom-input-design .input-group-lg>.form-select,
.custom-input-design .input-group-sm>.form-select {
  padding-right: 2.75rem;
}

.custom-input-design .input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.custom-input-design .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.custom-input-design .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
.custom-input-design .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.custom-input-design .input-group.has-validation> :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.custom-input-design .input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),
.custom-input-design .input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,
.custom-input-design .input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.custom-input-design .input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: calc(var(--bs-border-width) * -1);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-input-design .input-group>.form-floating:not(:first-child)>.form-control,
.custom-input-design .input-group>.form-floating:not(:first-child)>.form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.error-message{
  color:red;
}

.select2-container--default .select2-selection--single {

  padding: 0px 0px;
  border-radius: 0;
  border: none !important;
}
