@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --primary: #181562;
  --primary-dark: #060441;
  --primary-light: #f3f3ff;
  --secondary: #f27211;
  --secondary-dark: #d45d02;
  --dark: #222222;
  --black: #20282d;
  --grey: #444444;
  --light: #f5f5f5;
  --light1: #f0f0f0;
  --light2: #e9e9e9;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

::selection {
  background-color: var(--primary);
  color: #ffffff;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--light2);
}

::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  -webkit-border-radius: 1ex;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: var(--dark);
  overflow-x: hidden;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-optical-sizing: auto;
  font-style: normal;
  font-family: "Red Hat Display", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* p {
  line-height: 24px;
  color: #444;
} */

.full-img {
  width: 100%;
}

.grey-bg {
  background-color: #f6f6fd;
}

.f34 {
  font-size: 34px !important;
}

.f30 {
  font-size: 30px !important;
}

.f24 {
  font-size: 24px !important;
}

.f20 {
  font-size: 20px !important;
}

.f18 {
  font-size: 18px;
}

.f16 {
  font-size: 16px;
}

.f14 {
  font-size: 14px;
}

.f12 {
  font-size: 12px;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.mt-minus-10 {
  margin-top: -10px;
}

.light-bg {
  background-color: var(--light);
}

.color-secondary {
  color: var(--secondary);
}

.color-secondary-dark {
  color: var(--secondary-dark);
}

.color-primary {
  color: var(--primary) !important;
}

.color-primary-dark {
  color: var(--primary-dark);
}

.primary-bg {
  background-color: var(--primary) !important;
}

.top-header {
  width: 100%;
  padding: 10px;
  background-color: var(--black);
}

/* .top-header ul {
  display: flex;
  align-items: center;
} */

.top-header ul li {
  padding-right: 30px;
  padding-left: 30px;
  position: relative;
  display: inline-block;
  color: var(--white);
}

.top-header ul li:first-child {
  padding-left: 0;
}

.top-header ul li a {
  color: var(--white);
  font-size: 15px;
  transition: all 0.3s;
}

.mail::after {
  width: 1px;
  height: 100%;
  content: "";
  position: absolute;
  right: 0;
  background-color: var(--white);
}

.top-header ul li a:hover {
  color: var(--secondary);
}

header {
  width: 100%;
  padding: 10px 0;
}

.logo img {
  width: 100%;
  /* max-width: 180px; */
   max-width: 220px;
  transition: all 0.4s;
}

.header-fixed {
  width: 100%;
  background-color: #fff;
  padding: 5px 0;
  border-bottom: solid 1px var(--light);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  animation: headerSlideDown 0.95s ease forwards;
  top: 0px;
  padding: 0;
  position: fixed;
}

@keyframes headerSlideDown {
  0% {
    margin-top: -100px;
  }

  100% {
    margin-top: 0;
  }
}

.header-fixed .logo img {
  width: 100%;
  max-width: 150px;
}

.menu {
  width: 100%;
  text-align: right;
  margin-top: 20px;
}

.header-fixed .menu {
  margin-top: 10px;
}

.menu li {
  display: inline;
  margin: 0 15px;
}

.menu li a {
  color: var(--black);
  transition: all 0.4s;
  font-weight: 500;
  font-size: 18px;
  padding: 5px;
}

.header-fixed .menu li a {
  color: var(--dark);
}

.menu li a:hover {
  color: var(--secondary);
}

.header-right {
  display: none;
}

.banner {
  width: 100%;
  height: 700px;
  background-color: var(--black);
  position: relative;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-cont {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(6, 4, 65, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--white);
  text-align: center;
}

.banner-cont h1 {
  font-size: 60px;
  font-weight: 800;
  animation: fadeInUp 3s;
  animation-delay: 0s;
  margin-bottom: 30px;
}

.banner-cont p {
  font-size: 20px;
  animation: fadeInUp 3s;
  animation-delay: 0s;
  line-height: 24px;
  color: #ddd;
  font-weight: 500;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-prev:after {
  display: none;
}

.banner-swiper .swiper-button-next {
  right: 120px;
}

.banner-swiper .swiper-button-prev {
  left: 120px;
}

.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-size: 24px;
  color: var(--black);
}

.banner-swiper .swiper-button-next:hover,
.banner-swiper .swiper-button-prev:hover {
  background: var(--secondary);
  transform: scale(1.1);
  color: #fff;
}

.banner-btn {
  animation: fadeInUp 3s;
  animation-delay: 0s;
  background: #f2f2f2;
  color: #20282d;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  height: 50px;
  max-width: max-content;
  padding: 10px 25px;
  border: none;
  box-shadow: none;
  min-width: max-content;
  border-radius: 10px;
  transition: 800ms;
  font-weight: 600;
}

.banner-btn::before {
  content: "";
  position: absolute;
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  width: 200%;
  height: 200%;
  top: 110%;
  left: 50%;
  background: var(--secondary);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
}

.banner-btn:hover {
  background: var(--white);
  color: #f2f2f2;
}

.banner-btn:hover::before {
  top: -40%;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.inner-sec {
  padding: 80px 0;
}

.about-img-sec {
  display: flex;
  justify-content: center;
  max-width: 490px;
  margin: auto;
  position: relative;
}

.about-img-sec img {
  width: 100%;
  border-radius: 20px;
  max-width: 490px;
}

.about-img-2 {
  position: absolute;
  right: -63px;
  bottom: 40px;
  max-width: 211px;
  animation: jump-2 5s linear infinite;
}
@keyframes jump-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.about-img-2 img {
  border: solid 7px #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.counter-about-area {
  position: absolute;
  padding: 50px 33px;
  background: #20282d;
  position: absolute;
  top: 50px;
  left: -75px;
  text-align: center;
  border-radius: 15px;
  color: #fff;
}

.counter-about-area h2 {
  font-weight: 800;
  font-size: 50px;
  font-family: "DM Sans", sans-serif;
}

.about-shape-one {
  position: absolute;
  right: 0;
  top: 50%;
  animation: jump-2 8s linear infinite;
}

.about-shape-two {
  position: absolute;
  left: 0;
  top: 20%;
  animation: jump-2 12s linear infinite;
}

.about-inner-content {
  padding-left: 20px;
  position: relative;
}

.bg-content {
  font-size: 150px;
  position: absolute;
  font-weight: 900;
  letter-spacing: 0;
  left: -90px;
  top: 0;
  z-index: -1;
  top: -65px;
  font-family: "Red Hat Display", serif;
  min-width: max-content;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.1);
  line-height: 1;
}

.bg-content::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.8855917367) 0%,
    rgba(255, 255, 255, 0.6082808123) 35%,
    rgba(255, 255, 255, 0) 100%
  );
}

.small-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--secondary);
}

.title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--primary);
}

.about-list {
  margin-top: 30px;
}

.about-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.about-list li i {
  position: absolute;
  left: 0;
}

.title-style-two {
    position: relative;
    z-index: 1;
}

.title-style-two.center {
    text-align: center;
}

.title-style-two .bg-content {
    font-size: 150px;
    position: absolute;
    font-weight: 900;
    letter-spacing: 0;
    left: -90px;
    z-index: -1;
    top: -65px;
    /* font-family: var(--font-primary); */
    min-width: max-content;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.title-style-two.center .bg-content {
    left: 50%;
    transform: translateX(-50%);
}

.title-style-two .bg-content::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.8855917367) 0%, rgba(255, 255, 255, 0.6082808123) 35%, rgba(255, 255, 255, 0) 100%);
}

.ser-box {
  width: 100%;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.ser-box img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.ser-box h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}

.ser-box-cont {
  padding: 15px 15px 25px 15px;
}

.ser-box-link a {
  display: flex;
  align-items: center;
}

.ser-box-link a i {
  width: 40px;
  height: 40px;
  background-color: var(--black);
  color: var(--white);
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: all 0.3s;
}

.ser-box-link a:hover i {
  background-color: var(--secondary);
}

.lets-sec {
  width: 100%;
  height: 280px;
  position: relative;
}

.lets-sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lets-sec-cont {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.lets-sec-cont-inner {
  width: 100%;
  height: 280px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.lets-sec-cont-inner h1 {
  color: var(--white);
  font-weight: 700;
}

.commit-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.commit-cont {
    width: 100%;
    padding: 20px 10px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: self-start;
}

.commit-cont h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
}

.comment {
    padding: 20px;
    background-color: #f6f6fd;
    border-left: solid 5px var(--secondary);
}

.comment p {
    margin: 0;
}

footer {
  width: 100%;
  min-height: 400px;
  background: url(../images/footer-bg.webp) no-repeat center;
  background-size: cover;
  padding: 80px 0 0 0;
}

footer h4 {
  color: var(--white);
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

footer h4::before {
  position: absolute;
  content: '';
  width: 50%;
  height: 2px;
  background-color: var(--white);
  bottom: -15px;
}

footer p {
  color: #d5d5d5;
}

/* .f-links {
  margin-top: 20px;
} */

.f-links li {
  position: relative;
  padding-left: 25px;
  color: #d5d5d5;
  margin-bottom: 15px;
}

.f-links li i {
  position: absolute;
  left: 0;
  top: 2px;
}

.f-links li a {
  color: #d5d5d5;
  transition: all 0.3s;
}

.f-links li a:hover {
  color: var(--secondary);
}

.btm-footer {
  border-top: 1px solid #3D4352;
  padding: 30px 0;
}

.btm-footer p {
  margin: 0;
}

.inner-banner {
  width: 100%;
  height: 400px;
  position: relative;
}

.inner-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-banner-cont {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner-banner-cont h1 {
  color: #fff;
  font-weight: 700;
  font-size: 50px;
}

.global-img-sec {
  width: 100%;
  height: 300px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.global-img-sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.global-img-cont {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  border-radius: 10px;
  color: #fff;
}

.global-img-cont-inner {
  width: 100%;
  position: absolute;
  top: 220px;
  padding: 20px;
  transition: all 0.4s;
}

.global-img-cont:hover .global-img-cont-inner {
  top: 120px;
  height: 100%;
}

.global-img-cont h5 {
  font-weight: 700;
  color: var(--white);
}

.global-img-cont p {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.global-img-cont:hover .global-img-cont-inner p {
  opacity: 1;
  visibility: visible;
}

.team-sec {
  width: 100%;
  height: 300px;
  position: relative;
}

.l-img-1 {
  width: 100%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
}

.team-inner-sec {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  /* background-color: rgba(0, 0, 0, 0.5); */
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 20px;
}

.team-inner-sec h5 {
  color: #fff;
  font-weight: 700;
  margin-top: 120px;
}

.team-inner-sec p {
  color: var(--white);
}

.why-sec {
  width: 100%;
  min-height: 200px;
  background-color: var(--light);
  border-radius: 10px;
  border-left: solid 3px var(--grey);
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 10px;
}

.why-sec h4 {
  color: var(--primary);
  font-weight: 700;
}

.why-ch-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  object-position: top;
  margin-bottom: 10px;
}

.service-main {
  padding: 10px;
  border: solid 1px var(--light);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  min-height: 410px;
}

.service-main img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-main h5 {
  color: var(--primary);
}

.service-overseas {
  width: 100%;
  background-color: var(--white);
  padding: 10px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  min-height: 400px;
}

.service-overseas img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.service-overseas h5 {
  color: var(--primary);
}

.service-academy {
  width: 100%;
  min-height: 275px;
  padding: 20px;
  border-radius: 10px;
  border: solid 1px var(--light);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.mh-415 {
  min-height: 415px;
}

.whatsapp {
  position: fixed;
  bottom: 15px;
  right: 12px;
}

.whatsapp img {
  width: 50px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.list li {
  position: relative;
  margin-bottom: 7px;
  padding-left: 20px;
}

.list li::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: var(--primary);
  left: 8px;
  top: 8px;
}

.mh-195 {
  min-height: 195px;
}

.mh-255 {
  min-height: 255px;
}