@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import 'https://unpkg.com/swiper/swiper-bundle.min.css';
/* tangerine font */
@import url("https://fonts.googleapis.com/css?family=Tangerine");
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

:root {
  /* --primary-color: #002F93;  */
  --primary-color: #041E42;  /* logo matched color*/
  /* --secondary-color: #00bf8f;  */
  --secondary-color: #03132b; /* Green color for background effects */
  --highlight-color: #1b6b3f; 
  --second-navbar-color: #0a3879; /*second navbar background */
  --second-navbar-dropdown-bg: #edf199; /*second navbar dropdown background-color*/
  --second-navbar-text-color: #e1ec2b; /*second navbar text color */
  --second-navbar-hover-text-color: #0d1a36f3; /*second navbar text color */
  
  --dark-text-color: #0d1a36f3; /*dark text navbar */
  --about-image-shadow: #0d1a36f3; /*dark text navbar */
  --read-more-shade-one: #084daf;
  --read-more-shade-two: #062d64; 
  --about-shadow: 0px 3px 23px 10px #588cd4;
}

.about_shadow {
  box-shadow: var(--about-shadow);
}
::selection {
  background-color: #112ed3;
  color: white;
}

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

.cursiveHeading {
  /* font-family: "Great Vibes", cursive !important; */
  font-family: 'Tangerine', serif !important;
}

/* Swiper Container Styling */
.deck_Card_Swiper {
  width: 100%;
  max-width: 900px;
  height: 400px;
  margin: 20px auto;
  position: relative;
}

.deck_Card_Swiper .swiper-wrapper {
  height: 100%;
}

/* Slides Styling */
.deck_Card_Swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  height: 100%;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  box-shadow: 0 0 20px #00000036;
  border-radius: 10px;
}

.deck_Card_Swiper .swiper-slide:not(.swiper-slide-prev):not(.swiper-slide-active):not(.swiper-slide-next) {
  opacity: 0;
}

.deck_Card_Swiper .swiper-slide-prev,
.deck_Card_Swiper .swiper-slide-next {
  opacity: 0.3;
}

.deck_Card_Swiper .swiper-slide-active {
  opacity: 1;
  background-color: var(--primary-color);
}

.deck_Card_Swiper .swiper-button-prev,
.deck_Card_Swiper .swiper-button-next {
  color: #000;
}

.deck_Card_Swiper .swiper-pagination-bullet {
  background: #000;
}

/* Mobile Responsive Styling */
@media (max-width: 640px) {
  .deck_Card_Swiper {
      max-width: 100%;
      padding: 0 10px;
  }

  .deck_Card_Swiper .swiper-slide {
      width: 100% !important;
      max-width: none;
      margin: 0 auto;
  }

  .deck_Card_Swiper .swiper-slide-prev,
  .deck_Card_Swiper .swiper-slide-next {
      display: none;
  }
}