:root {
  --accent: #ff5252;
  --dark-overlay: rgba(0, 0, 0, 0.55);
  --primary: #3F2D56;
  /* PACS blue */
  --primary-700: #3F2D56;
  --accent: #e63946;
  /* red accent */
  --ink: #0b1324;
  --muted: #5b6b8a;
  --bg-soft: #fff6fb;
  --card: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(13, 78, 166, 0.1);
   --c1:#6a1b9a;     /* purple */
  --c2:#ff6a00;     /* orange */
  --c3:#ffb703;     /* yellow */
  --dark:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;
}
.contact-section::before
html,
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  color: var(--ink);
  scroll-behavior: smooth;

}
.btn-info{
  background-color: #E99894;
  border:1px solid #E99894;
}
.btn-info:hover{
  background-color: #443056;
  border:1px solid #443056;
}
a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-700);
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-700);
  border-color: var(--primary-700);
}

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-accent:hover {
  opacity: 0.92;
}

.navbar {
  box-shadow: 0 6px 20px rgba(13, 78, 166, 0.08);
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.nav-link {
  font-weight: 600;
}

/* Hero */
.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  place-items: center;
  background: linear-gradient(
      180deg,
      rgba(13, 78, 166, 0.75),
      rgba(13, 78, 166, 0.45)
    ),
    url("assets/hero.jpg") center/cover no-repeat;
  color: #fff;
}

.hero .glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
  border-radius: 28px;
  padding: 34px;
}

.hero h1 {
  font-weight: 800;
  line-height: 1.1;
}

.hero p {
  opacity: 0.95;
}

/* Section helpers */
.section {
  padding: 70px 0;
}

.section-title {
  margin-bottom: 24px;
}

.section-title .eyebrow {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.section-title h2 {
  font-weight: 800;
}

/* Cards */
.card-lite {
  background: var(--card);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
}

.avatar {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(13, 78, 166, 0.15);
}
.avatar-committee {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(13, 78, 166, 0.15);
}

.logo-row img {
  height: 38px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.2s;
}

.logo-row img:hover {
  filter: none;
  opacity: 1;
}

/* Stats */
.stat {
  background: var(--card);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
  text-align: center;
}

.stat .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

/* Testimonial */
.quote {
  font-size: 1.05rem;
  color: #24324b;
}

.quote i {
  color: #f2b705;
}

/* Footer */
footer {
  background: rgba(56, 56, 209, 1);
  color: #dbe7ff;
}

footer a {
  color: #dbe7ff;
}

.footer-bottom {
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

/* Utilities */
.bg-soft {
  /* background: var(--bg-soft); */
  background-color: #FFEDEE;
}

.shadow-hover {
  transition: transform 0.2s, box-shadow 0.2s;
}

.shadow-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(13, 78, 166, 0.16);
}


.hero-slide {
  height: 92vh;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* backdrop-filter: blur(4px); */
}

.text-accent {
  color: var(--accent) !important;
}

.carousel-item {
  transition: opacity 1.2s ease-in-out;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity, transform;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
  transform: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  background-size: 1rem;
  filter: invert(1);
}

.carousel-indicators [data-bs-target] {
  background-color: #fff;
  opacity: 0.6;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: var(--accent);
  opacity: 1;
}


/* top head section css  start*/
.contact-section::before {
  content: "";
  background-color: #443056;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0; /* hidden initially */
 
  z-index: 0;
  opacity: 1;
}

/* On hover — image becomes visible */
.contact-section:hover::before {
}

/* Keeps text always on top and sharp */
.contact-section > * {
  position: relative;
  z-index: 1;
}
.nav-link {
  color: white;
}

/* top head section end  */

.animate-bg {
  background-image: radial-gradient(
      circle at 20% 100%,
      rgba(184, 184, 184, 0.1) 0%,
      rgba(184, 184, 184, 0.1) 33%,
      rgba(96, 96, 96, 0.1) 33%,
      rgba(96, 96, 96, 0.1) 66%,
      rgba(7, 7, 7, 0.1) 66%,
      rgba(7, 7, 7, 0.1) 99%
    ),
    linear-gradient(40deg, #2271b1, #2271b1c4, #2271b1a1, #2271b1f5);
}

/* --- MARQUEE EFFECT --- */
.marquee {
  white-space: nowrap;
  animation: scroll-left 18s linear infinite;
  display: inline-flex;
}

@keyframes scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pause marquee on hover */
.marquee:hover {
  animation-play-state: paused;
  cursor: pointer;
}

/* --- VISUAL ENHANCEMENTS --- */
section.bg-dark {
  background: linear-gradient(90deg, #000, #111 40%, #000);
  /* border-top: 2px solid #dc3545;
  border-bottom: 2px solid #dc3545; */
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.badge {
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.4);
}

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


/* marquee style end  */

/* ============================ member css start ========================= */
/* MEMBERS SECTION */
#members {
  position: relative;
  padding: 80px 0 160px 0; /* ⬅ Increased bottom padding */
  min-height: 600px;
  color: #fff;
  overflow: visible !important; /* ⬅ Allow image overflow */
  background-color: #3F2D56;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/* Flower Image */
.flower-left-bottom {
    position: absolute;
    bottom: -81px;     /* your required position */
    left: 0;
    width: auto;
    pointer-events: none;
    z-index: 10;
}
/* Overlay removed — not needed anymore! */

/* Ensure content visible above background */
#members .container {
  position: relative;
  z-index: 2;
}

/* SECTION TITLE */
#members .section-title .eyebrow {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  color: #f0f0f0;
  margin-bottom: 10px;
}
#members .section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

/* CARDS */
#members .card-lite {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  transition: transform 0.3s;
}
#members .card-lite:hover {
  transform: translateY(-5px);
}
#members .card-lite img.avatar {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  object-fit: cover;
}

/* BUTTON */
#members .btn-outline-danger {
  color: #443056;
  background-color: #F7B1B3;
  border: none;
}
#members .btn-outline-danger:hover {
  background-color: #443056;
  color: #F7B1B3;
}

/* SCROLLING ROW */
.founder-wrapper {
  overflow: hidden;
  position: relative;
}
.scrolling-row {
  display: flex;
  gap: 1rem;
  animation: scroll-left 25s linear infinite;
}
.scrolling-row .col {
  flex: 0 0 250px;
}
.card-lite {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.founder-wrapper:hover .scrolling-row {
  animation-play-state: paused;
}

/* ======================================== member css end ==================================== */

/* ============================================ upcoming events css start ======================== */

.event-card {
  background: #e3e8ef78;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border-left: 6px solid #0eb6ff;
}

.event-card::after {
  content: "\f0f1";
  /* Bone icon (FontAwesome) */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-size: 48px;
  color: #0b71e0;
  opacity: 0.15;
  /* soft watermark */
  pointer-events: none;
}

.event-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  color: #fff;
  border: none;
  white-space: nowrap;
  transition: 0.3s;
}

.event-btn i {
  margin-right: 6px;
  font-size: 16px;
}

/* Blue Gradient 1 */
.btn-allergy {
  background: linear-gradient(90deg, #06c3ff, #007bff);
}

/* Blue Gradient 2 */
.btn-mcrd {
  background: linear-gradient(90deg, #0040a8, #005bd1);
}

/* Hover effect */
.event-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* ======================================================= upcoming css end =========================================== */

/* ============================================= award section class start ====================================== */

.mentor-header .header-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-bottom: 4px solid #0a59c5;
}


.pacs-mentor-section {
  /* background: #f7fbff; */
}

.mentor-title {
  color: #0a3a82;
  font-size: 34px;
  font-weight: 700;
}

.criteria-box {
  background: #e3e8ef78;
  border-left: 6px solid #0a59c5;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.criteria-list li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6;
}


/* Winner Card Container */
.winner-card {
    background: #e3e8ef78;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-left: 6px solid #0A59C5;
    transition: 0.3s ease;
    position: relative;
}

/* Hover Effect */
.winner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Winner Badge (Top Right Corner) */
.winner-badge {
    background: #00A4FF;
    color: #fff;
    padding: 6px 18px;
    font-size: 14px;
    border-radius: 25px;
    font-weight: 600;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
}

.blue-badge {
    background: #0649A5;
}

/* Winner Photo */
.winner-photo {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #e8f1ff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Name */
.winner-title {
    font-size: 24px;
    font-weight: 700;
    color: #083d8a;
}

/* Text */
.winner-text {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
}

    .award-section {
    background-image: url('../images/bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/* ============================================= award section class end ====================================== */


/* ========================================= media query for phone or tab ============================================== */

/* Mobile Optimization */
@media(max-width: 768px) {
    .winner-photo {
        width: 140px;
        height: 140px;
        margin-bottom: 20px;
    }
    .winner-title,
    .winner-text {
        text-align: center;
    }
      .hero-slide {
    height: 75vh;
  }

  .hero-overlay h1 {
    font-size: 1.9rem;
  }
  .container {
    flex-direction: column;
    text-align: center;
  }
  .marquee {
    font-size: 0.9rem;
    animation-duration: 25s;
  }
  .badge {
    margin-bottom: 0.5rem;
  }
  .mentor-header .header-img {
    height: 200px;
  }
   #members {
        padding: 60px 0 120px 0 !important; /* reduce height & keep flower visible */
        background-attachment: scroll !important; /* better for mobile */
    }
      .flower-left-bottom {
      width: 100%;
        bottom: -41px;
        left: -10px;        /* align properly */
    }
}
@media (max-width: 991px) {
  .hero {
    min-height: 56vh;
  }

  .hero .glass {
    padding: 24px;
  }
}

/* Responsive fix */
@media (max-width: 576px) {
  .event-btn {
    width: 100%;
  }
}

/* contact us  */
.contact-wrap{
  position: relative;
  padding: 70px 0;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(255,106,0,.25), transparent 60%),
    radial-gradient(1000px 600px at 90% 15%, rgba(106,27,154,.22), transparent 55%),
    linear-gradient(180deg, #fff7fb 0%, #f7fbff 100%);
  overflow:hidden;
}

.contact-wrap:before{
  content:"";
  position:absolute;
  inset:-120px;
  background-image: radial-gradient(rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 18px 18px;
  transform: rotate(8deg);
  opacity:.25;
  pointer-events:none;
}

.contact-hero{
  position: relative;
  z-index:1;
  text-align:center;
  margin-bottom: 28px;
}

.contact-hero .badge{
  background: rgba(106,27,154,.10);
  color: var(--c1);
  border: 1px solid rgba(106,27,154,.15);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

.contact-hero h2{
  font-weight: 900;
  margin: 12px 0 6px;
  color: var(--dark);
}

.contact-hero h2 span{
  background: linear-gradient(90deg, var(--c1), var(--c2));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.contact-hero p{ color: var(--muted); margin:0; }

/* glass cards */
.glass-card{
  position: relative;
  z-index:1;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.6);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(17,24,39,.12);
  overflow:hidden;
}

.card-head-grad{
  padding: 14px 18px;
  color:#fff;
  font-weight: 800;
  background: linear-gradient(90deg, var(--c1), var(--c2));
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.small-chip{
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.contact-info-item{
  display:flex;
  gap:12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(107,114,128,.25);
}
.contact-info-item:last-child{ border-bottom:0; }
.contact-ico{
  width:42px;height:42px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background: linear-gradient(90deg, var(--c1), var(--c2));
  box-shadow: 0 10px 24px rgba(106,27,154,.25);
  font-weight: 900;
}
.contact-info-item .label{ font-weight: 800; color: var(--dark); }
.contact-info-item .val{ color: var(--muted); }

/* form controls */
.form-control, .form-select, textarea{
  border: 1px solid var(--border) !important;
  padding: 12px 14px !important;
}
.form-control:focus, textarea:focus{
  border-color: rgba(106,27,154,.45) !important;
  box-shadow: 0 0 0 .2rem rgba(106,27,154,.12) !important;
}

.input-group-text{
  border-radius: 14px 0 0 14px !important;
  border: 1px solid var(--border) !important;
  background: rgba(106,27,154,.06) !important;
  font-weight: 800;
  color: var(--c1);
}

/* button */
.btn-gradient{
  border:0;
  color:#fff !important;
  font-weight: 900;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--c1), var(--c2));
  box-shadow: 0 16px 40px rgba(255,106,0,.28);
  transition: .25s ease;
}
.btn-gradient:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(106,27,154,.30);
}

/* map */
.map-frame{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(229,231,235,.9);
  box-shadow: 0 12px 28px rgba(17,24,39,.10);
}

/* mobile spacing */
@media (max-width: 576px){
  .contact-wrap{ padding: 50px 0; }
}

/* ========================================= media query for phone or tab ============================================== */

