/* Variables */
:root {
  --color01: #ffbe08;
  /* Primary Color */
  --color02: #6e7984;
  /* Paragraph Color */
  --color03: #0a0701;
  /* Heading Color */
  --color05: #ffffff;
  /* White Color */
  --color06: #010100;
  /* Icon Color */

  --fonts01: "Nunito Sans", sans-serif;
}

/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  font-family: var(--fonts01);
}

button,
input,
textarea,
select {
  outline: unset !important;
  border: unset;
}

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

a {
  text-decoration: unset !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

img {
  max-width: 100%;
}

.row {
  margin: 0 !important;
}

/* Google Icons CSS */
.material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" -24, "opsz" 24;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Custom Button */
.custom_btn {
}

/* Top Address Bar */
.top-address-bar {
  background-color: var(--color01);
  padding: 10px 0;
}

.top-address-bar ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-address-bar ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-address-bar ul li span {
  font-size: 17px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: var(--color05);
  color: var(--color06);
  transition: all 0.5s ease-in-out;
  text-align: center;
}

.top-address-bar ul li:nth-child(2) {
  margin-left: auto;
}

.top-address-bar p,
.top-address-bar a {
  color: var(--color06);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.5s ease-in-out;
}

.top-address-bar a:hover {
  color: var(--color05);
}

.top-address-bar .material-symbols-rounded {
  color: var(--color06);
}

/* Header Start */
header {
  position: absolute;
  width: 100%;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}

.navbar {
  padding: 0;
}

.navbar_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color05);
  padding: 20px 0;
  width: 100%;
}

.navbar_brand {
  display: flex;
  gap: 5px;
  font-size: 30px;
  font-family: var(--fonts01);
  font-weight: 700;
  color: var(--color05);
  align-items: center;
}

.navbar_brand span {
  color: var(--color01);
}

.navbar_brand img {
  width: 42px;
  margin-right: 10px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 30px;
}

.nav-link {
  font-family: var(--fonts01);
  color: var(--color05);
  font-size: 18px;
  font-weight: 600;
  padding: 0;
  transition: all 0.2s ease-in-out;
}

.nav-link.active,
.nav-link:hover,
.current_page_item .nav-link {
  color: var(--color01) !important;
}

#navbarNav {
  flex-basis: auto;
  flex-grow: unset;
}

.navbar-toggler {
  display: none;
}

.header.header_active {
  position: fixed;
  top: 0;
  /* background: linear-gradient(
    40deg,
    rgba(10, 7, 1, 1) 0%,
    rgba(41, 40, 38, 1) 100%
  ); */
  background: linear-gradient(
    40deg,
    rgba(10, 7, 1, 1) 0%,
    rgba(47, 47, 47, 1) 100%
  );
}

header.header.header_active .navbar_content {
  border-bottom: unset;
  padding: 15px 0;
}

/* Hero Section Start */
.hero_section .item {
  /* background-color: red; */
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.background_image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

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

.background_image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/overlay-img.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero_content {
  width: 60%;
  position: relative;
  z-index: 1;
}

.hero_content h1 {
  font-size: 52px;
  font-family: var(--fonts01);
  color: var(--color05);
  font-weight: bold;
  text-transform: capitalize;
}

.hero_content h1 span {
  color: var(--color01);
}

.hero_content p {
  font-family: var(--fonts01);
  color: var(--color05);
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 20px 0 25px;
  width: 80%;
}

.custom_btn {
  padding: 13px 60px 13px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background-color: var(--color05);
  font-size: 15px;
  font-family: var(--fonts01);
  font-weight: bold;
  color: var(--color03);
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  z-index: 1;
}

.custom_btn:hover {
  color: var(--color05);
}

.custom_btn span {
  font-size: 30px;
  width: 30px;
  height: 30px;
  color: var(--color01);
  position: absolute;
  right: 20px;
  transform: translateY(-53%);
  top: 50%;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.custom_btn:hover span {
  /* top: 50%; */
  transform: rotate(0deg) translateY(-53%);
  color: var(--color05);
  right: 10px;
}

.custom_btn:hover span::before {
  content: "\f133";
}

.custom_btn::after {
  content: "";
  height: 100%;
  width: 0;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color01);
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.custom_btn:hover::after {
  width: 100%;
}

.nav-link.custom_btn {
  padding: 10px 50px 10px 15px;
}

.nav-link.custom_btn:hover {
  color: var(--color05) !important;
}

.nav-link.custom_btn span {
  font-size: 27px;
  width: 27px;
  height: 27px;
  right: 8px;
}

/* Owal Nav */
.owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100px;
  right: 100px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 !important;
}

.owl-theme .owl-nav button {
  margin: 0 !important;
  background-color: transparent !important;
  font-size: 35px !important;
  color: var(--color02) !important;
  transition: all 0.2s ease-in-out;
}

.owl-theme .owl-nav button:hover {
  color: var(--color01) !important;
}

.owl-dots {
  margin: 0;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.owl-theme .owl-dots .owl-dot span {
  width: 35px;
  height: 4px;
  margin: 0px 8px;
  background: var(--color02);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--color01);
}

/* Learning Section */
.laern_section {
  background-color: var(--color01);
  padding: 20px 0;
}

.laern_section .custom_row {
  gap: 0;
}

.custom_col_4 {
  width: calc(100% / 4);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  transition: all 0.3s ease-in-out;
}

/* .custom_col_4::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.137) 100%
  ); */
/* background: radial-gradient(
    circle,
    rgb(255 255 255 / 57%) 0%,
    rgb(255 255 255 / 0%) 100%
  ); */
/* } */

/* .custom_col_4:nth-last-child(1):after {
  display: none;
} */

.custom_col_4 span {
  font-size: 18px;
  font-family: var(--fonts01);
  font-weight: 700;
  color: var(--color03);
  display: inline-flex;
  text-transform: capitalize;
  /* width: 170px; */
  transition: all 0.3s ease-in-out;
}
.marquee-outer span {
  font-size: 18px;
  font-family: var(--fonts01);
  font-weight: 700;
  color: var(--color03);
}

.custom_col_4 span:nth-child(2) {
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: var(--color05);
  transition: all 0.2s ease-in-out;
}

.custom_col_4:hover span {
  color: var(--color03);
}

.custom_col_4:hover span:nth-child(2)::before {
  content: "\f133";
  transition: all 0.2s ease-in-out;
}

/* About Us Section */
.about_us_section,
.upcoming_events_section {
  background: linear-gradient(
    40deg,
    rgba(10, 7, 1, 1) 0%,
    rgba(47, 47, 47, 1) 100%
  );
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.about_us_section::after,
.about_us_section::before,
.upcoming_events_section:after,
.upcoming_events_section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -50px;
  left: -50px;
  border-radius: 100%;
  background-color: var(--color01);
  /* background: linear-gradient(180deg, rgba(255, 190, 8, 1) 0%, rgb(255 190 8 / 6%) 100%); */
  filter: blur(180px);
}

.about_us_section::before,
.upcoming_events_section::before {
  top: unset;
  left: unset;
  right: -50px;
  bottom: -50px;
}

.custom_row {
  display: flex;
  gap: 80px;
}

.custom_col_6 {
  width: 50%;
}

.about_heading {
  margin-bottom: 30px;
  position: relative;
  padding-left: 25px;
}

.about_heading span {
  font-size: 20px;
  color: var(--color01);
  font-family: var(--fonts01);
  font-weight: 700;
  text-transform: capitalize;
}

.about_heading h2,
.about_heading h5 {
  color: var(--color05);
  font-family: var(--fonts01);
  font-weight: 800;
  font-size: 35px;
  text-transform: capitalize;
  margin: 10px 0;
}

.about_heading h5 {
  font-size: 25px;
  color: var(--color01);
  margin: 0;
  font-weight: 600;
}

.about_heading::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 15px;
  background: linear-gradient(
    180deg,
    rgba(255, 190, 8, 1) 0%,
    rgb(255 190 8 / 6%) 100%
  );
}

.about_big_image {
  height: 350px;
  border-radius: 6px;
  overflow: hidden;
}

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

.about_img {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.about_img img {
  width: calc(100% / 2 - 12.5px);
  height: 170px;
  margin-bottom: 30px;
  border-radius: 6px;
}

.about_content p {
  font-family: var(--fonts01);
  font-size: 18px;
  color: var(--color05);
  font-weight: 600;
}

.counter_outer {
  display: flex;
  /* gap: 50px; */
  margin: 50px 0;
}

.counter-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  width: calc(100% / 4);
}

.counter-box::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  /* background: radial-gradient(
    circle,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.137) 100%
  ); */
  background: radial-gradient(
    circle,
    rgb(255 255 255 / 57%) 0%,
    rgb(255 255 255 / 0%) 100%
  );
}

.counter-box:nth-last-child(1)::after {
  display: none;
}

.counter-box span {
  font-size: 35px;
  color: var(--color05);
}

/* What We Offers Section Start */
.what_we_offer_section {
  padding: 100px 0;
  background-color: #fff9e7;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.what_we_offer_section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(
    90deg,
    rgb(96 77 24) 0%,
    rgb(255 190 8) 50%,
    rgb(13 10 4) 100%
  );
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  filter: blur(600px);
}

.section_heading .sub_heading {
  font-size: 20px;
  color: var(--color03);
  font-family: var(--fonts01);
  font-weight: 700;
  text-transform: capitalize;
}

.section_heading h2 {
  color: var(--color03);
  font-family: var(--fonts01);
  font-weight: 800;
  font-size: 35px;
  text-transform: capitalize;
  margin: 10px 0;
}

.section_heading p {
  font-family: var(--fonts01);
  font-size: 18px;
  color: var(--color02);
  font-weight: 600;
}

.section_heading h2 span {
  color: var(--color01);
}

.what_we_offer_section .section_heading {
  text-align: center;
  width: 75%;
  margin: 0 auto 50px;
}

.offers_content {
  display: flex;
  gap: 30px;
}

.offers_col {
  width: calc(100% / 4);
  padding: 20px;
  /* background: #fffdf5ba; */
  background-color: #fefcf2;
  /* background: linear-gradient(0deg, rgb(255 255 255 / 24%) 0%, #fffdf566 50%); */
  border-radius: 8px;
  height: 350px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.offers_col:hover {
  background: #fffdf5ba;
}

.offers_col::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../img/offer_img.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 10%;
  left: 0;
  right: 0;
  bottom: 0;
  /* transform: translate(-50%, -50%); */
  z-index: -1;
  opacity: 0.5;
  transition: all 0.5s ease-in-out;
  scale: 1;
}

.offers_col:hover::after {
  scale: 1.1;
}

.offers_col .offers_count {
  width: 40px;
  height: 40px;
  background-color: var(--color01);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-family: var(--fonts01);
  font-weight: 800;
  font-size: 18px;
  line-height: 20px;
}

.offers_col h3 {
  font-size: 20px;
  font-family: var(--fonts01);
  color: var(--color03);
  font-weight: 700;
  text-transform: capitalize;
  margin: 20px 0;
  padding-right: 50px;
}

.offers_col a {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 16px;
  color: var(--color01);
  font-family: var(--fonts01);
  transition: all 0.2s ease-in-out;
}

.offers_col a:hover {
  color: var(--color03);
}

/* Upcoming Events Section */
.upcoming_heading::after {
  display: none;
}

.upcoming_heading {
  padding: 0;
}

/* .upcoming_events_image {
  position: relative;
}
.upcoming_events_image img {
  position: absolute;
} */
.upcoming_events_image {
  column-count: 2;
  column-gap: 15px;
}

.upcoming_events_image img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 6px;
  break-inside: avoid;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.events_area {
  display: flex;
  margin: 20px 0;
}

.events_area .counter-box {
  width: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.events_area .counter-box:nth-child(1) {
  padding-left: 0;
}

.events_area .counter-box:nth-last-child(1) {
  padding-right: 0;
}

.events_area .counter-box p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.events_area .counter-box p span {
  color: var(--color01);
  font-size: 18px;
}

.teams_founder {
  background: linear-gradient(
    40deg,
    rgba(10, 7, 1, 1) 0%,
    rgba(47, 47, 47, 1) 100%
  );
  padding: 20px;
  border-radius: 8px;
  border: 2px solid var(--color01);
  position: relative;
  transition: all 0.5s ease-in-out;
  display: flex;
  box-shadow: unset;
  background: #fefcf2;
  box-shadow: 5px 10px 15px #05050545;
  transform: translateY(0);
}

.teams_founder:hover {
  background: #fefcf2;
  box-shadow: unset;
}

.founder_image {
  z-index: 1;
  width: 30%;
}

.founder_image img {
  object-fit: contain;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35%;
}

.founder_image::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background-image: url(../img/members_outer.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.founder_image::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background: var(--color01);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
}

.teams_founder:hover .founder_image::after {
  background-color: var(--color01);
}

.teams_founder:hover .founder_image::before {
  left: 0;
  right: unset;
  width: 70%;
  background: linear-gradient(
    40deg,
    rgba(10, 7, 1, 1) 0%,
    rgba(47, 47, 47, 1) 100%
  );
  z-index: -1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.teams_member_outer {
  width: 70%;
  margin: 100px auto 0;
}

.founder_details {
  width: 70%;
  position: relative;
  z-index: 2;
}

.founder_details h3 {
  font-family: var(--fonts01);
  font-weight: bold;
  font-size: 25px;
  color: var(--color05);
  transition: all 0.2s ease-in-out;
  color: var(--color03);
}

.founder_details .desination {
  font-family: var(--fonts01);
  font-size: 20px;
  font-weight: 600;
  color: var(--color01);
  margin: 5px 0 20px;
  display: inline-flex;
  transition: all 0.2s ease-in-out;
}

.founder_details p {
  font-size: 16px;
  font-family: var(--fonts01);
  color: #fefcf2;
  font-weight: 600;
  margin: 15px 0;
  color: var(--color03);
  transition: all 0.2s ease-in-out;
}

.social_icons {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: var(--color03);
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.social_icons i {
  display: flex;
  width: 30px;
  height: 30px;
  background-color: var(--color01);
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.teams_founder:hover .founder_details h3,
.teams_founder:hover .founder_details p {
  color: var(--color05);
}

.teams_founder:hover .social_icons {
  color: var(--color01);
}

.teams_founder:hover .social_icons i {
  background-color: var(--color05);
  color: #ffbe08;
}

.teams_row {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 0 0 0;
    flex-wrap: wrap;
}

.member_col {
  width: 215px;
  transition: all 0.5s ease-in-out;
  height: 240px;
  position: relative;
	margin-top: 80px;
}

.member_details_outer {
  position: absolute;
  top: 0;
  left: 0;
  height: 240px;
  width: 100%;
  overflow: hidden;
  border: 2px solid var(--color01);
  border-radius: 8px;
  background-color: transparent;
  transition: all 0.5s ease-in-out;
}

.member_col:hover .member_details_outer {
  background-color: #fefcf2;
}

.member_details {
  width: 100%;
  position: absolute;
  bottom: -30px;
  background: linear-gradient(
    40deg,
    rgba(10, 7, 1, 1) 0%,
    rgba(47, 47, 47, 1) 100%
  );
  padding: 10px;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.member_col:hover .member_details {
  bottom: 0;
}

.member_details h3 {
  font-size: 20px;
  font-family: var(--fonts01);
  color: var(--color01);
  font-weight: 800;
}

.member_details .desination {
  color: var(--color05);
  font-size: 17px;
  font-weight: 600;
  font-family: var(--fonts01);
}

.membar_img {
  /* height: 240px; */
  overflow: hidden;
  border-radius: 8px;
  transform: translateY(0);
  z-index: 1;
  position: absolute;
  transition: all 0.5s ease-in-out;
  bottom: 2px;
  left: 2px;
  right: 2px;
  top: 2px;
}

.membar_img::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../img/members_outer.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.membar_img img {
  transition: all 0.5s ease-in-out;
}

.member_col:hover .membar_img {
  transform: translateY(-70px);
  bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.member_details .social_icons {
  position: absolute;
  top: -40%;
  right: 10px;
  transform: translateY(40%);
}

/* Contact Us Section */
.contact_us_section {
  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact_us_section .about_heading {
  margin: 0;
}

.contact_us_section .events_area {
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
  margin: 30px 0;
}

.contact_us_section .events_area .counter-box:nth-child(2) {
  padding-right: 0;
}

.contact_us_section .events_area .counter-box:nth-child(2)::after {
  display: none;
}

/* Footer Start */
.footer_section {
  padding-bottom: 20px;
  padding-top: 100px;
}

.footer_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 100px;
  border-top: 1px solid #c3c3c3;
  padding-top: 20px;
}

.copyewright_section {
  padding: 17px 0 15px;
  text-align: center;
  font-size: 17px;
  color: #22211e;
  background-color: var(--color01);
  line-height: 16px;
  font-weight: 600;
}

.copyewright_section a {
  color: var(--color05);
}

/* Preloader Styles */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: #0a0701;
  /* Match your site background */
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  width: 50px;
  height: 50px;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #ffbe08;
  /* Anvaya Yellow */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

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

/* About Us Page */
.inner_page_banner {
  height: 500px;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner_background_image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.inner_background_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_background_image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/inner_banner_overlay.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.inner_banner_content {
  margin-top: 85px;
}
.inner_banner_content h1 {
  font-size: 52px;
  font-family: var(--fonts01);
  color: var(--color05);
  font-weight: bold;
  text-transform: capitalize;
}
.inner_banner_content h1 span {
  color: var(--color01);
}

.inner_banner_content p {
  font-family: var(--fonts01);
  color: var(--color05);
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 20px 0 25px;
  width: 80%;
}
.who_we_are_content_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.what_we_offer_section .section_heading.who_we_are_content {
  margin: 0;
  text-align: left;
  width: 50%;
}

.who_we_are_image {
  position: relative;
  z-index: 1;
  width: 43%;
}
.who_we_are_image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../img/section_background.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  z-index: -1;
  filter: hue-rotate(550deg);
}
.section_image {
  mask-image: url(../img/about_mask_img.png);
  -webkit-mask-image: url(../img/about_mask_img.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center top;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  max-width: 90%;
}
.section_image_small {
  max-width: 40%;
  position: absolute;
  right: 0;
  bottom: 0;
}
.experience_year {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 5%;
  z-index: 1;
  text-align: center;
  width: 120px;
  mask-image: url(../img/about_mask_img.png);
  -webkit-mask-image: url(../img/about_mask_img.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-size: 100% auto;
  padding: 30px;
}
.experience_year::after {
  content: "";
  background: linear-gradient(
    40deg,
    rgba(10, 7, 1, 1) 0%,
    rgba(47, 47, 47, 1) 100%
  );
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.experience_year span {
  font-family: var(--fonts01);
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  vertical-align: middle;
  color: var(--color01);
}
.experience_year p {
  font-family: var(--fonts01);
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
  margin: 5px 0 0;
  color: var(--color05);
}
.who_we_are_content .counter-box span {
  color: var(--color01);
}
.who_we_are_content .counter-box::after {
  background: radial-gradient(circle, #ffbe08 0%, rgb(255 255 255 / 0%) 100%);
}
.mission_vision_values_row {
  display: flex;
  margin-top: 100px;
}
.mission_vision_values {
  width: calc(100% / 3);
  padding: 0 15px;
  position: relative;
}
.mission_vision_values::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: radial-gradient(circle, #ffbe08 0%, rgb(255 255 255 / 0%) 100%);
}
.mission_vision_values:nth-last-child(1):after {
  display: none;
}
.mission_vision_values.section_heading p {
  font-size: 16px;
}
.mission_vision_values img {
  width: 30%;
}
.mission_vision_values h2 {
  font-size: 30px;
}

/* Contact Us Page */
.contact_us_form {
  padding: 30px 30px;
  background: linear-gradient(
    40deg,
    rgba(10, 7, 1, 1) 0%,
    rgba(47, 47, 47, 1) 100%
  );
  border-radius: 10px;
	width: 50%;
}
.contact_us_form h3 {
  color: var(--color05);
  font-family: var(--fonts01);
  font-weight: 800;
  font-size: 20px;
  text-transform: capitalize;
  margin: 10px 0 5px;
}
.contact_us_form p {
  font-family: var(--fonts01);
  font-size: 15px;
  color: var(--color02);
  font-weight: 600;
}
.contact_us_form p span {
  color: #f44336;
}
.contact_us_form p .custom_btn span{
	color: var(--color01);
}

.field_outer {
  margin-top: 30px;
  gap: 15px;
  display: flex;
  flex-direction: column;
}
.field_row {
  display: flex;
  gap: 15px;
}
.field_col {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.field_col label {
  font-family: var(--fonts01);
  font-size: 15px;
  color: var(--color05);
  font-weight: 600;
}
.field_col input,
.field_col textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid var(--color05);
  background-color: transparent;
  font-family: var(--fonts01);
  font-size: 15px;
  color: var(--color05);
  font-weight: 600;
	width: 100%;
}
.field_col input:focus,
.field_col textarea:focus {
  outline: none;
  border: 1px solid var(--color01);
}
.field_col input:focus ::placeholder,
.field_col textarea:focus ::placeholder {
  color: var(--color01);
}
.field_col input:focus ~ label,
.field_col textarea:focus ~ label {
  color: var(--color01);
}
.field_col.has-value input,
.field_col.has-value textarea {
  border-color: var(--color01);
  color: var(--color01);
}
.field_col.has-value label {
  color: var(--color01);
}

.field_col.error input,
.field_col.error textarea {
  border-color: #f44336;
  color: #f44336;
}
.field_col.error label {
  color: #f44336;
}
.field_col .custom_btn {
  margin: 0 auto;
}

.contact_us_list {
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
  border-top: 1px dashed var(--color02);
  margin-top: 20px;
}
.contact_us_list li {
  display: flex;
  align-items: center;
  /* gap: 10px; */
  border-bottom: 1px dashed var(--color02);
  padding: 15px 0;
  column-gap: 10px;
}
.contact_us_list li span {
  font-size: 17px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: var(--color01);
  color: var(--color06);
  transition: all 0.5s ease-in-out;
  text-align: center;
}
.contact_us_list li p,
.contact_us_list li a {
  color: var(--color06);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.5s ease-in-out;
}
.contact_us_list li a:hover {
  color: var(--color01);
}

.map-container {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin: 20px 0 0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.my-page-contact-us .contact_us_section {
  display: none;
}
.my-page-contact-us .map-container {
  display: block;
}

/* Services Page  */
.services_outer {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.services_col {
  width: calc(100% / 3 - 20px);
  background-color: #fefcf2;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.services_image {
  height: 200px;
}
.services_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services_content {
  padding: 25px;
}
.services_content h3 {
  font-size: 20px;
  font-family: var(--fonts01);
  color: var(--color03);
  font-weight: 700;
  text-transform: capitalize;
  margin: 20px 0;
}
.services_content p,
.services_content ul li {
  font-size: 15px;
  font-family: var(--fonts01);
  color: var(--color02);
  font-weight: 600;
  margin: 20px 0;
}
.services_content ul {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.services_content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-left: 25px;
  margin: 0;
}
.services_content ul li::before {
  content: "\f270";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: bootstrap-icons;
  font-size: 20px;
  color: var(--color01);
}
.services_col:hover {
  background: #fffdf5ba;
}

.services_col::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../img/offer_img.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 10%;
  left: 0;
  right: 0;
  bottom: 0;
  /* transform: translate(-50%, -50%); */
  z-index: -1;
  opacity: 0.5;
  transition: all 0.5s ease-in-out;
  scale: 1;
}

.services_col:hover::after {
  scale: 1.1;
}
.services_col::before {
  content: "";
  position: absolute;
  bottom: -1px;
  /* z-index: -1; */
  right: -1px;
  width: 145px;
  height: 167px;
  mask-image: url(../img/services_col_vector.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center top;
  mask-size: 100% 100%;
  background: linear-gradient(50deg, rgb(202 156 29) 15%, rgb(255 190 8) 50%);
}

.services_col .custom_btn {
  background-color: var(--color01);
  color: var(--color05);
}
.services_col .custom_btn span {
  color: var(--color05);
}
.services_col .custom_btn::after {
  background-color: var(--color03);
}

/* Services Single Details */
.what_we_offer_section.service_details {
  overflow: visible;
  position: relative;
}
.what_we_offer_section.service_details::after {
  display: none;
}
.services_inner {
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: unset;
  gap: 30px;
}
.enroll_now_column {
  width: 35%;
  position: sticky;
  top: 85px;
}
.services_description {
  width: 80%;
}
.what_we_offer_section .services_description .section_heading {
  width: 100%;
  text-align: left;
  margin-bottom: 0;
}
.course_features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
  border: 1.3px dashed var(--color02);
  border-left: unset;
  border-right: unset;
  margin: 30px 0;
}
.course_col {
  width: calc(100% / 2 - 10px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.course_col .icon {
  background-color: #fefcf2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 8px;
}
.course_col .icon img {
  width: 65%;
}
.course_content {
  width: calc(100% - 80px);
}
.course_content h5 {
  color: #ffb300;
  font-family: var(--fonts01);
  font-weight: 800;
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.course_content p {
  font-family: var(--fonts01);
  font-size: 16px;
  color: var(--color02);
  font-weight: 600;
}

.course_content.more_details_content {
  width: 100%;
  border-bottom: 1.3px dashed var(--color02);
  padding: 0 0 10px;
  margin: 20px 0 0;
}
.course_content.more_details_content p {
  margin-bottom: 10px;
}
.course_content.more_details_content ul li {
  position: relative;
  padding-left: 15px;
}
.course_content.more_details_content ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--color01);
  border-radius: 50px;
  transform: translateY(-50%);
}

.expert_faculty {
  border-radius: 8px;
  background: linear-gradient(
    40deg,
    rgba(10, 7, 1, 1) 0%,
    rgba(47, 47, 47, 1) 100%
  );
  overflow: hidden;
  padding: 20px 15px;
  margin-bottom: 30px;
}
.expert_faculty .section_heading {
  width: 100%;
  margin-bottom: 20px;
}
.expert_faculty .section_heading h2 {
  width: 100%;
  text-align: left;
  color: var(--color01);
  margin: 0;
  font-size: 25px;
  border-bottom: 1.3px dashed var(--color02);
  padding-bottom: 20px;
}
.expert_faculty .section_heading h2 span {
  color: var(--color05);
}
.expert_faculty_second .section_heading h2 {
  color: var(--color03);
}
.expert_faculty_second .section_heading h2 span {
  color: var(--color01);
}
.expert_faculty_second {
  position: relative;
  z-index: 1;
  background: #fff;
}
.expert_faculty_second:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(https://darkorange-gull-242515.hostingersite.com/wp-content/themes/anvayabiotech/assets/img/offer_img.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 10%;
  left: 0;
  right: 0;
  bottom: 0;
  /* transform: translate(-50%, -50%); */
  z-index: -1;
  opacity: 0.5;
  transition: all 0.5s ease-in-out;
  scale: 1;
}

.single-service .footer_section,
.page-template-contact-us .footer_section{
  padding-top: 0;
}
.single-service .footer_section .contact_us_section.about_content.text-center,
.page-template-contact-us .contact_us_section.about_content.text-center{
  display: none;
}
.single-service .footer_menu,
.page-template-contact-us .footer_menu{
  margin-top: 0;
  border-top: unset;
}
.wpcf7-response-output {
    color: #4CAF50;
    text-align: center;
    margin: 15px 0 0;
}
