@font-face {
  font-family: "Plain Light";
  src: url(./font/plain-regular-webfont.ttf);
}

@font-face {
  font-family: "Plain Light";
  src: url(./font/plain-light-webfont.ttf);
}

html,
body {
  overflow-x: hidden;
  /* no need for !important */
  width: 100%;
  box-sizing: border-box;
  background-color: rgb(14, 14, 14);
}

*,
*::before,
*::after {
  box-sizing: inherit;
  /* keep consistent sizing */
  font-family: 'Plain Light';
  margin: 0;
  padding: 0;
}

/* optional safety for images and text */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

p,
h1,
h2,
h3 {
  word-break: break-word;
}

/* Navbar Styles */
.navbar {
  overflow: hidden;
  position: fixed;
  /* Sticky at top */
  top: 0;
  left: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#141414), color-stop(#2a2a2a), to(#141414));
  background: -o-linear-gradient(left, #141414, #2a2a2a, #141414);
  background: linear-gradient(to right, #141414, #2a2a2a, #141414);
  color: #fff;
  z-index: 1000;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  /* Smooth slide animation */
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Subtle shadow */
}

.navbar.hidden {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  /* Hide by sliding up */
}

.nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 90vw;
  margin: 0 auto;
  padding: 1vh 1vw;
  /* Vertical padding in vh, horizontal in vw */
  height: 10vh;
  /* Fixed height in vh for consistency */
}

.nav-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5vw;
}

.nav-logo img {
  height: 7vh;
  width: auto;
}

.nav-logo h1 {
  font-size: 2.2vw;
  /* Responsive font size */
  text-transform: uppercase;
  font-weight: 900;
  color: #ff8000;
  margin-top: 2vw;

}

.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  /* gap: 0.5vw;  */
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.1vw;
  padding: 1vh 1vw;
  /* Padding in vh/vw */
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

/* Hover and Active link effects */
.nav-menu li a:hover,
.nav-menu li a.active {
  color: #ff8000;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

/* Tap/active effect (mobile) */
.nav-menu li a:active {
  background-color: rgba(255, 128, 0, 0.15);
  /* Soft orange background */
  color: #ff8000;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  -o-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Mobile Toggle Button (Hamburger Menu) */
.nav-toggle {
  display: none;
  /* Hidden on desktop */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 4vw;
  height: 0.4vh;
  background-color: #fff;
  margin: 0.3vh 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/* Hamburger bars turn orange when active */
.nav-toggle.active .bar {
  background-color: #ff8000;
}

/* Responsive Design */
@media (max-width: 768px) {

  /* Equivalent to ~768px on most devices */
  .nav-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 1vh 2vw 1vh 0.5vw;
  }

  .nav-logo img {
    height: 6vh;
    margin-right: .5vw;
  }

  .nav-logo h1 {
    font-size: 4vw;
    /* Responsive font size */
    text-transform: uppercase;
    font-weight: 900;
    color: #ff8000;

  }

  .nav-menu {
    position: fixed;
    left: -100vw;
    /* Hidden off-screen initially */
    top: 9.5vh;
    /* Below navbar height */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: -webkit-gradient(linear, left top, right top, from(#141414), color-stop(#2a2a2a), to(#141414));
    background: -o-linear-gradient(left, #141414, #2a2a2a, #141414);
    background: linear-gradient(to right, #141414, #2a2a2a, #141414);
    width: 100vw;
    height: calc(100vh - 9.5vh);
    /* Full height minus navbar */
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2vh;
    padding-top: 5vh;
    -webkit-transition: left 0.3s ease;
    -o-transition: left 0.3s ease;
    transition: left 0.3s ease;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
    /* Slide in on mobile */
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu li a {
    font-size: 6vw;
    /* Larger on mobile */
    padding: 2vh 0;
    width: 100vw;
    text-align: center;
  }

  .nav-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .bar {
    width: 6vw;
    /* Larger on mobile */
  }
}

/* Additional: Active toggle animation for mobile */
.nav-toggle.active .bar:nth-child(1) {
  -webkit-transform: rotate(-45deg) translate(-0.5vw, 0.5vh);
  -ms-transform: rotate(-45deg) translate(-0.5vw, 0.5vh);
  transform: rotate(-45deg) translate(-0.5vw, 0.5vh);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  -webkit-transform: rotate(45deg) translate(-0.5vw, -0.5vh);
  -ms-transform: rotate(45deg) translate(-0.5vw, -0.5vh);
  transform: rotate(45deg) translate(-0.5vw, -0.5vh);
}

/* HOME CSS START*/

#page1 {
  width: 100vw;
  background-color: rgb(14, 14, 14);
  position: relative;
  overflow: hidden;
  min-height: 100dvh;
  padding-top: 10vh;

}


/* Slideshow Container */
.slideshow {
  position: relative;
}

/* Slide Container */
.slide {
  position: absolute;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  /* transition: opacity 1.5s  ease-in-out; */
}


.slide.active {
  opacity: 1;
}

/* Slide Image */
.slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 0 80%;
  object-position: 0 120%;
}


/* 🖤 Dark Overlay Layer (for bright text visibility) */
.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  -webkit-backdrop-filter: blur(0.3px);
  backdrop-filter: blur(0.3px);
}

/* Text & Button Overlay */
.overlay {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 80%;
  position: absolute;
  left: 10%;
  bottom: 20%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 999;
  /* background-color: red; */
  gap: 1vw;
}

.overlay h4 {
  font-size: 4vw;
  font-weight: bolder;
  color: #fff;
  text-transform: uppercase;

}

.overlay h5 {
  font-size: 3vw;
  font-weight: bold;
  text-transform: uppercase;
}

.gradient-text1 {
  background: -webkit-gradient(linear, left top, right top, from(#2e7d32), color-stop(#39da3c), to(#215223));
  background: -o-linear-gradient(left, #2e7d32, #39da3c, #215223);
  background: linear-gradient(90deg, #2e7d32, #39da3c, #215223);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.overlay p {
  width: 56%;
  margin-left: 22%;
  font-size: 1.3vw;
  color: #ffffffc1;
}

.overlay a {
  text-decoration: none;
  color: #fff;
  border: none;
  padding: 1vw 2vw;
  font-size: 1.2vw;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 45%;
  margin-top: -1.5vw;
}

/* .btn-animated {
  background: -webkit-gradient(linear, left top, right top, from(#2e7d32), color-stop(#1bdd1e), to(#215223));
  background: -o-linear-gradient(left, #2e7d32, #1bdd1e, #215223);
  background: linear-gradient(90deg, #2e7d32, #1bdd1e, #215223);
  background-size: 300%;
  color: white;
  border: none;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
} */

.btn-animated:hover {
  -webkit-animation: btnGradientMove 3s linear infinite;
  animation: btnGradientMove 3s linear infinite;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: 0 0 20px rgba(76, 175, 80, 0.8);
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.8);
}

@-webkit-keyframes btnGradientMove {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 100%;
  }
}

@keyframes btnGradientMove {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 100%;
  }
}

@media (max-width: 768px) {

  /* Page container */
  #page1 {
    min-height: 78dvh;
    background-color: #141414;
  }

  .dark-overlay {
    height: 100%;
  }

  /* Slides */
  .slide {
    height: 85dvh;
    background-color: #141414;
  }

  .slide img {
    -o-object-position: center 80%;
    object-position: center 0%;
    margin-top: -15vh;
  }

  /* Overlay container */
  .overlay {
    width: 90%;
    left: 5%;
    bottom: 35%;
    /* gap: 2vh; */
  }

  .overlay h4 {
    font-size: 8vw;
    /* responsive heading */
  }

  .overlay h5 {
    font-size: 6vw;
  }

  #para-txt {
    font-size: 3vw;
    width: 90%;
    margin-left: 5vw;
    line-height: 3.5vw;
    margin-bottom: -0.8vw;
  }

  /* Join Now Button */
  .overlay a {
    font-size: 4vw;
    font-weight: 600;
    padding: 3vw 6vw;
    margin-left: 0;
    margin-top: 1.5vh;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  /* Animated button adjustments */
  .btn-animated {
    font-size: 4vw;
    padding: 3vw 6vw;
  }
}

#page2 {
  min-height: auto;
  width: 100vw;
  padding: 10vh 12vw;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  margin-top: 5vh;
}

#page2 h1 {
  font-size: 4vw;
  color: #fff;
  position: relative;
  margin-bottom: 4vh;
  font-weight: 800;
}

#myVideo {
  max-width: 100%;
  height: fit-content;
  display: block;
  margin: 0 auto;
  margin-top: 2vh;
  border-radius: 2px;
  /* optional styling */
}


/* ---------------- RESPONSIVENESS ---------------- */
@media (max-width: 768px) {
  #page2 {
    min-height: auto;
    padding: 2vh 6vw;
    margin-bottom: 0;
  }

  #myVideo {
    width: 95%;
    margin: 2vh auto;
    /* smaller margin on top and bottom */
    border-radius: 3px;
    /* smaller corners for mobile */
    /* margin-bottom: -4vh; */
  }

  #page2 h1 {
    font-size: 10vw;
    line-height: 10vw;
    margin-bottom: 2vh;
    margin-top: 0vw;
    padding: 0 2vw;
  }
}

#page3 {
  min-height: auto;
  width: 100vw;
  padding: 10vh 12vw;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2vw;
  margin-top: 0;
}

#up {
  /* height: 45%; */
  width: 100%;
  /* background-color: red; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* justify-content: center; */

}

#up h1 {
  font-size: 4vw;
  margin-top: 1.2vw;
  margin-bottom: 1vw;
  color: #fff;
  font-weight: 800;
}

#up p {
  font-size: 1.3vw;
  text-align: center;
  font-weight: 400;
  color: #ffffffc1;
  line-height: 1.8vw;
}

#down {
  font-family: Arial, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* margin-top: -1vw; */
  gap: 6vw;
}

.vision-card {
  background: #1A1A1A;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 8px rgba(255, 255, 255, 0.142);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.142);
  padding: 3vw;
  width: 35vw;
  min-height: 50vh;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0.5px solid #ffffff3b;
}

.vision-card:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: 0 8px 16px #ffffff48;
  box-shadow: 0 8px 16px #ffffff48;
}

.vision-svg {
  width: 10vw;
  height: 10vw;
  margin: 0 auto 16px;
  display: block;
  -webkit-transition: stroke-width 0.3s ease, stroke 0.3s ease;
  -o-transition: stroke-width 0.3s ease, stroke 0.3s ease;
  transition: stroke-width 0.3s ease, stroke 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  /* Prevent SVG from shrinking too much */
  margin-top: -2vw;
}

.vision-card:hover .vision-svg {
  stroke-width: 3;
  stroke: #4caf50;
  /* Green stroke on hover for effect */
}

.vision-svg path {
  fill: none;
  stroke: #ccc;
  /* Default gray stroke */
  stroke-width: 2;
  -webkit-transition: stroke-width 0.3s ease, stroke 0.3s ease;
  -o-transition: stroke-width 0.3s ease, stroke 0.3s ease;
  transition: stroke-width 0.3s ease, stroke 0.3s ease;
}

.vision-svg circle {
  -webkit-transition: fill 0.3s ease;
  -o-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
  /* Smooth transition for iris if needed */
}

.vision-title {
  font-size: 3vw;
  font-weight: 600;
  color: #fff;
  margin-top: -2vw;
  margin-bottom: 1.5vw;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.vision-text {
  font-size: 1.2vw;
  color: #ffffffc1;
  line-height: 1.5;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  /* Allow text to expand within the card */
  text-align: center;
}

.mission-svg {
  width: 5vw;
  /* Responsive SVG size using viewport width */
  height: 5vw;
  /* Square aspect ratio for the icon */
  margin: 0 auto 16px;
  display: block;
  -webkit-transition: stroke-width 0.3s ease, stroke 0.3s ease;
  -o-transition: stroke-width 0.3s ease, stroke 0.3s ease;
  transition: stroke-width 0.3s ease, stroke 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  /* Prevent SVG from shrinking too much */
  margin-bottom: 3vw;
  margin-top: 1vw;
}

.mission-card:hover .mission-svg {
  stroke-width: 3;
  stroke: #4caf50;
  /* Green stroke on hover for effect */
}

.mission-svg circle {
  fill: none;
  stroke: #ccc;
  /* Default gray stroke */
  stroke-width: 2;
  -webkit-transition: stroke-width 0.3s ease, stroke 0.3s ease;
  -o-transition: stroke-width 0.3s ease, stroke 0.3s ease;
  transition: stroke-width 0.3s ease, stroke 0.3s ease;
}

.mission-svg .center-circle {
  fill: #4caf50;
  /* Green fill for the bullseye center */
  stroke: #4caf50;
  stroke-width: 2;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {

  #page3 {
    padding: 2vh 6vw;
    gap: 8vw;
    margin-top: 0vh;
  }

  #up h1 {
    font-size: 10vw;
    text-align: center;
    margin-top: 0;
  }

  #up p {
    font-size: 3.8vw;
    line-height: 5vw;
    width: 100%;
    margin-top: 1.5vh;
  }

  #down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8vh;
  }

  .vision-card {
    width: 85vw;
    min-height: auto;
    padding: 8vw 5vw;
  }

  .vision-svg {
    width: 25vw;
    height: 25vw;
    margin-bottom: 0vw;
  }

  .mission-svg {
    width: 15vw;
    height: 15vw;
    margin-bottom: 4vw;
  }

  .vision-title {
    font-size: 6vw;
    margin-bottom: 3vw;
  }

  .vision-text {
    font-size: 3.8vw;
    line-height: 6vw;
  }
}


#page4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  padding: 10vh 12vw;
  gap: 2vw;
  margin-top: -12vh;
}

/* Heading */
#page4 h1 {
  font-size: 4vw;
  margin-top: 1.2vw;
  color: #fff;
  /* margin-bottom: 3vh; */
  font-weight: bold;

}

/* Main card container */
.reach-card {
  background-color: #1A1A1A;
  border-radius: 15px;
  padding: 4vw 3vw;
  -webkit-box-shadow: 0 4px 20px rgba(255, 255, 255, 0.142);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.142);
  width: 76vw;
  height: auto;
  text-align: center;
  border: 0.5px solid #ffffff3b;
}

/* Stats container - flex grid */
.stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 4vw;
}

/* Individual stat item */
.stat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15vw;
  height: 20vh;
  padding: 1vh 1vw;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  cursor: pointer;
}

.stat-item:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

/* Icon styling */
.icon {
  width: 4.5vw;
  height: 4.5vw;
  margin-bottom: 1vh;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  -o-transition: filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

/* Counter styling */
.counter {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffffc1;
  margin-bottom: 0.5vh;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  min-height: 2.5rem;
  /* Ensures consistent spacing during animation */
}

/* Label styling */
.stat-item p {
  font-size: 1.3vw;
  text-align: center;
  font-weight: 550;
  color: #ffffffc1;
  margin: 0;
}

/* Hover effects */
.stat-item:hover .counter {
  color: #ff9933;
  /* Blue color for numbers */
}

.stat-item:hover p {
  color: #ffffff;
  /* Blue color for numbers */
}

@media (max-width: 768px) {
  #page4 {
    padding: 2vh 10vw;
    gap: 3vh;
  }

  #page4 h1 {
    font-size: 10vw;
    margin-top: 12vh;
    text-align: center;
  }

  .reach-card {
    width: 82vw;
    padding: 12vw 2vw;
  }

  .stats {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5vh;
  }

  .stat-item {
    width: 55vw;
    height: auto;
    padding: 6vw 4vw;
    border-radius: 15px;
    background-color: #141414;
    -webkit-box-shadow: 0 0 12px #ff99332c;
    box-shadow: 0 0 12px #ff99332c;
  }

  .icon {
    width: 14vw;
    height: 14vw;
    margin-bottom: 2vh;
  }

  .counter {
    font-size: 8vw;
    min-height: auto;
  }

  .stat-item p {
    font-size: 4.5vw;
    margin-top: 1vh;
  }
}


#page5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  padding: 10vh 12vw;
  gap: 2vw;
  margin-top: -14vh;
}

/* Heading */
#page5 h1 {
  font-size: 4vw;
  margin-top: 1.2vw;
  color: #fff;
  /* margin-bottom: 3vh; */
  font-weight: bold;

}

/* Main card container */
.reach-card5 {
  background-color: #1A1A1A;
  border-radius: 15px;
  padding: 4vw 3vw;
  -webkit-box-shadow: 0 4px 20px rgba(255, 255, 255, 0.142);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.142);
  width: 76vw;
  height: auto;
  text-align: center;
  border: 0.5px solid #ffffff3b;
}



/* Stats container - flex grid */
.stats5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  /* gap: 4vw; */
}

/* Individual stat item */
.stat-item5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* width: 10vw; */
  height: 15vh;
  padding: 1vh 1vw;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  cursor: pointer;
}

.stat-item5 h4 {
  font-size: 1vw;
  color: #ffffffc1;
  font-weight: 600;
}

.stat-item5 a {
  text-decoration: none;
}

.stat-item5 :hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

/* Icon styling */
.icon5 {
  width: 7vw;
  height: 7vw;
  margin-bottom: 1vh;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  -o-transition: filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

@media (max-width: 768px) {
  #page5 {
    min-height: auto;
    padding: 6vh 10vw;
    gap: 6vh;
    margin-top: 0;
  }

  #page5 h1 {
    font-size: 10vw;
    text-align: center;
    margin-top: 2vh;
  }

  .reach-card5 {
    width: 82vw;
    padding: 12vw 2vw;
  }

  .stats5 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6vh;
  }

  .stat-item5 {
    width: 55vw;
    height: auto;
    padding: 6vw 4vw;
    border-radius: 15px;
    background-color: #141414;
    -webkit-box-shadow: 0 0 12px #ff99332c;
    box-shadow: 0 0 12px #ff99332c;
  }

  .icon5 {
    width: 20vw;
    height: 20vw;
    margin-bottom: 0vh;
  }

  .stat-item5 h4 {
    font-size: 4.5vw;
    text-align: center;
  }
}

#page6 {
  min-height: 100vh;
  width: 100vw;
  margin-top: -10vh;
}

.container {
  width: 100vw;
  padding: 4vw 12vw;
  text-align: center;
}

h1 {
  font-size: 4vw;
  margin-bottom: 2vw;
  color: #fff;
}

p {
  font-size: 1.3vw;
  line-height: 1.6;
  color: #ffffffc1;
  margin-bottom: 2vw;
}

.marquee-container {
  position: relative;
  width: 100%;
  height: 30vw;
  overflow: hidden;
  background-color: rgb(14, 14, 14);
  margin-bottom: 2vw;
}

.marquee-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  -webkit-animation: scroll 40s linear infinite;
  animation: scroll 40s linear infinite;
}

.marquee-content:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.marquee-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20vw;
  flex: 0 0 20vw;
  height: 20vw;
  margin: 0 1vw;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

/* Duplicate content for seamless infinite scroll */
.marquee-content {
  width: 200%;
}

.marquee-content>div:nth-child(9) {
  margin-left: 0;
  /* Reset margin for duplicate set start */
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

/* Blur only the content on hover */
.marquee-container:hover .marquee-content {
  -webkit-filter: blur(1.3px);
  filter: blur(1.3px);
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  -o-transition: filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

/* Overlay on hover with fade transition only */
.overlay2 {
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.marquee-container:hover .overlay2 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#over-text {
  margin-top: 10.85vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  -o-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  color: white;
  pointer-events: none;
  /* z-index: 10; */
}

.marquee-container:hover #over-text {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#over-text h2 {
  font-size: 2vw;
  font-weight: 550;
  text-align: center;
  margin-bottom: 0.8vw;
}

#over-text h3 {
  font-size: 1.5vw;
  margin-bottom: 1vw;
  font-weight: 200;
  text-align: center;
  color: #ffffffc1;
}

#over-text a {
  text-decoration: none;
  color: #fff;
  border: none;
  padding: 1vw 2vw;
  font-size: 1vw;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

@media (max-width: 768px) {

  #page6 {
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
    margin-bottom: 2vh;
  }

  .container {
    padding: 6vw 6vw;
  }

  h1 {
    font-size: 10vw;
    margin-top: 7vh;
    line-height: 11vw;
  }

  p {
    font-size: 3.8vw;
    line-height: 5vw;
    margin-bottom: 5vw;
  }

  .marquee-container {
    height: 50vw;
    margin-bottom: 6vw;
  }

  .marquee-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40vw;
    flex: 0 0 40vw;
    height: 40vw;
    width: 35vw;
    margin: 0 1vw;
  }

  #over-text {
    margin-top: 8vw;
  }

  #over-text h2 {
    font-size: 6vw;
    margin-bottom: 2vw;
    font-weight: 600;
  }

  #over-text h3 {
    font-size: 3.8vw;
    width: 70vw;
    margin-bottom: 2vw;
  }

  #over-text a {
    font-size: 4vw;
    font-weight: 600;
    padding: 3vw 6vw;
  }
}


/*Footer Start*/

.footer {
  height: 70vh;
  overflow: hidden;
  background-color: #151211;
  padding: 4vw 6vw 0vw 6vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100vw;
  border-top: 1px solid #ffffff39;
  margin-top: 3vw;
}

#copyright p {
  font-size: 1.2vw;
  margin-top: 2vw;

}



.footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3vw;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-section {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 20vw;
  flex: 1 1 20vw;
}


.footer-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1vw;
  margin-bottom: 2vh;
}

.footer-icon {
  width: 1.5vw;
  height: 1.5vw;
  color: #ff9933;

}

.border-bo {
  border-bottom: 0.2vw solid #ff9933;
  width: 50%;
}

.footer-section h3 {
  font-size: 1.5vw;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.footer-section p {
  font-size: 1.2vw;
  margin-top: 0.8vw;
  color: #ffffffc1;
  margin-bottom: 2vh;
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5vw;
}

.social {
  width: 2.5vw;
  height: 2.5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background: #222;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.social:hover {
  opacity: 0.7;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.facebook:hover {
  background: #3b5998;
}

.instagram:hover {
  background: #e1306c;
}

.youtube:hover {
  background: #ff0000;
}

.whatsapp:hover {
  background: #25d366;
}



.quick {
  margin-bottom: 1vh;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 0.2vw solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.5vw;
  color: #ffffffc1;
  margin-top: 0.8vw;
  font-weight: 900;
}

.quick a {
  font-size: 1.2vw;
  text-decoration: none;
  color: #ffffffc1;
  position: relative;
}

.quick a::before {
  content: "";
  width: 100%;
  height: 1.5px;
  position: absolute;
  left: 0%;
  bottom: -20%;
  background: #fff;
  -webkit-transition: 0.5s -webkit-transform ease;
  transition: 0.5s -webkit-transform ease;
  -o-transition: 0.5s transform ease;
  transition: 0.5s transform ease;
  transition: 0.5s transform ease, 0.5s -webkit-transform ease;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.quick a:hover::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.menu-1 a::before {
  background: #ff9933;
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

.menu-1 a:hover::before {
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.quick svg {
  width: 1.8vw;
  height: 1.8vw;
  color: #ff9933;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

#bld {
  width: 2vw;
  height: 2vw;
  color: #ff9933;
  margin-left: -0.1vw;
  margin-top: 0.5vw;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

#bld-txt {
  margin-left: -0.2vw;
}

.quick a:hover {
  color: #FFF9D5;
}

.cont-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.5vw;
  color: #ffffffc1;
}

.cont-div svg {
  width: 2.2vw;
  height: 2.2vw;
  color: #ff9933;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

#eml {
  width: 1.1vw;
  height: 1.1vw;
  color: #ff9933;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.cont-div p {
  font-size: 1.2vw;
  color: #ffffffc1;
}


.footer-section-developer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.developer-btn {
  /* background: linear-gradient(90deg, #facc15, #ff6600); */
  background-color: transparent;
  border: 1px solid #ff9933;
  color: #fff;
  font-size: 1.5vw;
  font-weight: bold;
  padding: 1vh 2vw;
  border-radius: 5px;
  text-decoration: none;
  -webkit-box-shadow: 0 0 10px #ff9933;
  box-shadow: 0 0 10px #ff9933;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background 0.4s ease, -webkit-transform 0.3s ease;
  transition: background 0.4s ease, -webkit-transform 0.3s ease;
  -o-transition: background 0.4s ease, transform 0.3s ease;
  transition: background 0.4s ease, transform 0.3s ease;
  transition: background 0.4s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.developer-btn:hover {
  background: -webkit-gradient(linear, right top, left top, from(#facc15), to(#ff6600));
  background: -o-linear-gradient(right, #facc15, #ff6600);
  background: linear-gradient(270deg, #facc15, #ff6600);
  /* background: linear-gradient(270deg, #ff6600, #facc15); */
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  color: black;
}

.blink {
  display: inline-block;
  -webkit-animation: ani 1s infinite;
  animation: ani 1s infinite;
  color: #ff9933;
  margin-left: 0.5vw;
  font-weight: 100;
}

@-webkit-keyframes ani {
  0% {
    opacity: 0;
  }
}

@keyframes ani {
  0% {
    opacity: 0;
  }
}

.gradient-text {
  background: -webkit-gradient(linear, left top, right top, from(#ff9933), to(#ff6600));
  background: -o-linear-gradient(left, #ff9933, #ff6600);
  background: linear-gradient(90deg, #ff9933, #ff6600);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


@media (max-width: 768px) {

  .footer {
    height: auto;
    /* adjust height automatically */
    padding: 10vw 5vw 5vw 7vw;
  }

  .footer-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: flex-start;
    gap: 6vw;
  }

  .footer-section {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

  .footer-header {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 3vw;
  }

  .footer-icon {
    width: 5vw;
    height: 5vw;
  }

  .footer-section h3 {
    font-size: 6vw;
  }

  .footer-section p {
    font-size: 3.8vw;
    line-height: 5vw;
  }

  .social-links {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 4vw;
  }

  .social {
    width: 10vw;
    height: 10vw;
  }

  .quick {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 2vw;
    margin-top: 2vw;
  }

  .quick a {
    font-size: 4vw;
  }

  .quick svg {
    width: 5vw;
    height: 5vw;
  }

  #bld {
    width: 5vw;
    height: 5vw;
    margin-top: 1vw;
  }

  .cont-div {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 2vw;
    margin-left: 1.5vw;
  }

  .cont-div svg {
    width: 4.5vw;
    height: 4vw;
    margin-top: -1.8vw;
  }

  #eml {
    width: 3.5vw;
    height: 3.5vw;
    margin-top: -1.8vw;
  }

  .cont-div p {
    font-size: 3.8vw;
  }

  .footer-section-developer {
    margin-left: 15%;
  }

  .developer-btn {
    font-size: 5vw;
    padding: 2vh 6vw;
    border-radius: 50px;
  }

  .blink {
    font-size: 6vw;
    margin-left: 2vw;
  }

  #copyright {
    margin-top: 10vw;
    text-align: flex-start;
  }

  #copyright p {
    font-size: 3.2vw;
    font-weight: 570;
    text-align: center;
    margin-top: 6vw;
  }

  .border-bo {
    width: 40%;
  }

  .border-bo:nth-child(2) {
    border: 1.5px solid #ff9933;
    width: 150px;
    margin-left: 0.5vw;
    margin-bottom: 3vw;
  }
}

/*Footer End*/


/* HOME CSS END*/




/* developer css */

.team-section {
  text-align: center;
  padding: 14vh 5vw;
}

.team-section h1 {
  margin-top: 1vw;
  font-size: 4vw;
  color: #fff;
  margin-bottom: 1.5vh;
}

.subtitle {
  font-size: 1.4vw;
  color: #bbb;
  margin-bottom: 5vh;
}

.team-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4vw;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.team-card {
  background: #111;
  border: 0.2vw solid #333;
  border-radius: 2vw;
  width: 40vw;
  min-height: fit-content;
  padding: 3vh 2vw;
  -webkit-box-shadow: 0 1vh 2vh rgba(0, 0, 0, 0.5);
  box-shadow: 0 1vh 2vh rgba(0, 0, 0, 0.5);
  -webkit-transition: border-color 0.4s ease, -webkit-transform 0.4s ease;
  transition: border-color 0.4s ease, -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease, border-color 0.4s ease;
  transition: transform 0.4s ease, border-color 0.4s ease;
  transition: transform 0.4s ease, border-color 0.4s ease, -webkit-transform 0.4s ease;
}

.team-card:hover {
  -webkit-transform: translateY(-1vh);
  -ms-transform: translateY(-1vh);
  transform: translateY(-1vh);
  border-color: #ff9933;
}

.profile-pic img {
  width: 14vw;
  /* scales with screen width */
  height: 16vw;
  /* same height as width for perfect circle */
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 0.3vw solid #ff9933;
  display: block;
  margin: 0 auto 2vh;
}


.team-card h2 {
  font-size: 1.7vw;
  color: #fff;
  margin-bottom: 1.2vh;
}

.team-card h4 {
  font-size: 1vw;
  color: #ff9933;
  margin-bottom: 1vh;
}

.team-card p {
  font-size: 0.9vw;
  color: #ccc;
  margin-bottom: 2vh;
}

.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.5vw;
}

.social-icons a {
  color: #fff;
  font-size: 1.2vw;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #ff9933;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}



@media (max-width: 768px) {
  .team-card {
    width: 80vw;
    height: fit-content;
    padding: 4vh 4vw;
    margin-top: 2vh;
  }

  .profile-pic img {
    width: 25vw;
    height: 25vw;
  }

  .team-card h2 {
    font-size: 6vw;
  }

  .team-card h4 {
    font-size: 4vw;
  }

  .team-card p {
    font-size: 3vw;
    line-height: 4vw;
  }

  .social-icons a {
    font-size: 5vw;
  }

  .subtitle {
    font-size: 4vw;
    line-height: 5vw;
    margin-bottom: 2vh;
  }

  .team-section {
    text-align: center;
    padding: 13vh 5vw 7vh 5vw;
  }

  .team-section h1 {
    font-size: 8vw;
    color: #fff;
  }
}

/* developer css end */

/* activities and achivement starts */

#activities-content {
  min-height: 100vh;
  width: 100vw;
  padding: 4vw 3vw;
  /* display: flex; */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* align-items: center; */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#activities-content h1 {
  font-size: 4vw;
  margin-top: 2vw;
  color: #fff;
  text-align: center;
}

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2vw;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.card {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 20vw;
  flex: 1 1 20vw;
  height: 44vh;
  width: 39vw;
  overflow: hidden;
  border-radius: 1vw;
  cursor: pointer;
  max-width: 22vw;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  border: 2px solid #ffffff3b;
}

a {
  display: inline-block;
  /* allows proper sizing */
}

a>.card {
  display: block;
  height: 44vh;
  /* same as your card height */
  width: 100%;
}

.card:hover {
  -webkit-transform: translateY(-1.5vh);
  -ms-transform: translateY(-1.5vh);
  transform: translateY(-1.5vh);
  border: 3px solid;
  border-color: #ff9933;
}

/* Image Layer */
.card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  position: relative;
  z-index: 1;
}

.image-color-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient dark overlay for video clarity */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.058)), to(rgba(0, 0, 0, 0.329)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.058), rgba(0, 0, 0, 0.329));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.058), rgba(0, 0, 0, 0.329));
  z-index: 2;
}

.card .image-name {
  position: absolute;
  height: 3vh;
  bottom: 1vh;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.2vw;
  text-transform: uppercase;
  text-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.7);
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  z-index: 2;
}

/* Hover: hide image and name */
.card:hover img,
.card:hover .image-name {
  opacity: 0;
}

/* White Background & Content Layer */
.card .content {
  position: absolute;
  inset: 0;
  /* width: 100%;
    height: 100%; */
  background: #1A1A1A;
  padding: 3vw 2vw 2vw 2vw;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  z-index: 2;
  /* make sure it's above the image */
}

.card:hover .content {
  opacity: 1;
}

.content h2 {
  margin-bottom: 1.5vh;
  line-height: 1.7vw;
  font-size: 1.6vw;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.content p {
  font-size: 1vw;
  color: #ffffffc1;
  line-height: 1.2vw;
}

@media (max-width: 768px) {

  #activities-content {
    padding: 11.5vh 5vw;
  }

  #activities-content h1 {
    font-size: 10vw;
    font-weight: bold;
    margin-bottom: 8vw;
  }

  .flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8vw;
  }

  .card {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    height: 80vh;
    width: 75vw;
    max-width: 80vw;
    border-radius: 3vw;
    overflow: hidden;
    border: 1.5px solid #ffffff3b;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }

  /* Disable hover animation — will be controlled by JS tap */
  .card img,
  .card .image-name {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .card .content {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    background: #1A1A1A;
    padding: 6vw 4vw;
  }

  .card.active .content {
    opacity: 1;
  }

  .card.active img,
  .card.active .image-name {
    opacity: 0;
  }

  .content h2 {
    font-size: 6vw;
    line-height: 7vw;
    margin-bottom: 3vw;
  }

  .content p {
    font-size: 3.5vw;
    line-height: 5vw;
  }

  .image-color-overlay {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.058)), to(rgba(0, 0, 0, 0.329)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.058), rgba(0, 0, 0, 0.329));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.058), rgba(0, 0, 0, 0.329));
  }

  .card .image-name {
    font-weight: bold;
    font-size: 4.5vw;
  }
}

/* activities and achievement ends */


/* blood-donation start */
#page11 {
  width: 100vw;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  background: -o-linear-gradient(315deg, #e52d27, #ff6a00);
  background: linear-gradient(135deg, #e52d27, #ff6a00);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 5vh 12vw;
  margin-top: 20vh;
}

#page11 h1 {
  font-size: 3vw;
  margin-bottom: 2vh;
  letter-spacing: 1px;
  font-weight: 700;
}

#page11 p {
  font-size: 1.2vw;
  width: 70vw;
  margin-bottom: 4vh;
  line-height: 1.5;
  color: #ffffffc1;

}

#div-blood-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#div-blood-btn a {
  text-decoration: none;
}

.blood-btn {
  background-color: #ffffff;
  color: #e52d27;
  border: none;
  outline: none;

  padding: 1.2vw 3vw;
  /* increased button size */
  margin: 1.5vh 1vw;
  /* equal vertical spacing */
  font-size: 1.3vw;
  font-weight: 600;

  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0 0.8vw 1.5vw rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.8vw 1.5vw rgba(0, 0, 0, 0.2);
}

.blood-btn:hover {
  color: #fff;
  background-color: #920000fd;
  /* border: 0.2px solid #fff; */
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-box-shadow: 0 1vw 2vw rgba(255, 255, 255, 0.3);
  box-shadow: 0 1vw 2vw rgba(255, 255, 255, 0.3);
}

/* ==== PAGE 2 ==== */
#page22 {
  width: 100vw;
  /* min-height: 30vh; */
  background-color: #141414;
  color: #111;
  text-align: center;
  padding: 10vh 10vw;
}

#page22 h1 {
  font-size: 2.5vw;
  margin-bottom: 1vh;
  color: #ffffff;
}

#page22 p {
  font-size: 1.2vw;
  line-height: 1.8;
  color: #ffffffc1;
}

#page22 span {
  color: #e52d27;
  font-weight: 600;
}

/* ==== PAGE 3 (GALLERY) ==== */
#page33 {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: center;
  margin-top: 1vw;
  margin-left: 2.3vw;
}

#page33 img {
  width: 23vw;
  height: 30vh;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 0 83%;
  object-position: 0 83%;
  margin: 1vw;
  border-radius: 1vw;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

/* ---------- MODAL STYLES ---------- */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  overflow-y: auto;
}

.modal-content {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  margin: 5% auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 90%;
  max-width: 800px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: modalIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10;
  line-height: 1;
}

.close-modal:hover {
  color: #ff9933;
}

.modal-body {
  display: flex;
  gap: 30px;
  align-items: center;
}

.modal-img {
  flex: 1;
  max-width: 350px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.modal-text {
  flex: 1;
  color: white;
}

.modal-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff9933, #ffffff, #138808);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ccc;
}

.modal-actions {
  display: flex;
  gap: 15px;
}

.modal-btn {
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid #ff9933;
  color: #ff9933;
}

.modal-btn:hover {
  background: rgba(255, 153, 51, 0.1);
  transform: translateY(-2px);
}

.modal-btn.btn-primary {
  background: #ff9933;
  color: white;
}

.modal-btn.btn-primary:hover {
  background: #e68a00;
  box-shadow: 0 5px 15px rgba(255, 153, 51, 0.4);
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-body {
    flex-direction: column;
    text-align: center;
  }

  .modal-img {
    max-width: 100%;
  }

  .modal-content {
    margin: 10% auto;
    padding: 40px 20px 20px;
  }

  .modal-text h2 {
    font-size: 1.5rem;
  }

  .modal-actions {
    flex-direction: column;
  }
}

#page33 img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

#page44 {
  width: 100vw;
  min-height: 50vh;
  background-color: #000;
  padding: 10vh 8vw;
}

#page44 h1 {
  text-align: center;
  color: #fff;
  font-size: 2.5vw;
  margin-bottom: 5vh;
}

/* ✅ Container to hold both boxes in a row */
.contribute-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 3vw;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* mobile responsive */
}

/* ✅ Each box styling */
.plasma-box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 35vw;
  background: #f9f9f9;
  border-left: 0.6vw solid #e52d27;
  padding: 4vh 3vw;
  border-radius: 1vw;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-box-shadow: 0 0.6vw 1vw rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.6vw 1vw rgba(0, 0, 0, 0.1);
}

.plasma-box:hover {
  background: #ffeaea;
  -webkit-transform: translateY(-0.5vw);
  -ms-transform: translateY(-0.5vw);
  transform: translateY(-0.5vw);
}

/* ✅ Text styling */
#page44 h3 {
  color: #b31217;
  font-size: 1.6vw;
  margin-bottom: 1vh;
}

#page44 p {
  color: #333;
  font-size: 1.1vw;
  line-height: 1.6;
  margin-bottom: 2vh;
}

#page44 ul {
  list-style: disc;
  margin-left: 2vw;
  color: #555;
  font-size: 1.1vw;
  line-height: 1.6;
}



/* ==== PAGE 5 ==== */
#page55 {
  width: 100vw;
  min-height: 50vh;
  background-color: #141414;
  text-align: center;
  padding: 8vh 10vw;
}

#page55 h1 {
  color: #ffffff;
  font-size: 2.5vw;
  margin-bottom: 5vh;
}

.don5 {
  display: inline-block;
  width: 24vw;
  background: #fff;
  margin: 1vw;
  padding: 3vh 2vw;
  border-radius: 1vw;
  -webkit-box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.15);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.don5:hover {
  -webkit-transform: translateY(-0.5vw);
  -ms-transform: translateY(-0.5vw);
  transform: translateY(-0.5vw);
}

#page55 h3 {
  color: #e52d27;
  font-size: 1.4vw;
  margin-bottom: 1vh;
}

#page55 p {
  color: #333;
  font-size: 1.1vw;
  line-height: 1.6;
  margin-top: 1vh;
}


/* ==== PAGE 6 ==== */
#page66 {
  width: 100vw;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  background-color: #000;
  text-align: center;
  padding: 10vh 10vw;
}

#page66 h1 {
  color: #FFF;
  font-size: 2.5vw;
  margin-bottom: 3vh;
}

#page66 p {
  color: #ffffffc1;
  font-size: 1.2vw;
  line-height: 1.8;
  width: 70vw;
  margin: 0 auto;
}

#page77 {
  width: 100vw;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  background: -o-linear-gradient(315deg, #b31217, #e52d27);
  background: linear-gradient(135deg, #b31217, #e52d27);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 10vh 5vw;
}

#page77 h1 {
  font-size: 3vw;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0.4vw 1vw rgba(0, 0, 0, 0.3);
  border: 3px solid #fff;
  padding: 2vh 4vw;
  border-radius: 1vw;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#page77 a {
  text-decoration: none;
}

#page77 h1:hover {
  background-color: #fff;
  color: #b31217;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {

  /* PAGE 11 */
  #page11 {
    padding: 0vh 5vw 4vh 5vw;
    margin-top: 6vh;
  }

  #page11 h1 {
    font-size: 10vw;
  }

  #page11 p {
    font-size: 3.8vw;
    width: 90vw;
    margin-bottom: 2vh;
  }

  #div-blood-btn {
    /* flex-direction: column; */
    gap: 2vh;
  }

  .blood-btn {
    font-size: 4vw;
    padding: 3vw 5vw;
    margin: 1vh 0;
  }

  /* PAGE 22 */
  #page22 {
    padding: 4vh 0vw;
  }

  #page22 h1 {
    font-size: 10vw;
    margin-bottom: 2vh;
    margin-top: 0vh;
  }

  #page22 p {
    font-size: 3.5vw;
    line-height: 1.4;
    width: 80vw;
    text-align: center;
    margin-left: 10vw;
    margin-bottom: 1.5vh;
  }

  /* PAGE 33 GALLERY */
  #page33 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 0;
  }

  #page33 img {
    width: 80vw;
    height: 40vh;
    margin: 2.5vh 0;
  }

  /* PAGE 44 */
  #page44 {
    padding: 4vh 5vw;
  }

  #page44 h1 {
    font-size: 10vw;
    margin-top: 0vh;

  }

  .contribute-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2vh;
    width: 80vw;
    margin-left: 5vw;
  }

  .plasma-box {
    /* min-width: 50vw; */
    padding: 4vh 5vw;
    margin-bottom: 3vh;
  }

  #page44 h3 {
    font-size: 6vw;
  }

  #page44 p,
  #page44 ul {
    font-size: 3.5vw;
  }

  /* PAGE 55 */
  #page55 {
    padding: 4vh 5vw;
  }

  .don5 {
    width: 80vw;
    margin: 2vh 0;
    padding: 4vh 3vw;
  }

  #page55 h1 {
    font-size: 10vw;
    margin-bottom: 2vh;
    margin-top: 0vh;
  }

  #page55 h3 {
    font-size: 6vw;
  }

  #page55 p {
    font-size: 3.5vw;
  }

  /* PAGE 66 */
  #page66 {
    padding: 4vh 5vw;
  }

  #page66 h1 {
    font-size: 10vw;
    width: 90vw;
    margin-top: 0vh;
  }

  #page66 p {
    font-size: 4vw;
    width: 70vw;
    line-height: 5vw;
  }

  /* PAGE 77 */
  #page77 {
    padding: 4vh 10vw;
  }

  #page77 h1 {
    font-size: 5vw;
    padding: 3vh 5vw;
    line-height: 6vw;
    margin-top: 0vh;
  }


}

/* blood-donation end */

/* click-me-btn for activities page */

.click-me {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: -2vh;
}

.click-me-btn {
  background-color: transparent;
  border: 1px solid #ff9933;
  color: #fff;
  font-size: 1vw;
  font-weight: bold;
  padding: 1vh 1vw;
  border-radius: 50px;
  text-decoration: none;
  -webkit-box-shadow: 0 0 6px #ff9933;
  box-shadow: 0 0 6px #ff9933;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background 0.4s ease, -webkit-transform 0.3s ease;
  transition: background 0.4s ease, -webkit-transform 0.3s ease;
  -o-transition: background 0.4s ease, transform 0.3s ease;
  transition: background 0.4s ease, transform 0.3s ease;
  transition: background 0.4s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.click-me-btn:hover {
  background: -webkit-gradient(linear, right top, left top, from(#facc15), to(#ff6600));
  background: -o-linear-gradient(right, #facc15, #ff6600);
  background: linear-gradient(270deg, #facc15, #ff6600);
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  color: black;
}

@media (max-width: 768px) {
  .click-me {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: -1.2vh;
  }

  .click-me-btn {
    font-size: 3.5vw;
    padding: 1vh 4vw;
    border-radius: 40px;
    -webkit-box-shadow: 0 0 2px #ff9933;
    box-shadow: 0 0 2px #ff9933;
  }
}

/* click-me-btn for activities page */


/* TEAM START */

/* SECTION TITLE */
.heading {
  font-size: 4vw;
  font-weight: 800;
  margin-bottom: 5vh;
  text-align: center;
  color: white;
  margin-top: 12vh;
}

/* MAIN PO CARD */
.full-width-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 80vw;
  background-color: #0D1119;
  border-radius: 2vw;
  border: 2px solid #ffffff3b;
  padding: 4vh 3vw;
  gap: 4vw;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.full-width-card:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  border: 2px solid #ff9933;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.leader-image img {
  width: 18vw;
  height: 35vh;
  border-radius: 1vw;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.leader-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50vw;
}

.leader-info h2 {
  font-size: 2.2vw;
  font-weight: 700;
  color: #fff;
}

.leader-info h3 {
  font-size: 1.6vw;
  color: orange;
  font-weight: 600;
  margin-top: 1vh;
  margin-bottom: 1vh;
}

.leader-info p {
  font-size: 1.1vw;
  color: #ffffffc1;
  line-height: 1.3vw;
  margin-bottom: 2vh;
}

.social-icons-po a {
  color: #ffffffea;
  margin-right: 1vw;
  font-size: 1.5vw;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-left: 0.2vw;
}

.social-icons-po a:hover {
  color: orange;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

#border-line {
  border: 0.1px solid #ffffff2e;
  width: 90vw;
  margin-left: 5vw;
  margin-top: 10vh;
}

/* ------------- SECOND SECTION (TWO CARDS) ------------- */

.heading-member {
  font-size: 4vw;
  font-weight: 800;
  margin-top: 5vh;
  margin-bottom: 3vh;
  color: #fff;
  text-align: center;
}

.leaders-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* align-items: center; */
  width: 100vw;
  padding: 4vh 10vw 0vh 10vw;
}

.mini-card {
  background-color: #020409;
  border-radius: 1.5vw;
  width: 36vw;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6vh 8vw;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #ffffff3b;
}

.mini-card:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  border: 2px solid #f1c40f;
  -webkit-box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.leader-img {
  width: 20vw;
  height: 40vh;
  border-radius: 1vw;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  margin-bottom: 2vh;
}

.leader-img:nth-child(1) {
  -o-object-position: 0 28%;
  object-position: 0 28%;
}



.mini-card h2 {
  font-size: 1.8vw;
  font-weight: 900;
  margin-top: 2vh;
  margin-bottom: 2vh;
  color: #fff;
}

.position {
  font-size: 1.2vw;
  font-weight: 600;
  margin-bottom: 1.5vh;
}

.yellow {
  color: #f1c40f;
}

.mini-card p {
  font-size: 1vw;
  color: #ffffffc1;
  line-height: 1.5;
  width: 29vw;
  margin-top: 0vh;
}


.mini-card .social-icons a {
  color: #ffffffc1;
  font-size: 1.4vw;
  margin: 0 0.2vw;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.mini-card .social-icons a:hover {
  color: #f1c40f;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}


.mini-card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4vh 10vw;
  gap: 3vw;
}


.mini-card3 {
  background-color: #020409;
  border-radius: 1.5vw;
  width: 26vw;
  /* height: 50vh; */
  padding: 5vh 1.2vw;
  text-align: center;
  color: white;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #ffffff3b;
  margin-bottom: 10vh;
}



.mini-card3 .leader-img {
  width: 9vw;
  height: 18vh;
  border-radius: 0.8vw;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 0 10%;
  object-position: 0 10%;
  margin-bottom: 1.5vh;
}


.mini-card3 h2 {
  font-size: 1.8vw;
  margin: 1vh 0 1vh 0;
}

.mini-card3 .position3 {
  font-size: 1.1vw;
  margin-bottom: 1vh;
  color: #f1c40f;
}

.mini-card3 p {
  font-size: 1vw;
  color: #ffffffc1;
  line-height: 1.4;
  margin-bottom: 1.5vh;
  padding: 0 0.5vw;
}


.mini-card3 .social-icons3 a {
  color: #ffffffc1;
  font-size: 1vw;
  margin: 0 0.4vw;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.mini-card3 .social-icons3 a:hover {
  color: #f1c40f;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

/* TEAM END */

/* ---------------- TEAM START ---------------- */
@media (max-width: 768px) {

  .heading,
  .heading-member {
    font-size: 10vw;
    margin-top: 12vh;
    margin-bottom: 3.5vh;
  }

  /* Full-width card adjustments */
  .full-width-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 80vw;
    padding: 5vh 5vw;
    /* gap: 3vw; */
  }

  .leader-image img {
    width: 40vw;
    height: auto;
    border-radius: 3vw;
  }

  .leader-info {
    width: 100%;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .leader-info h2 {
    font-size: 6vw;
  }

  .leader-info h3 {
    font-size: 4vw;
    margin-top: 1vh;
  }

  .leader-info p {
    font-size: 3.5vw;
    line-height: 4vw;
    width: 90%;
  }

  .social-icons-po a {
    font-size: 4.5vw;
    margin: 0 2vw;
  }

  #border-line {
    width: 90%;
    margin: 5vh auto;
  }

  /* Two-card section (Vice President + PO etc.) */
  .leaders-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 0;
  }

  .heading-member {
    font-size: 10vw;
    margin-top: -2vh;
    margin-bottom: 3.5vh;
  }

  .mini-card {
    width: 80vw;
    margin-bottom: 5vh;
    padding: 4vh 6vw;
  }

  .leader-img {
    width: 40vw;
    height: 40vw;
    border-radius: 3vw;
  }

  .mini-card h2 {
    font-size: 6vw;
    margin-top: 1vh;
    margin-bottom: 1vh;
  }

  .position {
    font-size: 4vw;
    margin-bottom: 1vh;
  }

  .mini-card p {
    font-size: 3.5vw;
    width: 90%;
    line-height: 4vw;
  }

  .mini-card .social-icons a {
    font-size: 4.5vw;
    margin: 0 2vw;
  }

  /* Three small cards section */
  .mini-card-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0vh;
    margin-bottom: 0vh;
    gap: 0vh;
    padding: 0vh 0;
  }

  .mini-card3 {
    width: 80vw;
    padding: 4vh 5vw;
    margin-bottom: 4vh;
  }

  .mini-card3 .leader-img {
    width: 40vw;
    height: 40vw;
    border-radius: 3vw;
  }

  .mini-card3 h2 {
    font-size: 6vw;
  }

  .mini-card3 .position3 {
    font-size: 4vw;
  }

  .mini-card3 p {
    font-size: 3.5vw;
    padding: 0 3vw;
    line-height: 4vw;
  }

  .mini-card3 .social-icons3 a {
    font-size: 4.5vw;
    margin: 0 2vw;
  }
}

/* ---------------- TEAM END ---------------- */