 @import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: "Mona Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.Header {
  background: #fdfdfd;
  box-shadow: 0px 0px 0px 1px #d5d5d5;
}
/* Top Menu */
.topMenu {
  display: inline-block;
  width: 100%;
  /* padding: 10px 0px; */
  
}
.lion-int {
  /* min-height: 100vh; 
  display: flex;*/
  justify-content: center;
  align-items: center;
  font-family: "Mona Sans", sans-serif;
  text-decoration: none;
}

@keyframes color {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

.btn-lion{
 background: #1c4f9c;
    color: #f2f7ff;
    border-radius: 30px;
    padding:12px 20px;
    font-weight: 600;
    margin: 4px 2px;
    text-transform: uppercase;
    font-size: 13px;
}
.btn-lion:hover{
  background:rgb(252 203 6);
  }
.lion-int h2 {
  font-family: "Mona Sans", sans-serif;
  font-size: 3vw;
  font-weight:600;
  color: transparent;
  background: rgb(28, 79, 156);
  background: linear-gradient(90deg,
      rgba(28, 79, 156, 1) 0%,
      rgba(252, 203, 6, 1) 7%,
      rgba(28, 79, 156, 1) 14%,
      rgba(28, 79, 156, 1) 21%,
      rgba(28, 79, 156, 1) 28%,
      rgba(28, 79, 156, 1) 35%,
      rgba(28, 79, 156, 1) 42%,
      rgba(28, 79, 156, 1) 49%,
      rgba(28, 79, 156, 1) 56%,
      rgba(28, 79, 156, 1) 63%,
      rgba(28, 79, 156, 1) 70%,
      rgba(28, 79, 156, 1) 77%,
      rgba(28, 79, 156, 1) 84%,
      rgba(28, 79, 156, 1) 91%,
      rgba(28, 79, 156, 1) 97%,
      rgba(28, 79, 156, 1) 100%);

  background-clip: text;
  -webkit-background-clip: text;
  background-size: 500%;
  animation: color 10s linear infinite;
}

.lion-int p {
  font-family: "Mona Sans", sans-serif;
  font-size: 2vw;
  font-weight:500;
  color: transparent;
  background: rgb(252, 203, 6, 1);
  background: linear-gradient(90deg,
      rgba(28, 79, 156, 1) 0%,
      rgba(252, 203, 6, 1) 7%,
      rgba(28, 79, 156, 1) 14%,
      rgba(28, 79, 156, 1) 21%,
      rgba(28, 79, 156, 1) 28%,
      rgba(28, 79, 156, 1) 35%,
      rgba(28, 79, 156, 1) 42%,
      rgba(28, 79, 156, 1) 49%,
      rgba(28, 79, 156, 1) 56%,
      rgba(28, 79, 156, 1) 63%,
      rgba(28, 79, 156, 1) 70%,
      rgba(28, 79, 156, 1) 77%,
      rgba(28, 79, 156, 1) 84%,
      rgba(28, 79, 156, 1) 91%,
      rgba(28, 79, 156, 1) 97%,
      rgba(28, 79, 156, 1) 100%);

  background-clip: text;
  -webkit-background-clip: text;
  background-size: 500%;
  animation: color 10s linear infinite;
}

.menuBg {
  background: #fff;
  border: solid 1px #ccc;
  border-radius: 30px;
  font-size: 14px;
  display: inline-block;
}

.navbar-expand-lg .navbar-nav {

  border: solid 1px #ccc;
  border-radius: 30px;
  padding: 0 10px;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  /* border-top: .3em solid; */
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
  background-image: url(../images/chevron-down.svg);
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #F88701;
  background-color: #FFF7ED;
  border: solid 1px #F88701;
  border-radius: 5px;

}

.dropdown-item.active,
.dropdown-item:active {
  font-size: 14px;
  background: #FFF7ED;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #f88701;
  background: #FFF7ED;
  border-radius:0px;
}

.dropdown-item {
  font-size: 14px;
  border: solid 1px #fff;
}


/* Base Navbar Styles */
.navbar {
  padding: 2px 0;
  z-index: 999;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 13px 18px;
  position: relative;
  font-size: 14px;
}

/* Default Down Arrow */
.navbar-nav .dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 12px;
  background: url("../images/chevron-down.png") no-repeat center;
  background-size: contain;
  margin-left: 4px;
  position: relative;
  top: 5px;
  transition: all 0.3s ease;
}

/* When dropdown is open - show Up Arrow */
.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
  background: url("../images/chevron-up.png") no-repeat center;
  background-size: contain;
}

/* Dropdown Style */
.dropdown-menu {
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding:10px;
  border-radius: 10px;
  min-width: 330px;
}

/* Auto alignment helpers */
.dropdown-menu-end {
  right: 0 !important;
  left: auto !important;
}

.dropdown-menu-start {
  left: 0 !important;
  right: auto !important;
}

/* Hover items */
.dropdown-item {
  padding: 6px 6px;
  border-radius: 6px;
  border: solid 1px #fff;
  transition: background 0.2s;
}

.dropdown-item:hover {
  color: #F88701;
  background-color: #FFF7ED;
  border: solid 1px #F88701;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: none;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}

/* End Top Menu */
/* Banner / Carousel styling */
.hero-carousel .carousel-item {
  height: calc(70vh - 80px);
  /* adjust height */
  min-height: 430px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.hero-carousel .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;

}

.carousel-inner {
  border-radius: 8px;
}

.hero-carousel .carousel-caption {
  position: static;
  color: #fff;
  max-width: 850px;
}

.hero-carousel h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
}

.hero-carousel p.lead {
  font-size: clamp(.95rem, 1.6vw, 1.2rem);
  opacity: 0.95;
}

.btn-cta {
  border-radius: 40px;
  padding: .6rem 1.25rem;
  font-weight: 600;
}

/* Indicators styling */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
}

.carousel-indicators .active {
  background-color: #fff;
  transform: scale(1.2);
}

/* ===== ANIMATIONS ===== */
/* Fade in for text */
.animate__fadeInUp {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Zoom in for background */
.carousel-item.active .zoom-bg {
  animation: zoomImage 8s ease-in-out forwards;
}

@keyframes zoomImage {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

@media (max-width: 576px) {
  .hero-carousel .carousel-item {
    height: 45vh;
  }
}

.hero-banner {
  display: inline-block;
  margin-top: 10px;
  width: 100%;
}

.login-div {
  background: #fffbea;
  height: calc(50vh - 80px);
  min-height: 200px;
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 10px 10px;
  border-radius: 8px;
  border: solid 1px #fbdc5d;

}

/* birthday-banner */
.birthday-banner {

  display: inline-block;
  width: 100%;
  display: flex;  
}
.birthday-banner ul {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    overflow: auto;
  }

  .birthday-banner ul li {
    list-style: none;
  }

.bd-bg {
  background: rgb(252 203 6);
  background-repeat: no-repeat;
  display: flex;
  min-width: 360px;
  height: 108px;
  border-radius: 8px;
  margin: 5px 4px 0px 4px;
  border: solid 1px #fbdc5d;
}

.bd-img {
  display: inline-block;
  /* width: 40%; */
  overflow: hidden;
  border-radius: 8px 0px 0px 8px;
  padding-right: 8px;

  
}
.bd-img img {
    background-size: cover;
    height: 100%;
  }

.bd-text {
  display: inline-block;
  width: 50%;
  color: #000;
}

.bd-text h2 {
  font-size: 16px;
}

.bd-text h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.bd-text p {
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}

.bd-text h2 {
  font-size: clamp(1rem, 7vw, 1rem);
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0;
  z-index: 2;
  text-shadow: 0 6px 18px rgba(0, 0, 0, .6), 0 0 18px rgba(255, 255, 255, 0.03);
  transform: translateY(0);
  animation: floatText 3s ease-in-out infinite;
}

@keyframes floatText {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

/* confetti pieces */
.confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1
}

.confetti i {
  position: absolute;
  top: -10vh;
  width: 10px;
  height: 14px;
  background: var(--accent1);
  transform-origin: center;
  opacity: 0.95;
  border-radius: 2px;
  animation-name: fall, spin;
  animation-duration: 4s, 1.4s;
  animation-timing-function: linear, linear;
  animation-iteration-count: infinite, infinite;
}

/* generate many pieces with staggered positions and colors */
.confetti i:nth-child(1) {
  left: 5%;
  animation-delay: 0s;
  background: var(--accent1);
  animation-duration: 3.8s
}

.confetti i:nth-child(2) {
  left: 12%;
  animation-delay: .2s;
  background: var(--accent3);
  animation-duration: 4.4s
}

.confetti i:nth-child(3) {
  left: 20%;
  animation-delay: .4s;
  background: var(--accent2)
}

.confetti i:nth-child(4) {
  left: 28%;
  animation-delay: .6s;
  background: var(--accent4)
}

.confetti i:nth-child(5) {
  left: 36%;
  animation-delay: .8s;
  background: var(--accent5)
}

.confetti i:nth-child(6) {
  left: 44%;
  animation-delay: 1s;
  background: var(--accent1)
}

.confetti i:nth-child(7) {
  left: 52%;
  animation-delay: 1.2s;
  background: var(--accent2)
}

.confetti i:nth-child(8) {
  left: 60%;
  animation-delay: 1.4s;
  background: var(--accent3)
}

.confetti i:nth-child(9) {
  left: 68%;
  animation-delay: 1.6s;
  background: var(--accent4)
}

.confetti i:nth-child(10) {
  left: 76%;
  animation-delay: 1.8s;
  background: var(--accent5)
}

.confetti i:nth-child(11) {
  left: 84%;
  animation-delay: 2s;
  background: var(--accent1)
}

.confetti i:nth-child(12) {
  left: 92%;
  animation-delay: 2.2s;
  background: var(--accent2)
}

/* fall animation moves piece from top to bottom and sways horizontally */
@keyframes fall {
  0% {
    transform: translateY(-10vh) rotate(0) translateX(0)
  }

  50% {
    transform: translateY(45vh) rotate(180deg) translateX(15vw)
  }

  100% {
    transform: translateY(110vh) rotate(360deg) translateX(-5vw)
  }
}

/* spin */
@keyframes spin {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {

  .confetti i,
  h1 {
    animation: none
  }
}

/* End birthday-banner */
.upcoming-event {
 
  display: inline-block;
  margin: 25px 0;
  position: relative;
  border-radius: 10px;
}

.upcoming-event img {
  border-radius: 10px;
}

.event-div {
  position: absolute;
  color: #ffffff;
  text-align: center;
  left: 0;
  right: 0;
}

.card-view {
  min-width: 175px;
  min-height: 226px;
  background: rgb(252 203 6);
  text-decoration: none;
}

.card-view h6 {
  font-size: 14px;
  font-weight: 700;
}

.card-view p {
  font-size: 12px;
  font-weight: 700;
  color: #1c4f9c;
}

.card-view-img {
  max-height: 176px;
  border-radius: 5px 5px 0px 0px;
  background: #fff;
  width: 100%;
      padding-top: 6px;

}

.slider {
  width: 100%;
  max-width: 1100px;
  background: #fff;
  /* border-radius:14px; */
  box-shadow: 0 8px 30px rgba(12, 35, 60, 0.06);
  padding: 18px;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  margin: 10px;
}

.track {
  display: flex;
  gap: var(--gap);
  align-items: center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.item {
  flex: 0 0 auto;
  width: var(--tile-size);
  height: var(--tile-size);
  border-radius: 2%;
  background: linear-gradient(180deg, #fff, #f2f7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(12, 35, 60, 0.06);
  border: 1px solid rgba(12, 35, 60, 0.04);
  overflow: hidden;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-drag: none;
  -webkit-user-drag: none;
}

.birthday-card {
  display: inline-block;
  width: 400px;
  height: 160px;
  text-align: left;
  background: #f39c12;
  border-radius: 10px;  
}
.birthday-card h3 {
    font-size: 12px;
  }

.poll {
  background: #fffbea;
  height: calc(20vh - 80px);
  min-height: 175px;
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 10px 10px;
  border-radius: 8px;
  margin: 10px 0px;
  border: solid 1px #fbdc5d;
  font-size: 13px;
}

.logo-slider {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  will-change: transform;
}

.logo-item {
  flex: 0 0 auto;
  user-select: none;
  pointer-events: none;
}

.logo-item img {
  max-height: 120px;
  width: auto;
  display: block;
  filter: grayscale(0);
  transition: filter 0.3s;
}

.logo-item img:hover {
  filter: grayscale(0%);
}
/* Fade edges for better look */
.fade-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8%;
  pointer-events: none;
  z-index: 5;
}

.fade-left {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.fade-right {
  right: 0;
  background: linear-gradient(-90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
/* // logo slider */
.logo-slider {
  overflow: hidden;
  position: relative;
  background: #fff;
}
.logo-track {
  display: flex;
  gap: 10px;
  transition: none;
  /* we animate with rAF */
  cursor: grab;
  user-select: none;
  will-change: transform;
}
.logo-card {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
}
.logo-card1 .logo-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  pointer-events: none;
}
/* Arrow Buttons */
.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.arrow-left {
  left: 12px;
}

.arrow-right {
  right: 12px;
}

.arrow-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.logo-card1 {
  flex: 0 0 auto;
  width: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-card1::after {
  content: '';
  background: rgb(28, 79, 156, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  color: #fff;
}

.community-text {
  position: absolute;
  color: #fff;
  font-size: 20px;
  left: 0;
  right: 0;
  z-index: 2s;
}
.logo-card1 {
  position: relative;
}
.slider-section {
  /* margin: 50px auto; */
  max-width:auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  /* padding: 20px 0; */
}
.slider-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #1c4f9c;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
}
.logo-slider {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.logo-track {
  display: flex;
  gap: 10px;
  transition: none;
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.logo-card {
  flex: 0 0 auto;
  width: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-card img {
  max-width: 100%;
  max-height: 190px;
  object-fit: contain;
  pointer-events: none;
}

/* Arrow buttons */
.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

.arrow-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* //Global Community Builders */
.inner-banner{
  display: inline-block;
  width: 100%;
  background: #f39c12;
  min-height:60px;
  color: #000;
  text-align: center;
  line-height: 50px;
}
.profile{
  background: #fff;
  /* margin: 10px; */
  border-radius:0px 0px 10px 10px;
  padding:10px 20px;
  border: solid 1px #dfecff;
  /* color: #1c4f9c; */
}
.bg-footer{
  background-color: #1c4f9c;
}
.profile-banner{
  background: #1c4f9c;
    border-radius: 18px;
    padding:10px 10px 0px 10px;
    margin-top: 20px;
    color: #fff;
}
.award {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}
/* List */
.list-ic a {
      color: #1c4f9c;
    text-decoration: none;
    padding-left: 10px;
    font-weight:500;
}
.list-ic li {
  position: relative;
}
.list-ic li span {
  display: inline-block;
  font-weight: 800;
  width: 2em;
  height: 2em;
  text-align: center;
  line-height: 2em;
  border-radius: 1em;
  background: #1c4f9c;
  color: white;
  position: relative;
  z-index: 1;
}
.list-ic li::before {
  content: '';
  position: absolute;
  background: #1c4f9c;
  z-index: 0;
}
/* .list-ic.horizontal li {
  display: inline-block;
}
.list-ic.horizontal li span {
  margin: 0 1em;
}
.list-ic.horizontal li::before {
  top: 0.9em;
  left: -25px;
  width: 4em;
  height: 0.2em;
} */
.list-ic.vertical {
  padding: 0;
  margin: 0;
}
.list-ic.vertical li {
  list-style-type: none;
  text-align: left;
}
.list-ic.vertical li span {
  margin: 0.5em 0;
}
.list-ic.vertical li::before {
  top: -35px;
  left: 15px;
  width: 0.2em;
  height:100%;
}
.list-ic li:first-child::before {
  display: none;
}
.list-ic .active {
  background: dodgerblue;
}
.list-ic .active ~ li {
  background: lightblue;
}
.list-ic .active ~ li::before {
  background: lightblue;
}
/* End List */

.list-unstyled{
  display: inline-block;
}
.list-unstyled li{
  line-height: 30px;
}

/* Events */
.event-hero {
      background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d') center/cover no-repeat;
      height: 320px;
      position: relative;
      color: #fff;
    }

    .event-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.55);
    }

    .event-hero-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      align-items: center;
    }

    .info-box {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .info-box i {
      color: #0d6efd;
      margin-right: 8px;
    }

    .speaker img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
    }

    .register-box {
      background: linear-gradient(135deg, #0d6efd, #6610f2);
      color: #fff;
      border-radius: 15px;
      padding: 25px;
    }
/* End Events */

/* Birthday */
.birthday {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #005daa, #f7b500);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
/* Card animation */
    .card-birthday {
      background: #fff;
      border-radius: 25px;
      padding:20px;
      max-width:850px;
      width: 100%;
      text-align: center;
      box-shadow: 0 15px 40px rgba(0,0,0,0.2);
      position: relative;
      animation: fadeIn 1.2s ease;
      margin: 0 auto;
    }
    .card-birthday h1{
      color: #1c4f9c;
    }
    .card-birthday h2{
      color: #aa3025;
    }

    @keyframes fadeIn {
      from {opacity: 0; transform: scale(0.9);}
      to {opacity: 1; transform: scale(1);}
    }

    .lions-logo {
      width: 110px;
    }

    /* Photo pulse */
    .photo-wrapper {
      margin: 20px auto;
      width:490px;
      height:490px;
      border-radius: 50%;
      border: 6px solid #005daa;
      overflow: hidden;
      animation: pulse 3s infinite;
    }
    .m-photo-wrapper {
      margin: 20px auto;
      width:590px;
      height:390px;
      /* border-radius: 50%; */
      border: 6px solid #005daa;
      overflow: hidden;
      animation: pulse 3s infinite;
    }
     .m-photo-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: fill;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(0,93,170,0.5); }
      70% { box-shadow: 0 0 0 15px rgba(0,93,170,0); }
      100% { box-shadow: 0 0 0 0 rgba(0,93,170,0); }
    }

    .photo-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: fill;
    }

    /* h1 { color: #005daa; font-weight: 800; }
    h2 { color: #f7b500; } */

    .message {
      color: #555;
      font-size: 17px;
      margin-top: 15px;
    }

    /* .footer {
      margin-top: 25px;
      font-size: 14px;
      color: #777;
    } */

    /* Floating balloons */
    .balloon {
      position: absolute;
      bottom: -100px;
      font-size: 40px;
      animation: floatUp 8s linear infinite;
      opacity: 0.6;
    }

    .b1 { left: 10%; animation-delay: 0s; }
    .b2 { left: 50%; animation-delay: 2s; }
    .b3 { left: 80%; animation-delay: 4s; }

    @keyframes floatUp {
      from { transform: translateY(0); }
      to { transform: translateY(-110vh); }
    }

    /* Confetti dots */
    .confetti {
      position: absolute;
      width: 6px;
      height: 6px;
      background: #fff;
      top: -10px;
      animation: confettiFall 5s linear infinite;
      opacity: 0.7;
    }

    .c1 { left: 20%; animation-delay: 0s; }
    .c2 { left: 40%; animation-delay: 1s; }
    .c3 { left: 60%; animation-delay: 2s; }
    .c4 { left: 80%; animation-delay: 3s; }

    @keyframes confettiFall {
      to { transform: translateY(110vh) rotate(360deg); }
    }
/* End Birthday */

/* Gallery Grid */
/* .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    padding: 20px;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
} */

/* Lightbox */
/* .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox:target {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
} */
.gallery-box{
  display: inline-block;
    height: 180px;
    width: 100%;
}
.gallery-box img{
  width: 100%;
  height: 100%;
   object-fit: cover;
}
.masonry {
  column-count: 4;
  column-gap: 15px;
  padding: 15px;
}

.masonry img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .3s ease;
}

.masonry img:hover {
  transform: scale(1.05);
}

/* Modal arrows */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
}

.left { left: 10px; }
.right { right: 10px; }

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
}

.caption {
  color: #fff;
  margin-top: 15px;
  font-size: 18px;
}

.counter {
  position: fixed;
  top: 15px;
  left: 20px;
  color: #fff;
  font-size: 16px;
}

.nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 36px;
  padding: 10px 16px;
  z-index: 10;
}
.left { left: 20px; }
.right { right: 20px; }

/* Responsive */
@media(max-width: 1024px){ .masonry{column-count:3;} }
@media(max-width: 768px){ .masonry{column-count:2;} }
@media(max-width: 480px){ .masonry{column-count:1;} }

/* Navigation */
.nav {
    position: absolute;
    top: 50%;
    font-size: 50px;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    transform: translateY(-50%);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Close */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: #fff;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 600px) {
    .nav {
        font-size: 35px;
    }
}
/* Responsive */
@media (max-width: 992px) {
  .logo-item img {
    max-height: 52px;
  }
   .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .dropdown:hover .dropdown-toggle::after {
    background: url("../images/chevron-up.png") no-repeat center;
    background-size: contain;
  }
}

@media (max-width:900px) {
  :root {
    --tile-size: 80px;
    --gap: 20px;
    --speed-px-per-sec: 55;
  }
}

@media (max-width: 768px) {
  .topmenu {
    position: relative;
    bottom: 0;
  }
  .logo-card {
    width:auto;
  }
    .logo-item img {
    max-height: 45px;
  }

  .logo-track {
    gap: 1.25rem;
  }
}

@media (max-width:767px) {
  .login-div {
    height: auto;
  }

  .dropdown-menu {
    min-width: auto;
  }

  .navbar-expand-lg .navbar-nav {
    border: none;
    border-radius: 0px;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    width: 100%;
  }

  .navbar-nav .dropdown-menu li {
    display: inline-block;
    min-width: 100%;
  }

  /* .navbar-collapse {
    padding: 20px;
  } */

  .lion-int {   
     font-family: "Mona Sans", sans-serif;
  }

  .lion-int h2 {
    font-size: 22px;
    font-family: "Mona Sans", sans-serif;
  }

  .lion-int p {
    font-size: 15px;
     font-family: "Mona Sans", sans-serif;
     font-weight: 600;
  }
}
/* optional small responsiveness */
@media (max-width:480px) {
  :root {
    --tile-size: 60px;
    --gap: 16px;
    --speed-px-per-sec: 45;
  }
  .arrow-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .logo-item img {
    max-height: 36px;
  }

  .logo-track {
    gap: 1rem;
  }
.logo2 img{ width: 60px;}
    .lion-int h2 {
        font-size: 19px;
        font-family: "Mona Sans", sans-serif;
    }
        .lion-int p {
        font-size: 13px;
        font-family: "Mona Sans", sans-serif;
        font-weight: 600;
    }
}


/* Header */
.gallery-header {
    padding: 60px 0;
    background: #f8f9fa;
}

.gallery-header h1 {
    font-weight: 700;
}

/* Gallery */
.gallery-section {
    padding: 60px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.view-btn {
    padding: 10px 25px;
    font-weight: 600;
}

.gallery-card{
  display: inline-block;
  padding: 5px;
  border: solid 1px #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
  position: relative;
  text-decoration: none;
}
.gallery-card p{
      position: relative;
    bottom: 0px;
    margin: 0;
    color: #1c4f9c;
    background: rgb(255 196 0 / 60%);
    width: 100%;
    left: 0px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
}
.add{
  position: relative;
  
}
/* .side-img {
    position: sticky;
    right: 15px;
    top:90%;
    transform: translateY(-50%);
    width:240px;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
} */
/* Fade effect */

/* contact us */

/* HERO */
.contact-hero {
  background: linear-gradient(to right, #4f46e5, #6366f1);
  padding: 80px 0;
}

/* INFO CARD */
.contact-info {
  background:#fff;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.info-item {
  display:flex;
  align-items:center;
  margin:15px 0;
}

.info-item i {
  font-size:20px;
  color:#1c4f9c;
  margin-right:15px;
}

/* SOCIAL */
.social a {
  width:40px;
  height:40px;
  background:#1c4f9c;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  margin-right:10px;
  text-decoration:none;
}  

/* FORM */
.contact-form {
  background:#fff;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border-radius:8px;
  padding:12px;
}
/* End contact US */
.pgd-section{
background:#f7f9fc;
}

.section-title{
font-size:36px;
font-weight:700;
color:#1e4f9c;
}

.pgd-card{
background:#fff;
padding:30px 20px;
border-radius:16px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
height:100%;
}

.pgd-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.pgd-img img{
width:130px;
height:130px;
border-radius:50%;
object-fit:cover;
margin-bottom:15px;
border:4px solid #f4b400;
}

.pgd-card h4{
font-size:20px;
font-weight:600;
margin-bottom:5px;
}

.year{
color:#1e4f9c;
font-weight:500;
margin-bottom:15px;
}

.pgd-info p{
font-size:14px;
margin:2px 0;
color:#555;
}

.img-size{
      padding: 5px;
    max-height:110px;
}