@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  /* define all the color variables */
  --primary: #1a5575;
  --orange: #ff8e5d;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
}

*:focus {
  box-shadow: none !important;
  outline: none !important;
}

svg {
  flex: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0 !important;
  text-wrap-style: balance;
}

.container-lg,
.container-fluid {
  padding: 0 !important;
}

a {
  display: inline-block !important;
  text-decoration: none !important;
  color: inherit;
}

.row {
  margin: 0 !important;
}

[class*="col-"] {
  padding: 0 !important;
}

.swiper-slide {
  user-select: none;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input:focus {
  outline: none;
}

/* for hiding the scroller */
::-webkit-scrollbar {
  display: none;
}

html {
  scrollbar-width: none;
}

nav .navbar-nav li a {
  padding: 0 !important;
}

nav {
  background: var(--orange) !important;
}

/* .navbar-toggler-icon {
    background-image: url(../images/menu.png);
} */

.image-reveal {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.text-reveal {
  display: inline-block;
  overflow: hidden;
  padding: 4px;
}

.text-reveal span {
  display: inline-block;
  white-space: pre;
}

ul {
  margin-bottom: 0 !important;
}

.text-justify {
  text-align: justify;
  text-justify: inter-word;
}

.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: var(--lines, 3);
  line-clamp: var(--lines, 3);
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.scroll-container {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.scroll-content {
  display: flex;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.parallax {
  position: relative;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.neu_shadow {
  background: #f0f0f0;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.1),
    -6px -6px 10px rgba(255, 255, 255, 0.7);
}

.custom-cursor {
  pointer-events: none;
  /* Let clicks pass through */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

/* Outer & inner cursor circles */
.cursor-circle {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform, width, height;
}

.cursor-circle--outer {
  width: 30px;
  height: 30px;
  border: 2px solid var(--orange);
  opacity: 0.6;
}

.cursor-circle--inner {
  width: 10px;
  height: 10px;
  background-color: var(--orange);
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.hero_section {
  background: url(../images/hero_bg.webp) no-repeat top center / cover;
}

.nav_logo {
  width: 60px;
}

.join_btn {
  background: var(--primary);
  color: #fff;
  padding: 0.7rem 1.4rem !important;
  border-radius: 5px;
  font-weight: 550;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.join_btn:hover {
  transform: scale(1.05);
}

.join_btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5px;
}

nav.navbar .nav-link {
  color: white !important;
  font-weight: 500;
}

.heading_one {
  color: white;
  font-size: 3.3rem;
  font-weight: 650;
}

.join_btn_2 {
  background: transparent;
  border: 1.9px solid white;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.join_btn_2:hover {
  transform: scale(1.05);
}

.hero_img {
  border: 2px solid var(--primary);
}

.hero_img img {
  aspect-ratio: 1/1;
  max-width: 500px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes floating {
  0% {
    transform: translateY(-50%) rotate(45deg) translateY(0);
  }

  50% {
    transform: translateY(-50%) rotate(45deg) translateY(-10px);
  }

  100% {
    transform: translateY(-50%) rotate(45deg) translateY(0);
  }
}

.white_floating_div {
  background: rgba(255, 255, 255, 0.543);
  width: 90px;
  height: 90px;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 0;
  transform: translateY(-50%) rotate(45deg);
  animation: floating 3s ease-in-out infinite;
}

.hero_row_icons svg {
  width: 60px;
  height: 60px;
}

.about_images {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: left center;
}

.join_btn_white {
  background: white;
  color: var(--primary);
  padding: 0.7rem 1.4rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.join_btn_white:hover {
  transform: scale(1.05);
}

.counsil_box svg,
.courses_svg svg,
.courses_svg svg {
  width: 60px;
  height: 60px;
}

.orange_border {
  border: 1.8px solid var(--orange)
}

.nav_btns {
  background: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
}

.nav_btns svg {
  stroke: white;
}

.course_benefit .swiper-slide p {
  color: rgba(0, 0, 0, 0.511);
}

.gallery_section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 20px;
}

.div1 {
  grid-column: span 2 / span 2;
  grid-row: span 6 / span 6;
}

.div2 {
  grid-row: span 3 / span 3;
  grid-column-start: 3;
}

.div3 {
  grid-row: span 3 / span 3;
  grid-column-start: 4;
}

.div4 {
  grid-row: span 3 / span 3;
  grid-column-start: 3;
  grid-row-start: 4;
}

.div5 {
  grid-row: span 3 / span 3;
  grid-column-start: 4;
  grid-row-start: 4;
}

.gallery_img {
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  border: 9px solid var(--orange);
}

.number_div {
  background: #ECECEC;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 1.5px dashed var(--primary);
  color: var(--orange);
  font-size: 16px;
  font-weight: 650;
  flex: none;
}

.navbar-toggler{
  border: 1px solid white !important;
}

.navbar-toggler-icon{
  filter: brightness(20) !important;
}

.bg-orange{
    background:var(--orange);
}

.submit_custom_btn{
    width: 100%;
    background: var(--primary);
    color: white;
    font-size: 14px;
    font-weight: 550;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
}

.enquiry_form label{
    font-size:14px;
    font-weight:550;
    color:var(--primary);
}

.enquiry_form input{
    font-size:14px;
    font-weight:450;
}
