@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;1,300&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary: #2a5298;
  --primary-light: #87CEFA;
  --primary-dark: #07476f;
  --accent-blue-1: #00bcd4;
  --accent-blue-2: #2554d7;
  --text-dark: #222; 
  --accent-gradient: linear-gradient(45deg, var(--t-color, #222), #68a5c8);
  

}

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

:root {
   --t-color: #1c3d6e;
   --background: #838783;
}

html {
  scroll-padding-top: 60px; /* Adjust this value to match your nav bar's height */
}



body{
   background-color: #e8e3d9;
     scroll-behavior: smooth;
   scroll-padding-top: 0.5rem;
    outline: none; border: none;
    text-decoration: none;
    text-transform: capitalize;
     
    font-family: 'Poppins', 'sans-serif';
}






 
 /* Hamburger Menu */
 
/* ===================== */
/* Navbar Base Styles */
/* ===================== */

.navbar {
  background: #fff !important; /* white background */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cmda-logo {
  font-family: 'Georgia', serif;
  font-size: 2.5rem; /* bigger logo text */
  letter-spacing: 2px;

  text-shadow: none;
}

/* ===================== */
/* Navbar Links */
/* ===================== */

.navbar .nav-link {
  font-size: 1.5rem; /* bigger link text */
  font-weight: 500;
 
}

.navbar .nav-link:hover {
  text-decoration: underline; /* simple hover effect */
}

.navbar .dropdown-toggle {
  font-size: 1.5rem; /* bigger dropdown toggle */
}

/* ===================== */
/* Hamburger Button */
/* ===================== */

.navbar-toggler {
  border: 1px solid #000; /* simple border */
  border-radius: 5px;
}

.navbar-toggler-icon {
  filter: none; /* default icon */
}

/* ===================== */
/* Dropdown Menu */
/* ===================== */

.dropdown-menu {
  background: #fff; /* white dropdown */
 
  border-radius: 8px;
  
}

.dropdown-item {
  
  padding: 0.8rem 1.5rem;
}

.dropdown-item:hover {
  background: #f0f0f0; /* light gray hover */
}

/* ===================== */
/* Mobile adjustments */
/* ===================== */



@media (max-width: 767px) {
  .cmda-logo {
    font-size: 2rem;
  }

  .navbar .nav-link,
  .navbar .dropdown-toggle {
    font-size: 1.3rem;
  }

  .dropdown-menu.show {
    max-height: 600px;
    padding: 0.5rem auto;
  
  }
}


 /* /Hamburger Menu */

 /* Annual Banquet button */

 /* Add this to your stylesheet (style.css or <style> tag in <head>) */




.buy-tickets-btn {
  /* Basic styling – adjust colors/sizes to match your site */
  display: inline-block;
  padding: 18px 65px;
  font-size: 1.5rem; padding: 22px 48px;       /* ~20px */
  font-weight: bold;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #e63946, #f48c06); /* warm/red-orange energetic gradient */
  border-radius: 50px;          /* pill shape – very modern */
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4); /* colored shadow base */
  
  /* Center text & flex for arrow/icon if you add one later */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  
  /* Animation setup */
  animation: pulse-glow 2.5s ease-in-out infinite;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Gentle pulsing/breathing effect + glow */
@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 15px 45px rgba(230, 57, 70, 0.7);
  }
}

/* Hover interaction – more dramatic */
.buy-tickets-btn:hover {
  transform: translateY(-6px) scale(1.12);
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.8);
  background: linear-gradient(135deg, #f48c06, #e63946); /* reverse gradient for fun */
  color: #fff;
}

/* Optional: shine/move effect on hover (very popular in 2025/2026 designs) */
.buy-tickets-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  transition: left 0.7s ease;
}

.buy-tickets-btn:hover::before {
  left: 120%;
}

@media (max-width: 640px) {
  .buy-tickets-btn {
    
    font-size: 1.1rem;

    padding: 14px 28px;
  }
}

/* ------------------------- */
/* HOME SECTION              */
/* ------------------------- */
.home {
  position: relative;
  top: 1rem;
  padding: 4rem 1rem 2rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* Logo and Title */
.logo {
  margin-bottom: 2rem;
}

.logoName {
   
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(45deg, #2a5298, #68a5c8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  margin-bottom: 1rem;
}

.cdmalogo {
  max-width: 300px;
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto 2rem;
}

/* Mission Statement */
.mission h3 {
  font-size: 1.8rem;
  font-weight: 500;
  background: linear-gradient(45deg, #2a5298, #68a5c8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 3rem;
  line-height: 1.4;
}

/* MULE DEER SLIDER */
.slider {
   position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto 4rem; /* reduced top margin to lift slider up */
  border-radius: 12px;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 100%;
  position: relative;
}



/* Fix for full-height slides */
.slides {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide {
  min-width: 100%;
  position: absolute;

  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide img {
  width: 75%;
  height: auto;
  display: block;
  margin: 0 auto;    /* centers the image horizontally */
    border-radius: 10px;
}

/* First slide visible */
.slide.first {
  opacity: 1;
  position: relative;
}




/* Automatic navigation dots */
.navigation-auto {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.navigation-auto div {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(28, 61, 110, 0.5);
  transition: 0.3s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .slider { width: 95%; margin: 1.5rem auto 3rem; }
}

@media (max-width: 600px) {
  .slider { width: 100%; margin: 1rem auto 2rem; }
}


/* ------------------------- */
/* RESPONSIVE DESIGN         */
/* ------------------------- */
@media (max-width: 992px) {
  .logoName { font-size: 3rem; }
  .mission h3 { font-size: 1.5rem; }
  .cdmalogo { max-width: 220px; }
  
}

@media (max-width: 600px) {
  .logoName { font-size: 2rem; }
  .mission h3 { font-size: 1.2rem; margin-bottom: 2rem; }
  .cdmalogo { max-width: 160px; }
 
}


/* ------------------------- */
/* SPONSOR SECTION           */
/* ------------------------- */

.sponsers .heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
   background: linear-gradient(45deg, #00bcd4, #2554d7);
    background-clip: text;
    color: transparent;
}

/* ------------------------------------------------------ */
/* SPONSOR FEATURE — MODERN + ANIMATED                   */
/* ------------------------------------------------------ */

.sponsor-feature {
    width: 90%;
    max-width: 950px;
    margin: 2rem auto 3rem auto;
    padding: 2.8rem;
    text-align: center;

    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);

    /* Consistent height */
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    /* Entry animation */
    animation: featureFade 0.5s ease-out;
}



/* Smooth fade + slide */
@keyframes featureFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ------------------------- */
/* Logo                      */
/* ------------------------- */

.sponsor-feature img {
    width: 100%;
    max-width: 360px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto 1.6rem auto;
    display: block;

    /* soft float animation */
    animation: logoFloat 5s infinite ease-in-out;
}

@keyframes logoFloat {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* ------------------------- */
/* Typography                */
/* ------------------------- */

.sponsor-feature p {
    max-width: 720px;
    margin: 0 auto 1.5rem auto;

    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.65;

    color: #2b2b2b;
    letter-spacing: 0.3px;

    min-height: 75px; /* Stabilizer */
    display: flex;
    align-items: center;
    justify-content: center;

    /* smoother text appearance on change */
    animation: textSlide 0.45s ease;
}

@keyframes textSlide {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ------------------------- */
/* Button                    */
/* ------------------------- */

.sponsor-feature a {
    display: inline-block;
    padding: 1rem 2.4rem;
    background: #0d6efd;

    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;

    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.6px;

    transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.sponsor-feature a:hover {
    background: #084298;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* ------------------------- */
/* RESPONSIVE                */
/* ------------------------- */

@media (max-width: 700px) {
    .sponsor-feature {
        min-height: 420px;
        padding: 2rem;
    }

    .sponsor-feature img {
        height: 120px;
    }

    .sponsor-feature p {
        font-size: 1.15rem;
    }
}


/* Swiper wrapper */


/* ------------------------------------------------------ */
/* MODERNIZED SPONSOR SLIDES — UNIFORM + ANIMATED         */
/* ------------------------------------------------------ */

.mySwiper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* UNIFORM SLIDE SIZE */
.mySwiper .swiper-slide {
  width: 260px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
  position: relative;
}

/* ANIMATED GRADIENT OUTLINE */
.mySwiper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px; /* thickness */
  background: linear-gradient(45deg, #00bcd4, #2554d7);
  -webkit-mask: 
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover animation */
.mySwiper .swiper-slide:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.mySwiper .swiper-slide:hover::before {
  opacity: 1;
}

/* LOGO SIZING — perfectly uniform */
.mySwiper .swiper-slide img {
  width: 100%;
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transition: transform 0.35s ease;
}

/* Slight hover lift on logo */
.mySwiper .swiper-slide:hover img {
  transform: scale(1.08);
}

/* Navigation buttons */
.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
  color: #2554d7;
  transition: 0.3s ease;
}

.mySwiper .swiper-button-next:hover,
.mySwiper .swiper-button-prev:hover {
  color: #00bcd4;
}

/* Pagination */
.mySwiper .swiper-pagination {
  bottom: 0px;
}

/* ----------------------------------- */
/* RESPONSIVE                          */
/* ----------------------------------- */

@media (max-width: 900px) {
  .mySwiper .swiper-slide {
    width: 220px;
    height: 140px;
  }
  .mySwiper .swiper-slide img {
    max-width: 130px;
    max-height: 60px;
  }
}

@media (max-width: 600px) {
  .mySwiper .swiper-slide {
    width: 180px;
    height: 120px;
  }
  .mySwiper .swiper-slide img {
    max-width: 120px;
    max-height: 55px;
  }
}

/* ------------------------- */
/* RESPONSIVE DESIGN         */
/* ------------------------- */
@media (max-width: 992px) {
  .sponsers .heading {
    font-size: 2rem;
  }

}


/* ------------------------- */
/* JOIN SECTION              */
/* ------------------------- */
.join {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Section Heading */
.join .heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
   background: linear-gradient(45deg, #00bcd4, #2554d7);
    background-clip: text;
    color: transparent;
}

.join .divider {
  width: 70px;
  height: 4px;
  background: var(--primary);
  margin: 2rem auto 2rem;
  border-radius: 4px;
  
}

/* SECTION SUBTITLE */
.section-subtitle {
  font-size: 2rem;               /* Slightly bigger for emphasis */
  font-weight: 700;                /* Bold but not overpowering */
  font-style: italic;
  color: var(--text-dark);         /* Consistent with theme */
       /* Optional stylistic choice */
  text-align: center;              /* Center horizontally */
  max-width: 800px;                /* Prevent it from stretching too wide */
  margin: 1rem auto 3rem;          /* Center vertically with spacing */
  line-height: 1.4;                /* Better readability */
  letter-spacing: 1px;             /* Slight spacing for style */
}

.section-subtitle {
  background: linear-gradient(45deg, var(--accent-blue-1), var(--accent-blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* Perks Container */
.perksContainer {
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
}

/* PERKS → TWO COLUMNS + CENTERED */
.listPerks {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  justify-content: center;
  gap: 1.4rem 2.4rem;
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: left;
}

/* EACH PERK ITEM */
.listPerks li {
  display: flex;
  align-items: flex-start;
  font-size: 1.35rem;
  line-height: 1.45;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);  /* subtle divider */
  transition: transform 0.25s ease;
  color: var(--text-dark);
  font-weight: 500;
}

/* ICON */
.listPerks li::before {
  content: "\f058"; /* check-circle */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.8rem;
  font-size: 1.45rem;
  min-width: 1.45rem;
  color: var(--primary);
  transition: transform 0.25s ease, color 0.25s ease;
}

/* HOVER EFFECT */
.listPerks li:hover {
  transform: translateX(4px);
}

.listPerks li:hover::before {
  transform: scale(1.22);
  color: var(--primary-light);
}

/* MONEY TAGLINE */
 .raised {
  margin-top: 2rem;
  font-size: 2rem;
  font-style: italic;
  font-weight: 700;
  text-align: center;
  opacity: 0.9;
  background: linear-gradient(45deg, var(--accent-blue-1), var(--accent-blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* RESPONSIVE */
@media (max-width: 800px) {
  .listPerks {
    grid-template-columns: 1fr; /* collapse into 1 column */
    max-width: 600px;
  }

  .listPerks li {
    font-size: 1.2rem;
  }
}


/* JOIN BUTTON */

/* JOIN BUTTON WRAPPER */
.joinButton {
  text-align: center;
  margin-top: 2.5rem;
}

/* MODERN JOIN BUTTON */
.joinbtn {
  display: inline-block;
  padding: 1rem 3.2rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;

  /* SAME COLORS — refreshed look */
  background: linear-gradient(35deg, var(--primary), var(--primary-light));
  color: #fff;

  border-radius: 12px;
  border: none;

  /* premium depth */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;

  position: relative;
  overflow: hidden;
}

/* SHINE EFFECT SWEEP */
.joinbtn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,255,255,0.35) 50%,
    transparent 100%
  );

  transition: all 0.45s ease;
}

/* HOVER STATE */
.joinbtn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  color: #eef1ff;
}

.joinbtn:hover::after {
  left: 100%;
}

/* ACTIVE (CLICK) STATE */
.joinbtn:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}


/* ------------------------- */
/* RESPONSIVE DESIGN         */
/* ------------------------- */
@media (max-width: 900px) {
  .section-subtitle {
    font-size: 1.2rem;
  }

  .listPerks li {
    font-size: 1.3rem;
  }

  .raised {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .join {
    padding: 3rem 1rem;
  }

  .perksContainer {
    padding: 1.5rem;
  }

  .listPerks li {
    font-size: 1.1rem;
    padding-left: 0;
  }

  .listPerks li::before {
    font-size: 1.2rem;
    margin-right: 0.8rem;
  }

  .raised {
    font-size: 1rem;
  }
}






/* ------------------------- */
/* SECTION DONATE     */
/* ------------------------- */

.donate-page {
   padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.heading {
  text-align: center;
  margin-bottom: 2rem;
}

.donate-page .heading h2 {
   
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
   background: linear-gradient(45deg, #00bcd4, #2554d7);
    background-clip: text;
    color: transparent;
}

.heading .divider {
  width: 70px;
  height: 4px;
  background: var(--primary);
  margin: 1rem auto 2rem;
  border-radius: 4px;
}

/* SECTION SUBTITLE */
.donate-subtitle {
  font-size: 2rem;               /* Slightly bigger for emphasis */
  font-style: italic;
  font-weight: 700;                /* Bold but not overpowering */
         /* Consistent with theme */
  text-transform: uppercase;       /* Optional stylistic choice */
  text-align: center;              /* Center horizontally */
  max-width: 800px;                /* Prevent it from stretching too wide */
  margin: 1rem auto 3rem;          /* Center vertically with spacing */
  line-height: 1.4;                /* Better readability */
  letter-spacing: 1px;             /* Slight spacing for style */
}

.donate-subtitle {
  background: linear-gradient(45deg, var(--accent-blue-1), var(--accent-blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ------------------------- */
/* HELP LIST                 */
/* ------------------------- */
.helpContainer {
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
 
}



/* LIST → TWO COLUMNS + BETTER CENTERED */
.donate-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  justify-content: center;
  gap: 1.4rem 2.4rem;
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: left;
}

/* EACH ITEM */
.donate-list li {
 display: flex;
  align-items: flex-start;
  font-size: 1.35rem;
  line-height: 1.45;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);  /* subtle divider */
  transition: transform 0.25s ease;
  color: var(--text-dark);
  font-weight: 500;
}

/* ICONS */
.donate-list li::before {
   content: "\f058"; /* check-circle */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.8rem;
  font-size: 1.45rem;
  min-width: 1.45rem;
  color: var(--primary);
  transition: transform 0.25s ease, color 0.25s ease;
}

/* HOVER EFFECT */

.donate-list li:hover {
  transform: translateX(4px);
}


.donate-list li:hover::before  {
  transform: scale(1.22);
  color: var(--primary-light);
}



/* MONEY TEXT */

 .funds {
  margin-top: 2.3rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.5px;
  opacity: 0.9;
  background: linear-gradient(45deg, var(--accent-blue-1), var(--accent-blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* BUTTON AREA */

/* BUTTON WRAPPER */
.donateButton {
  text-align: center;
  margin-top: 2.5rem;
}

/* MODERN GRADIENT BUTTON */
.donatebtn {
  margin: 2rem;
  display: inline-block;
  padding: 1rem 3.2rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;

  /* SAME COLORS – BUT CLEANER & SHARPER */
  background: linear-gradient(35deg, var(--primary-light), var(--primary));
  color: #fff;

  border-radius: 12px;
  border: none;

  /* Modern depth */
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
  
  position: relative;
  overflow: hidden;
}

/* SHINY HIGHLIGHT SWEEP */
.donatebtn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,255,255,0.35) 50%,
    transparent 100%
  );

  transition: all 0.45s ease;
}

/* ON HOVER */
.donatebtn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  color: #eef1ff;
}

.donatebtn:hover::after {
  left: 100%;
}

/* ACTIVE / CLICK */
.donatebtn:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}


/* RESPONSIVE BREAKPOINTS */
@media (max-width: 900px) {

.donate-subtitle{
   font-size: 1.2rem;
}

  .donate-list li {
    font-size: 1.2rem;
  }
  .funds {
    font-size: 1.2rem;
  }
}

@media (max-width: 800px) {
  .donate-list {
    grid-template-columns: 1fr; /* collapse into 1 column */
    max-width: 600px;
  }
}


@media (max-width: 600px) {
 
  .donate-list li {
    font-size: 1.1rem;
    
  }
  .funds {
    font-size: 1rem;
  }
}

/* --------------------------------------------- */
/* RESPONSIVE BUTTONS (JOIN + DONATE SECTIONS)   */
/* --------------------------------------------- */

@media (max-width: 900px) {
  .donatebtn,
  .joinbtn {
    padding: 0.9rem 2.5rem;
    font-size: 1.15rem;
    border-radius: 10px;
  }
}

@media (max-width: 600px) {
  .donateButton,
  .joinButton {
    text-align: center;
    margin-top: 1.8rem;
  }

  .donatebtn,
  .joinbtn {
    padding: 0.85rem 2rem;
    font-size: 1.05rem;
    width: 80%;              /* scales beautifully on phones */
    max-width: 300px;
    border-radius: 10px;
  }
}

@media (max-width: 400px) {
  .donatebtn,
  .joinbtn {
    width: 90%;
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
  }
}


/* ************************* Events ******************************* */

/* Events Section */

.events {
   margin: auto;
   padding: 3rem;
   border-radius: 10px;
   box-shadow: 0 0 20px 1px rgba(0,0 , 0, 0.1);
   z-index: 1000;
}

.events .heading h2{
   margin-top: 5rem;
}

.events .heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
    background: linear-gradient(45deg, var(--t-color, #222), #68a5c8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

 

.events .row{
   display: grid;
   grid-template-columns: repeat(auto-fit,minmax(25%,1fr));
   gap: 3rem;
   margin: 6rem 0;
   padding: 2rem;
   text-align: center;
   justify-content: center;
}

.events .box {
   width: 100%;
   max-width: 820px;
   background-color: #fff;
   border-radius: 10px;
   box-shadow: 0 0 20px 1px rgba(0,0 , 0, 0.1);
   overflow: hidden;  
   padding: 1rem;
   text-align: center;
   justify-content: center;
}

.events .row img {
   max-width: 100%;
   height: auto;
   display: block;
}

.events .row img {
    width: 100%;           /* fill the box width */
    height: 250px;         /* set all images to same height */
    object-fit: contain;     /* crop image nicely without stretching */
    display: block;
    border-radius: 8px;    /* optional, matches box style */
}


.events .row h3 {
   color: #2554d7;
   font-size: 2rem;
   margin: 1.5rem 0;
   text-align: center;
}

.events .row p {
   color: #2554d7;
   font-size: 1rem;
   margin: 1.5rem 0;
}

.btnBlog {
   padding: 0.6rem 1.3rem;
   background-color: #2554d7;
   border: 2px solid #fafafa;
   font-size: 0.95rem;
   text-decoration: none;
   color: #fff;
   line-height: 1;
   border-radius: 25px;
   outline: none;
   cursor: pointer;
   transition: 0.3s;
   margin: 0;
}

.btnBlog:hover{
   background-color: transparent;
   color: #00bcd4;
}

/* Responsive */
@media (max-width: 800px) {
    .events .row {
       grid-template-columns: 1fr;
       gap: 2rem;
       margin: 4rem 0;
       padding: 1rem;
    }
}

@media (max-width: 600px) {
    .events .row img {
        height: 180px;     /* smaller height on mobile */
    }
}


@media (max-width: 400px) {
    .events .row h3 {
       font-size: 1.2rem;
    }
    .events .row p {
       font-size: 0.9rem;
    }
}


/* /Events */

/* Shop */

.shop-page {
   padding: 4rem;
   margin: auto;
   
}

.shop-page .heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
    background: linear-gradient(45deg, var(--t-color, #222), #68a5c8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  
}

.shop {
   font-family: Arial, sans-serif;
   background: linear-gradient(135deg, #87CEFA, #2a5298);
   color: white;
   height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
 }

 .containerShop {
   max-width: 600px;
   padding: 20px;
 }

 .shop1 {
   font-size: 3rem;
   margin-bottom: 20px;
 }

 .shop2{
   font-size: 1.2rem;
   margin-bottom: 30px;
 }

 .countdown {
   font-size: 4rem;
   font-weight: bold;
 }

 @media (max-width: 600px) {
   .shop{
     font-size: 2rem;
   }

   .countdown {
     font-size: 2rem;
   }
 }

/* /shop */

/* blog */

.blog{
   padding: 4rem;
   margin: auto;
}

.blog .heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
    background: linear-gradient(45deg, var(--t-color, #222), #68a5c8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

section .blog{
   border-radius: 10px;
   box-shadow: 0 0 20px 1px rgba(0,0 , 0, 0.1);
   z-index: 1000;
}

.blog .row{
   display: grid;
   grid-template-columns: repeat(auto-fit,minmax(25%,1fr));
   gap: 3rem;
   margin: 6rem 0;
   padding: 2rem;
   text-align: center;
   justify-content: center;
}



.box{
   width: 100%;
   max-width: 820px;
   background-color: #fff;
   border-radius: 10px;
   box-shadow: 0 0 20px 1px rgba(0,0 , 0, 0.1);
   
   overflow: hidden;  
   padding: 1rem;
   text-align: center;
   justify-content: center;
 }

.blog .row .img {
   max-width: 100%;
   height: auto;
   display: block;
   
}

.blog .row h3 {
   color: #2554d7;
   font-size: 2rem;
   margin: 1.5rem 0;
   text-align: center;
}
.blog .row p {
   color: #2554d7;
   font-size: 1rem;
   margin: 1.5rem 0;
}

.btnBlog {
   padding: 0.6rem 1.3rem;
   background-color: #2554d7;
   border: 2px solid #fafafa;
   font-size: 0.95rem;
   text-decoration: none;
   color: #fff;
   line-height: 1;
   border-radius: 25px;
   outline: none;
   cursor: pointer;
   transition: 0.3s;
   margin: 0;
}

.btnBlog:hover{
   background-color: transparent;
   color: #00bcd4;
}

@media (max-width: 400px) {

   .blog .row h3{
      font-size: 1.2rem;
   }

   .blog .row p{
      font-size: 0.8rem;
   }

}

@media (max-width: 800px) {
   

 .blog .row{
   display: grid;
   grid-template-columns: none;
   gap: 3rem;
   margin: 6rem 0;
   padding: 2rem;
}

 
}

/* ************* /blog **************** */


/* Board Members page */

.board-members{
   padding: 4rem;
   margin: auto;
}

 .board-members .heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
    background: linear-gradient(45deg, var(--t-color, #222), #68a5c8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* Board Members Section */

.card-list .card-item {
    width: 320px;
    padding: 30px;
    background: #fff;                  /* white card */
    border: 2px solid #000;            /* black border */
    border-radius: 12px;
    text-align: center;
    color: #000;                       /* black text */
    display: flex;
    flex-direction: column;
    align-items: center;

    /* Modern look */
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: 
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

/* Hover animation */
.card-list .card-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 14px 35px rgba(0,0,0,0.25);
    filter: grayscale(0%);              /* full color on hover (if images had color) */
}

/* Images */
.card-list .card-item .user-image {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 3px solid #000;
    margin-bottom: 20px;
    object-fit: cover;

    /* grayscale default */
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

/* Image turns normal on hover */
.card-item:hover .user-image {
    filter: grayscale(0%);
}

/* Name */
.card-list .card-item .user-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    text-transform: capitalize;
}

/* Description */
.card-list .card-item .user-profession {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #000 !important;
    transition: transform 0.2s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.2);
}

/* Pagination dots */
.swiper-pagination-bullet {
    background: #000 !important;
}

/* Title */
.heading h2 {
    color: #000;
    margin-top: 4rem;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 1px;
}


 
/* /Board Members page */

   /* ************* About page ************ */
   
   /* ************* About Page ************ */

.aboutPage {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto; /* centers the entire page properly */
}

.aboutPage .heading h2 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    background: linear-gradient(45deg, var(--t-color, #222), #68a5c8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* -------- Main Layout -------- */
.about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;       /* vertically centers text + image */
    justify-content: center;   /* centers horizontally */
    gap: 3rem;
    padding: 2rem 1rem;        /* reduced padding prevents shifting right */
}

/* -------- Image -------- */
.about-img {
    flex: 1 1 280px;
    text-align: center;
}

.about-img img {
    width: 260px;
    max-width: 100%;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* -------- Text Box -------- */
.aboutContainer {
    flex: 2 1 500px;
    max-width: 700px;          /* prevents text from stretching too wide */
}

.about-content {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.about-content h1 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #00bcd4, #2554d7);
    background-clip: text;
    color: transparent;
}

.aboutSpan {
    background: linear-gradient(45deg, #00bcd4, #2554d7);
    background-clip: text;
    color: transparent;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #333;
}

/* -------- Responsive -------- */
@media (max-width: 900px) {
    .about {
        flex-direction: column;
        text-align: center;          /* prevents “shifting right” */
    }

    .about-img img {
        width: 220px;
    }

    .aboutContainer {
        max-width: 100%;
    }

    .about-content {
        padding: 2rem;
    }
}

@media (max-width: 600px) {

    .about-content h1 {
        font-size: 2.4rem;
    }

    .about-content p {
        font-size: 1.05rem;
    }

    .about-img img {
        width: 180px;
    }
}

@media (max-width: 400px) {
    .about-content h1 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    .aboutPage {
        padding: 3rem 1rem;
    }
}


 /* /About Page */



 
/* contact */

.contact {
    padding: 4rem 2rem;
}

.contact .heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    background: linear-gradient(45deg, var(--t-color, #222), #68a5c8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: #000;
    margin: 1rem auto 3rem;
    border-radius: 2px;
}

.image-contact {
    text-align: center;
    margin-bottom: 3rem;
}

.my-cover {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0,0 , 0, 0.1);
    z-index: 1000;
}

.containerContact {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 900px;
    background-color: #fff; /* keep original color */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px 1px rgba(0,0 , 0, 0.1);
}

/* Contact Info */
.contact-info {
    background-color: #d1d3d5; /* original */
    padding: 2rem;
}

.contact-info .title {
    color: #87CEFA;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.contact-info .text {
    color: #333;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.information {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #555;
}

.icon2 {
    width: 28px;
    margin-right: 0.7rem;
}

.social-media p {
    margin-bottom: 0.5rem;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, #00bcd4, #2554d7); /* original */
    color: #fff;
    text-align: center;
    line-height: 35px;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.1);
}

/* Contact Form */
.contact-form {
    background-color: #87CEFA; /* original */
    padding: 2rem;
}

.contact-form .title {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.input-container {
    position: relative;
    margin-bottom: 1.2rem;
}

.input-container input,
.input-container textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 2px solid #fafafa; /* original */
    background: none;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.input-container textarea {
    min-height: 120px;
    resize: vertical;
}

.input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #fafafa;
    font-size: 0.9rem;
    pointer-events: none;
    transition: 0.3s;
}

.input-container.focus label,
.input-container input:focus + label,
.input-container textarea:focus + label {
    top: -10px;
    font-size: 0.8rem;
    color: #fff;
}

.contact-btn {
    width: 100%;
    padding: 0.8rem;
    border-radius: 25px;
    border: 2px solid #fafafa; /* keep original */
    background: #87CEFA;
    color: #fafafa;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #fafafa;
    color: #87CEFA;
}

/* Responsive */
@media(max-width: 900px) {
    .form {
        grid-template-columns: 1fr; /* stack on smaller screens */
    }
}

@media(max-width: 500px) {
    .my-cover {
        max-height: 200px;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }

    .contact-info .title,
    .contact-form .title {
        font-size: 1.4rem;
    }

    .input-container input,
    .input-container textarea {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }

    .contact-btn {
        font-size: 0.95rem;
        padding: 0.6rem;
    }
}


/* /Contact */


