* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  color: #1f2d3d;
  background: #f5f7fb;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: #AB03A4;  /* THEME COLOR */
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #ffd1f0;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
}

/* HERO */

.hero-content {
  background: rgba(0,0,0,0.55);
  padding: 30px;
  border-radius: 10px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #ffb703;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #ff9800;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  margin-bottom: 20px;
  color: #AB03A4;
}

/* CARDS */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* FOOTER */
.footer {
  background: #AB03A4; /* THEME COLOR */
  color: white;
  padding: 40px 20px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #AB03A4;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 10px;
  }

  nav.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* HERO BACKGROUND (keep same) */

/* TEXT CONTAINER CENTER */
.hero-container {
  max-width: 800px;
  display: flex;
  justify-content: center;
}

/* 🔥 TEXT BOX */
.hero-text {
  background: rgba(255, 255, 255, 0.2);  /* light transparent */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: white;

  backdrop-filter: blur(3px);  /* VERY LIGHT blur */
  -webkit-backdrop-filter: blur(3px); /* for browser support */

  border: 1px solid rgba(255,255,255,0.2); /* subtle border */
}
/* TEXT STYLE */
.hero-text h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 22px;
  background: #ffb703;
  color: black;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #ff9800;
}




/* HERO WITH BACKGROUND IMAGE */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('coverr.png') center/cover no-repeat;

  color: white;
  padding: 40px 20px;
}

/* CENTER TEXT */
.hero-container {
  max-width: 800px;
  text-align: center;
}

/* TEXT CONTAINER */
.hero-container {
  max-width: 800px;
  text-align: center;
}

/* TEXT ANIMATION */
.hero-text {
  animation: fadeUp 1.2s ease-out;
}

.hero-text h1 {
  font-size: 44px;
  margin-bottom: 15px;
  animation: slideDown 1s ease-out;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 0.5s;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 22px;
  background: #ffb703;
  color: black;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
  opacity: 0;
  animation: fadeIn 1.8s ease forwards;
  animation-delay: 0.8s;
}

.btn:hover {
  background: #ff9800;
  transform: scale(1.05);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* CLEAN MODERN HEADER ANIMATION */
.header {
  animation: headerFadeIn 0.6s ease-out;
}

/* subtle professional effect */
@keyframes headerFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.header {
  backdrop-filter: blur(10px);
  background: rgba(157, 26, 117, 0.9);
}



/* =========================
   PREMIUM MEMBERS SECTION
========================= */

#members {
  background: #f5f7fb;
}

/* Section title */
#members h2 {
  font-size: 34px;
  color: #AB03A4;
  margin-bottom: 10px;
}

/* subtitle */
#members p {
  color: #555;
  margin-bottom: 30px;
}

/* PRESIDENT CARD (TOP BIG CARD) */
.member.president {
  max-width: 320px;
  margin: 0 auto 40px;
  background: white;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  text-align: center;
  transition: 0.3s;
}

.member.president:hover {
  transform: translateY(-6px);
}

/* PRESIDENT IMAGE (CIRCLE FACEBOOK STYLE) */
.member.president img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #AB03A4;
}

/* GRID MEMBERS */
.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

/* MEMBER CARD (PREMIUM FACEBOOK STYLE) */
.member {
  background: white;
  padding: 20px;
  border-radius: 16px;
  text-align: center;

  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.member:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(157, 26, 117, 0.2);
}

/* MEMBER IMAGE (SQUARE FACEBOOK STYLE) */
.member img {
  width: 100%;
  height: 200px;        /* 👈 square/rectangular style */
  object-fit: cover;
  border-radius: 12px;  /* Facebook-like soft square */
}

/* NAME */
.member h3 {
  margin-top: 12px;
  font-size: 18px;
  color: #222;
}

/* ROLE */
.member p {
  font-size: 14px;
  color: #777;
}

/* FACEBOOK LINK BUTTON */
.member a {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background: #1877f2;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.member a:hover {
  background: #0f5bd6;
  transform: scale(1.05);
}

/* CALL + SOCIAL BUTTONS */
.social a {
  display: inline-block;
  margin: 5px;
  padding: 6px 12px;
  background: #AB03A4;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
}

/* LAYOUT */
.about-container {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT TEXT */
.about-text {
  flex: 1;
  min-width: 300px;
  line-height: 1.7;
}

/* RIGHT SLIDER */
.about-slider {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

/* IMAGE STYLE */
.about-slider img {
  width: 100%;
  max-width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);

  transition: opacity 0.8s ease-in-out;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
}

/* SECTION SPACING */
.about-section {
  padding: 60px 20px;
}

/* TITLE */
.about-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #AB03A4;
  font-size: 32px;
}

/* MAIN LAYOUT (IMPORTANT FIX) */
.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
}

/* LEFT TEXT (BETTER READABILITY) */
.about-text {
  flex: 1;
  line-height: 1.8;
  font-size: 16px;
  color: #333;
}

/* RIGHT IMAGE (BIGGER NOW) */
.about-slider {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-slider img {
  width: 100%;
  max-width: 450px;   /* BIGGER IMAGE */
  height: 350px;
  object-fit: cover;

  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);

  transition: opacity 0.6s ease-in-out;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    font-size: 15px;
  }

  .about-slider img {
    height: 280px;
  }
}

/* SECTION SPACING */
.about-section {
  padding: 60px 20px;
}

/* TITLE */
.about-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #AB03A4;
  font-size: 32px;
}

/* MAIN LAYOUT (IMPORTANT FIX) */
.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
}

/* LEFT TEXT (BETTER READABILITY) */
.about-text {
  flex: 1;
  line-height: 1.8;
  font-size: 16px;
  color: #333;
}

/* RIGHT IMAGE (BIGGER NOW) */
.about-slider {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-slider img {
  width: 100%;
  max-width: 450px;   /* BIGGER IMAGE */
  height: 350px;
  object-fit: cover;

  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);

  transition: opacity 0.6s ease-in-out;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    font-size: 15px;
  }

  .about-slider img {
    height: 280px;
  }
}
 
.about-text p.show {
  opacity: 1;
  transform: translateY(0);
}
.about-slider img {
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* TEXT STARTS NORMAL (VISIBLE) */
.about-text p {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* ANIMATION STATE */
.about-text p.show {
  opacity: 1;
  transform: translateY(0);
}

/* optional nice entry effect */
.about-text p.animate {
  opacity: 0;
  transform: translateY(20px);
}


/* ABOUT SECTION NEW STYLE */
.about-section {
  padding: 60px 20px;
}

/* TITLE */
.about-title {
  text-align: center;
  font-size: 32px;
  color: #AB03A4;
  margin-bottom: 30px;
}

/* BOX */

.about-box {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;

  /* THEME BORDER */
  border-left: 6px solid #b804b2;

  /* SOFT SHADOW */
  box-shadow: 0 8px 25px rgba(157, 26, 117, 0.15);

  transition: 0.3s ease;
}

/* HOVER EFFECT (NICE TOUCH) */
.about-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(157, 26, 117, 0.25);
}

/* TEXT STYLE */
.about-box p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}

/* ANIMATION START */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

/* SHOW ON SCROLL */
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}


.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

/* BASE BUTTON STYLE */
.social-icons a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  text-decoration: none;

  color: white;
  font-size: 18px;

  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* FACEBOOK */
.facebook {
  background: #1877f2;
}

/* INSTAGRAM (gradient) */
.instagram {
  background: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%, #fd5949 45%,
    #d6249f 60%, #285AEB 90%);
}

/* TIKTOK */
.tiktok {
  background: #000000;
}

/* HOVER EFFECT (GLOW + LIFT) */
.social-icons a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

/* FOOTER BACKGROUND */
.footer {
  background: #AB03A4;
  color: white;
  padding: 40px 20px 20px;
}

/* MAIN LAYOUT */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

/* COLUMNS */
.footer-left,
.footer-right {
  flex: 1;
  min-width: 250px;
}

/* HEADINGS */
.footer h3 {
  margin-bottom: 15px;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 12px;
}

/* ICON BUTTONS */
.social-icons a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

/* COLORS */
.facebook { background: #1877f2; }
.instagram { background: radial-gradient(circle at 30% 107%,
  #fdf497 0%, #fdf497 5%, #fd5949 45%,
  #d6249f 60%, #285AEB 90%); }
.tiktok { background: #000; }

/* HOVER */
.social-icons a:hover {
  transform: scale(1.1);
}

/* BOTTOM TEXT */
.bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 15px;
}

/* layout */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

/* columns */
.footer-left,
.footer-right {
  flex: 1;
  min-width: 250px;
}

/* PAGE */
.contact-page {
  text-align: center;
  padding: 60px 20px;

  flex: 1;
}

.contact-page h1 {
  color: #AB03A4;
  font-size: 36px;
  margin-bottom: 30px;
}

/* GRID */
.team-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* CARD */
.team-card {
  width: 260px;
  background: white;
  padding: 20px;
  border-radius: 12px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

/* HOVER */
.team-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* FACEBOOK LINK */
.team-card a {
  display: inline-block;
  margin-top: 10px;
  color: #1877f2;
  text-decoration: none;
  font-weight: bold;
}

.team-card a i {
  margin-right: 5px;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 20px;
  background: #AB03A4;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

/* HEADER */
.contact-header {
  background: linear-gradient(135deg, #AB03A4, #5a0f45);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.contact-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 16px;
  opacity: 0.9;
}

/* PAGE */
.contact-page {
  text-align: center;
  padding: 50px 20px;
  background: #f9f9f9;
}

/* TEAM */
.team-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.team-card {
  width: 260px;
  background: white;
  padding: 20px;
  border-radius: 12px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

/* FACEBOOK */
.team-card a {
  color: #1877f2;
  text-decoration: none;
  font-weight: bold;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 20px;
  background: #AB03A4;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

/* FOOTER */
.contact-footer {
  background: #AB03A4;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: auto;
}

.back-btn{
  display:inline-block;
  margin:15px 20px;
  padding:10px 18px;
  background:#AB03A4;
  color:white;
  text-decoration:none;
  font-weight:600;
  border-radius:8px;
  transition:0.3s;
  box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.back-btn:hover{
  background:#7a145c;
  transform:translateY(-2px);
}

/* LIGHTBOX BACKGROUND */
.lightbox{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

/* IMAGE */
.lightbox img{
  max-width:90%;
  max-height:80%;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

/* CLOSE BUTTON */
.close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:40px;
  color:white;
  cursor:pointer;
}

/* NEXT PREV BUTTONS */
.prev, .next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:40px;
  background:none;
  border:none;
  color:white;
  cursor:pointer;
  padding:10px;
}

.prev{ left:20px; }
.next{ right:20px; }

.prev:hover, .next:hover{
  color:#AB03A4;
}

/* =========================
   PREMIUM MEMBERS SECTION
========================= */

#members {
  position: relative;
  overflow: hidden;
  padding: 70px 20px;
  background: #f7f7fb;
}

/* WATERMARK LOGO (BIG + FADED) */
#members::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 750px;
  height: 750px;

  background: url("logo1.png") no-repeat center;
  background-size: contain;

  opacity: 0.05;   /* very light like Facebook watermark */
  z-index: 0;
  pointer-events: none;
}

/* TITLE */
#members h2 {
  text-align: center;
  font-size: 32px;
  color: #9D1A75;
  margin-bottom: 10px;
}

#members p {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

/* MEMBER GRID */
.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

/* MEMBER CARD (PREMIUM FACEBOOK STYLE) */
.member {
  background: white;
  padding: 20px;
  border-radius: 16px;
  text-align: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  position: relative;
  z-index: 2;
}

.member:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* IMAGE (CIRCLE STYLE LIKE FACEBOOK PROFILE) */
.member img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #9D1A75;
  margin-bottom: 10px;
}

/* NAME */
.member h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

/* ROLE */
.member p {
  font-size: 14px;
  color: #666;
}

/* FACEBOOK LINK */
.member a {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  background: #1877f2;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.member a:hover {
  background: #0f5bd1;
}

/* PRESIDENT BIG STYLE */
.president img {
  width: 140px;
  height: 140px;
}

/* LIGHT BLUE SECTION BACKGROUND */
.soft-bg {
  background: linear-gradient(135deg, #eaf4ff, #f7fbff);
  padding: 60px 0;
}

@media (max-width:600px){
  .grid{
    grid-template-columns:1fr;   /* one photo per row */
  }

  .grid img{
    height:auto;
  }
}
@media (max-width: 600px) {
  .team-card {
    width: 90%;
  }
}