.dropdown,
body.loading > :not(#pageLoader) {
  visibility: hidden;
}
.dropdown li,
.nav-list {
  list-style: none;
}
.overlay-content p,
.text-justify {
  text-align: justify;
}
.split-text-container,
.text-capitalize {
  text-transform: uppercase;
}
.hero-container,
body.loading {
  overflow: hidden;
}
*,
.img-wrapper img {
  box-sizing: border-box;
}
:root {
  --color-blue-primary: #2829d3;
  --color-pink-electric: #cd00aa;
  --color-pink-hot: #ff0077;
  --color-orange-coral: #ff744f;
  --color-yellow-golden: #f3a113;
  --color-yellow-soft: #f9f871;
  --color-black: #000000;
  --color-dark-grey: #2a2a2a;
  --color-grey-light: #f5f5f5;
  --color-white: #ffffff;
  --text-primary: var(--color-black);
  --text-secondary: var(--color-dark-grey);
  --text-on-primary: var(--color-white);
  --text-highlight: var(--color-pink-hot);
  --text-link: var(--color-blue-primary);
  --background-main: var(--color-white);
  --background-accent: var(--color-yellow-soft);
  --background-muted: var(--color-grey-light);
  --background-highlight: var(--color-blue-primary);
  --background-footer: var(--color-dark-grey);
  --border-light: #dddddd;
  --border-dark: var(--color-dark-grey);
  --hover-primary: #1f20b5;
  --hover-secondary: #b10093;
  --focus-outline: var(--color-pink-hot);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.2);
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-md: 1rem;
  --font-lg: 1.25rem;
  --font-xl: 1.5rem;
  --font-xxl: 2rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}
* {
  margin: 0;
  padding: 0;
}
body {
  /*font-family: Roboto, sans-serif;*/
   /*font-family: "Merienda", cursive; */
   /*font-family: "Merriweather", serif; */
    /*font-family: "Mooli", sans-serif;*/
     /*font-family: "ABeeZee", sans-serif;*/
      /*font-family: "Caladea", serif;*/
       /*font-family: "Varela Round", sans-serif;*/
        /*font-family: "Poppins", sans-serif;*/
          font-family: "Inter", sans-serif;
            /*font-family: "Open Sans", sans-serif;*/
            /*  font-family: "Manrope", sans-serif;*/
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: 0 0;
}
::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #666;
}
.aos-init {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.aos-animate,
.img-wrapper:hover .overlay {
  opacity: 1;
}
#pageLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.4s, visibility 0.4s;
}
#pageLoader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.loader-spinner {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  color: #2829d3 !important;
  animation: 1.2s linear infinite spin;
}
.loader-logo {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card {
  transition: transform 0.3s linear, box-shadow 0.3s linear !important;
}
.primaryBtn,
.submitBtn,
.submitBtn:disabled {
  padding: 0.8rem 1.8rem;
  transition: 0.3s;
  cursor: pointer;
}
.card:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.primaryBtn {
  border: none;
  font-size: 0.9rem;
  border-radius: 30px;
  background-color: var(--color-blue-primary);
  color: var(--color-white);
}
.submitBtn,
.submitBtn:disabled {
  font-size: 1rem;
}
.primaryBtn:hover,
.submitBtn:hover {
  background-color: var(--hover-secondary);
  color: var(--color-white);
}
.submitBtn,
.submitBtn:disabled,
footer {
  background-color: var(--color-blue-primary);
  color: var(--color-white);
}
.submitBtn {
  border: none;
  border-radius: 0;
}
.submitBtn:disabled {
  border: none;
  border-radius: 0;
  opacity: 0.8;
}
.border:hover {
  box-shadow: 0 0 10px rgba(108, 117, 125, 0.3);
  transition: box-shadow 0.3s ease-in-out;
}
.logo::after,
.nav-link.active::after {
  box-shadow: var(--neon-glow);
  content: "";
}
.ariusH1 {
  font-size: var(--font-xl);
  color: var(--color-blue-primary);
}
.ariusH2,
footer a:hover {
  color: var(--color-yellow-golden);
}
.ariusH2 {
  font-size: var(--font-lg);
}
.ariusH3,
.ariusP {
  font-size: var(--font-md);
}
.ariusH3 {
  color: var(--color-pink-hot);
}
.ariusP {
  color: var(--color-dark-grey);
}
.bg-black{
background-color: black;
}
.dropdown a,
.nav-link {
  text-decoration: none;
  font-size: 0.9rem;
}
.text-left {
  text-align: left;
}
.overlay,
.overlay-content,
.testimonial-card,
.text-center {
  text-align: center;
}
.contact-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s, text-decoration 0.3s;
}
.contact-link:hover {
  color: #ffc107;
  text-decoration: underline;
}
.dropdown .active,
.dropdown a:hover,
.has-dropdown.active > .nav-link,
.nav-item.active > .nav-link,
.nav-link.active,
.nav-link:hover {
  color: var(--hover-primary);
}
.header {
  width: 100%;
  top: 0;
  position: fixed;
  z-index: 999;
}
.has-dropdown,
.nav-item,
.navbar,
.whatWeDoCard {
  position: relative;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  background-color: #fff;
  /* background-color: transparent; */
}
.nav-list,
.nav-menu {
  align-items: center;
  display: flex;
}
.nav-brand {
  width: 10%;
}
.logo img {
  width: 6rem;
  height: auto;
  text-decoration: none;
  overflow: hidden;
}
.hamburger span,
.logo::after {
  height: 2px;
  position: absolute;
}
.logo img:hover {
  outline: 0;
  border: none;
  box-shadow: none;
  overflow: hidden;
}
.logo::after {
  width: 100%;
  background: var(--primary-color);
  bottom: -4px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-medium);
}
.logo:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-menu {
  width: calc(100% - 10%);
}
.nav-list {
  margin-top: 1rem;
  justify-content: flex-end;
  gap: 0.5rem;
  width: 100%;
  padding-right: 0.5rem;
}
.nav-link {
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-medium);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.hidden,
.nav-toggle {
  display: none;
}
.nav-link:hover {
  transform: translateY(-1px);
}
.nav-link.active::after {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 50%;
}
.icon {
  transition: var(--transition-medium);
  vertical-align: middle;
}
.chevron-icon {
  transition: transform var(--transition-medium);
}
.dropdown,
.dropdown a,
.hamburger span {
  transition: all var(--transition-medium);
}
.has-dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.5rem;
  opacity: 0;
  transform: translateY(7px) scale(0.98);
  z-index: 99999;
  color: #000;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: var(--dropdown-bg);
  border-left: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
  transform: rotate(45deg);
  backdrop-filter: var(--glass-effect);
  -webkit-backdrop-filter: var(--glass-effect);
}
.dropdown a {
  color: #000;
  padding: 0.7rem 1rem;
  display: block;
  border-radius: var(--border-radius);
  margin-bottom: 2px;
  font-weight: 400;
}
.dropdown a:hover {
  transform: translateX(5px);
}
.nav-toggle {
  cursor: pointer;
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  padding: 0.6rem;
  transition: var(--transition-medium);
}
.hamburger {
  width: 24px;
  height: 20px;
  position: relative;
}
.hamburger span {
  display: block;
  width: 100%;
  background: #000;
  border-radius: 10px;
}
.hamburger span:first-child {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 9px;
  width: 70%;
}
.hamburger span:last-child {
  top: 18px;
}
.nav-active .hamburger span:first-child {
  transform: rotate(45deg);
  top: 9px;
}
.nav-active .hamburger span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-active .hamburger span:last-child {
  transform: rotate(-45deg);
  top: 9px;
}
.hero-container {
  position: relative;
  height: 100vh;
  width: 100%;
}
.pulse-btn {
  position: relative;
  animation: 1.5s infinite pulseEffect;
  transition: transform 0.3s linear;
}
@keyframes pulseEffect {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}
.hero-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
}
.overlay-content,
.whatWeDoImg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.overlay-content {
  color: #fff;
  padding: 2rem;
}
.overlay-content p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.split-text-container {
  display: flex;
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
}
.text-part {
  display: inline-block;
  position: relative;
  transform: translateX(0);
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.text-part.left {
  transform: translateX(-200%);
  animation-name: slide-in-left;
}
.text-part.right {
  transform: translateX(200%);
  animation-name: slide-in-right;
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-in-right {
  0% {
    transform: translateX(200%);
  }
  100% {
    transform: translateX(0);
  }
}
.whatWeDo i {
  border-color: var(--color-blue-primary);
  color: var(--color-blue-primary);
  font-size: var(--font-xl);
}
.whatWeDoImg img {
  width: 7%;
  height: auto;
  filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(10deg);
  z-index: 99;
}
.coursesWeOffer .card,
.joinUs .card {
  transition: transform 0.3s linear, box-shadow 0.3s linear;
}
.joinUs a {
  background-color: var(--color-yellow-golden);
  color: var(--color-black);
}
.coursesWeOffer a {
  border-radius: unset;
  background-color: var(--color-black);
}



.course-card {
  width: 100%;
  padding: 20px;
  background: #fff;
  border: 6px solid #000;
  box-shadow: 12px 12px 0 #000;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.course-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 17px 17px 0 #000;
}

.card__title {
  font-size: 20px;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
  position: relative;
  overflow: hidden;
}

.card__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 3px;
  background-color: #000;
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.course-card:hover .card__title::after {
  transform: translateX(0);
}

.card__content {
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  margin-bottom: 15px;
}

.card__button {
  border: 3px solid #282ad4;
  background: #282ad4;
  color: #fff;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.card__button::before {
  content: "Enroll?";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 105%;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.card__button:hover::before {
  transform: translateY(0);
}

.card__button:active {
  transform: scale(0.95);
}

.team-card-overlay {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.team-card-overlay:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-img {
  width: 100%;
  height: 280px; /* uniform image height */
  object-fit: contain;
  display: block;
}

.team-info {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  min-width: 70%;
}

.team-info h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.team-info p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.getInTouch img {
  width: 70%;
  height: auto;
}
.testimonial-card {
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
.testimonial-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
}
.testimonial-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.testimonial-profile {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 1rem;
}
.testimonial-description {
  font-style: italic;
  color: #555;
  max-height: 120px;
  overflow-y: auto;
  padding-right: 6px;
  flex-grow: 1;
}
.testimonial-description::-webkit-scrollbar {
  width: 4px;
}
.testimonial-description::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}
.splide__arrow {
  background: 0 0;
  color: #333;
  font-size: 2rem;
}
.splide__arrow--prev {
  left: -2.5rem;
}
.splide__arrow--next {
  right: -2.5rem;
}
.mansory-gallery,
.overlay {
  padding: 0.5rem;
  display: flex;
}
.our-story img {
  width: 100%;
  height: auto;
}
.event-description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  transition: 0.3s;
}
.event-description.collapsed {
  -webkit-line-clamp: 2;
}
.event-description.expanded {
  -webkit-line-clamp: unset;
}
#jobApplyModal .modal-header,
#registerModal .modal-header {
  background-color: var(--background-highlight);
}
.mansory-gallery {
  flex-wrap: wrap;
  position: relative;
  gap: 1rem;
}
.mansory-gallery .column {
  flex: 25%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1.5rem;
}
.img-wrapper img {
  border: 0.5rem solid #fff;
  border-radius: 1.5rem;
  display: block;
  width: 100%;
  height: auto;
}
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 0 0 1.5rem 1.5rem;
  font-size: 1.2rem;
}
@media (max-width: 500px) {
  .mansory-gallery .column {
    flex: 100%;
  }
}
@media (max-width: 768px) {
  .mansory-gallery .column {
    flex: 50%;
  }
}
@media (max-width: 480px) {
  .mansory-gallery .column {
    flex: 100%;
  }
}

/* testimonial section animation */

/* testimonial section animation */

footer a {
  color: var(--color-grey-light);
}
footer img {
  width: 30%;
  height: auto;
  filter: brightness(0) invert(1);
}
.spacer {
  background: #4169e1;
  width: 100%;
  height: 100vh;
}

.contact-floating {
  position: fixed;
  bottom: 80px;
  right: 20px;
  display: flex;
  flex-direction: column; /* vertical alignment */
  gap: 12px;
  z-index: 1050; /* above bootstrap modals */
}

.contact-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Proper brand colors */
.contact-btn.phone {
  background-color: #0d6efd; /* Bootstrap primary blue */
}

.contact-btn.whatsapp {
  background-color: #25d366; /* WhatsApp green */
}

