@charset "utf-8";
/* CSS Document */

.site-body {
  min-height: 100vh;
  background-color: rgb(249, 219, 238);
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

 @font-face {
        font-family: Inter;
        font-weight: 600;
        src: url("de0f26b20c7d4078e8a2e759168409443818bfb2.woff2")
          format("woff2");
      }
 @font-face {
        font-family: Inter;
        font-weight: 500;
        src: url("6edadb43781cd767dad7a489f4419cda83713f8e.woff2")
          format("woff2");
      }

.site-header .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(132, 4, 55, 0.95);
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 2px rgba(246, 210, 210, 0.05);
  z-index: 50;
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* =========================
   Students Life Block
========================= */
.students-life-block {
  padding: 40px 20px;
  background-color: rgb(249, 219, 238);
}
.students-life-block section {
  display: block;
}

.highlights-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.highlight-card {
  background: #f9f9f9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
   display:grid;
}


.highlight-card:hover {
  transform: translateY(-5px);
}

.highlight-image img {
  width: 100%;
  height: auto;
  display: block;
}

.highlight-content {
  padding: 15px;
  text-align: center;
}
.highlight-content h5 {
  font-size: 1.2rem;
  color: #640612;
  margin-bottom: 10px;
}
.highlight-content p {
  font-size: 0.95rem;
  color: #333;
}

@media (max-width: 992px) {
  .highlights-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .highlights-wrapper { grid-template-columns: 1fr; }
  .footer-16 { font-size: 14px; padding: 30px 10px; }
  .footer-16 .sitename { font-size: 24px; }
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.navbar-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem; 
}


.logo {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-image: linear-gradient(to bottom right, #c00647, #8b4513);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo .icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 0.50rem;
  color: #fff;
}


.site-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
  color: white;
  margin: 0;
}
.site-subtitle {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(237, 185, 185);
  margin: 0;
}


.navbar-links {
  display: none;
  gap: 1.5rem;
  align-items: center;
}
.navbar-links li {
  list-style: none;
}
.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(233, 174, 24);
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
.nav-link:hover {
  color: rgb(237, 228, 206);
}
.nav-link.active {
  color: rgb(248, 236, 207);
  border-bottom: 2px solid rgb(194, 154, 58);
}


.navbar-toggle {
  display: block;
  padding: 0.5rem;
  background:none;
  border: none;
}
.navbar-toggle .icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  color: rgb(238, 241, 245);
}

@media (min-width: 768px) {
  .navbar-links { display: flex; }
  .navbar-toggle { display: none; }
}


.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.navbar-links.show {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  background: rgb(169, 31, 72);
  width: 200px;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* =========================
   HERO SECTION
========================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  width: 100%;
  
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 1.2s ease-in-out;
}

.hero-slide.current {
  transform: translateX(0) scale(1.05);
  z-index: 1;
}

.hero-slide.incoming {
  transform: translateX(100%) scale(1);
  z-index: 2;
}


.hero__background {
  display: flex;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide--active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero__slide img {
    object-fit: contain;
    transform: scale(1.6);

  }
}

.hero__overlay {
  position: absolute;
  inset: 0;

}

.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 1rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 5em;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.5rem;
  border-radius: 70px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: white;
  font-size: 0.875rem;
  font-weight: 300;
}

.hero__title {
  font-size: 40px;
  font-weight: 700;
  color: rgb(180, 13, 63);
  margin-top: 4em;
  margin-bottom: 20px;
  line-height: 1;
  text-shadow: 2px 2px 3px black;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 40px;
  }
}

@media (min-width: 568px) {
  .hero__badge { margin-top: 3rem; }
}

.hero__title .highlight {
  color: rgb(236, 203, 13);
}

.hero__subtitle {
  font-size: 1rem;
  line-height: 1rem;
  max-width: 50rem;
  margin: 10px auto 0.5rem;
  color: black;
  font-weight: 250;
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1rem;
    line-height: 1rem;
  }
}


@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}


.icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}

.icon1 {
  width: 1.25rem;
  height: 1.25rem;
  color: rgb(248 232 150);
}

.icon-chevron {
  width: 2rem;
  height: 2rem;
}
.btn {
  border: none;
  outline: none;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}


.about-section {
  padding: 6rem 1rem;
  background: linear-gradient(to bottom right, #fceaf4, #fce2e2, #ead7fe);
}
.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}


.about-header {
  text-align: center;
  margin-bottom: 4rem;
}
.about-header .label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #fef9e7, #fce7f3);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  color: rgb(193, 60, 75);
  font-size: 0.875rem;
}
.about-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: rgb(160, 50, 63);
  margin: 2rem 0;
}
.about-header p {
  font-size: 1.25rem;
  color: rgb(55, 65, 81);
  line-height: 1.75rem;
  max-width: 56rem;
  margin: 0 auto;
}


.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.about-content figure {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
.about-content figure img {
  width: 100%;
  height: 350px;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  border: 4px solid #fff;
}
.about-content h3 {
  display: flex;
  align-items: center;
  font-size: 1.875rem;
  font-weight: 700;
  color: rgb(160, 50, 63);
  margin-bottom: 2rem;
}
.about-content p {
  color: rgb(55, 65, 81);
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
}


.about-values {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-content { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: repeat(3, 1fr); }
}

.card {
  text-align: center;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  background: #fff;
}


.card.gold {
  background: linear-gradient(to bottom right, rgb(254, 252, 247), #fdf2f8 );
}


.card.green {
  background: linear-gradient(to bottom right, rgb(236, 253, 246), rgb(240, 253, 250));
}


.card.burgundy {
  background: linear-gradient(to bottom right,rgb(251, 245, 254), rgb(252, 241, 248));
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(160, 50, 63);
  margin-bottom: 1.5rem;
}
.card p {
  color: rgb(55, 65, 81);
  line-height: 1.625;
}


.icons { width: 1rem; height: 1rem; }
.icon-g { width: 2rem; height: 2rem;  margin-right: 0.75rem; color: rgb(212 165 116); }
.icon-w { width: 1rem; height: 1rem; color: rgb(255 255 255); }
.icon-w2 { width: 3rem; height: 3rem; color: rgb(255 255 255); }
.icon-s { width: 1.25rem; height: 1.25rem; margin-right: 0.5rem; }
.icon-lg { width: 2rem; height: 2rem; margin-right: 0.75rem; color: rgb(212 165 116); }
.icon-lg2 { width: 2rem; height: 2rem; color:  rgb(255 255 255); }
.icon-circle {
  width: 5rem; height: 5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  box-shadow: 0 8px 12px rgba(0,0,0,0.1);
}
.icon-circle.gold { background: linear-gradient(to bottom right, #f2d967, #d4a574); }
.icon-circle.green { background: linear-gradient(to bottom right, #10b981, #2d5a3d); }
.icon-circle.burgundy { background: linear-gradient(to bottom right, #e2727a, #8b4513); }
.icon-circle svg { color: #fff; }

.community-section {
  padding: 6rem 1rem;
  background: linear-gradient(to bottom right, #fbd4d8, #fdc8e5, #f9f5d2);
}

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.community-header {
  text-align: center;
  margin-bottom: 4rem;
}

.community-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #fce7f3, #fef9e7);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  color: rgb(193, 60, 75);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.community-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: rgb(160, 50, 63);
  margin-bottom: 2rem;
}

.community-header p {
  font-size: 1.25rem;
  color: rgb(55, 65, 81);
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.625;
  font-weight: 300;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .community-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.community-benefits h3 {
  display: flex;
  align-items: center;
  font-size: 1.875rem;
  font-weight: 700;
  color: rgb(160, 50, 63);
  margin-bottom: 2rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefits-list .icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-top: 0.25rem;
}

.icon.gold { background: linear-gradient(to bottom right, #f2d967, #d4a574); }
.icon.green { background: linear-gradient(to bottom right, #34d399, #10b981); }
.icon.burgundy { background: linear-gradient(to bottom right, #c13c4b, #a0323f); }

.benefits-list h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgb(160, 50, 63);
  margin-bottom: 0.75rem;
}

.benefits-list p {
  color: rgb(75, 85, 99);
  line-height: 1.625;
}

.community-cta {
  background: linear-gradient(to bottom right, #fff, #fdf2f8);
  border: 1px solid #fce7f3;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  text-align: center;
}

.community-cta .cta-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #f2d967, #f472b6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.community-cta h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: rgb(160, 50, 63);
  margin-bottom: 1.5rem;
}

.community-cta p {
  color: rgb(75, 85, 99);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.625;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  background: linear-gradient(to right, #f2d967, #f472b6);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  width: 90%;

}


.cta-button:hover {
  transform: scale(1.03);
}

.community-cta small {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgb(107, 114, 128);
}


.mentorship-section {
  padding: 6rem 1rem;
  background: linear-gradient(to bottom right, #f0e3fd, #f7e3e3, #fde0f0);
}

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}


.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(to right, #f3e8ff, #fce7f3);
  color: #c13c4b;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #a0323f;
  margin-bottom: 2rem;
}

.section-header p {
  max-width: 56rem;
  margin: 0 auto;
  font-size: 1.25rem;
  color: #374151;
  line-height: 1.6;
  font-weight: 300;
}


.mentorship-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .mentorship-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mentorship-card {
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}


.mentorship-card.gold {
  background: linear-gradient(to bottom right, #fefdf6, #fdf2f8);
  border: 1px solid #fef9e7;
}

.mentorship-card.emerald {
  background: linear-gradient(to bottom right, #ecfdf5, #f0fdfa);
  border: 1px solid #d1fae5;
}

.mentorship-card.burgundy {
  background: linear-gradient(to bottom right, #faf5ff, #fdf2f8);
  border: 1px solid #ede9fe;
}

.mentorship-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #a0323f;
  margin-bottom: 1.5rem;
}

.mentorship-card p {
  color: #374151;
  line-height: 1.6;
  font-size: 1.125rem;
}


.icon-wrapper {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.gold .icon-wrapper {
  background: linear-gradient(to bottom right, #f2d967, #d4a574);
}

.emerald .icon-wrapper {
  background: linear-gradient(to bottom right, #10b981, #2d5a3d);
}

.burgundy .icon-wrapper {
  background: linear-gradient(to bottom right, #e2727a, #8b4513);
}

.icon-lgg {
  width: 2rem;
  height: 2rem;
  color: #fff;
}


.mentorship-cta {
  background: linear-gradient(to right, #8b4513, #db2777, #C3943E);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .mentorship-cta {
    padding: 4rem;
  }
}

.cta2-icon {
  margin-bottom: 1.5rem;
}

.icon-xl {
  width: 4rem;
  height: 4rem;
  opacity: 0.9;
  margin: 0 auto;
}

.icon-hp {
  width: 5.4rem;
  height: 5.4rem;
  opacity: 0.9;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}


.mentorship-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.mentorship-cta p {
  max-width: 56rem;
  margin: 0 auto 2.5rem;
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.95;
}

.cta2-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta2-buttons {
    flex-direction: row;
  }
}

.btn2-primary,
.btn2-secondary {
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn2-primary {
  background: #fff;
  color: #a0323f;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border: none;
  outline: none;
}

.btn2-primary:hover {
  background: #fefdf6;
  transform: scale(1.05);
}

.btn2-secondary {
  border: 2px solid #fff;
  background: #DB4975;
  color: #fff;
}

.btn2-secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.05);
}


.events-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom right, #ccd8fd, #e6d4f9, #fbd2e8);
}

.container2 {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.sec-header {
  text-align: center;
  margin-bottom: 4rem;
}

.sec-header .badge2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #e0e7ff, #f3e8ff);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  color: #c13c4b;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.sec-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #a0323f;
  margin-bottom: 2rem;
}

.sec-header p {
  font-size: 1.25rem;
  color: #374151;
  line-height: 1.625;
  font-weight: 300;
  max-width: 56rem;
  margin: 0 auto;
}

.events-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.event-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-left: 6px solid transparent;
  transition: box-shadow 0.3s ease;
}

.event-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
              0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.event-card header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.event-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #a0323f;
}

.events-grid h3 {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #a0323f;
}

.tag {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: #f9fafb;
}

.gold-tag { background: linear-gradient(to right, #fef9e7, #fcf2c4); color: #b58900; }
.emerald-tag { background: linear-gradient(to right, #d1fae5, #a7f3d0); color: #047857; }
.burgundy-tag { background: linear-gradient(to right, #fdeeee, #fcd5d5); color: #c13c4b; }

.event-card p {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.625;
}

.event-date {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #6b7280;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
  margin-right: 0.25rem;
}

.category-grid {
  display: grid;
  gap: 1rem;
}

.category-card {
  padding: 2rem;
  border-radius: 1rem;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.category-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
              0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.gold-gradient { background: linear-gradient(to right, #EED168, #D4A773); }
.emerald-gradient { background: linear-gradient(to right, #34d399, #10b981); }
.burgundy-gradient { background: linear-gradient(to right, #EC979C, #E2747C); }
.purple-gradient { background: linear-gradient(to right, #c084fc, #ec4899); }

.category-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.category-card p {
  opacity: 0.95;
  line-height: 1.625;
}


.view {
  margin-top: 2rem;
  text-align: center;
}

.calendar-btn {
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  background: linear-gradient(to right, #F2C46E, #F475AF);
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: none;
  outline: none;
}

.calendar-btn:hover {
  background: linear-gradient(to right, #d4a574 , #ec4899);
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}


.icon-bg {
  width: 1rem;
  height: 1rem;
}

.icon-ev {
  width: 2rem;
  height: 2rem;
  margin-right: 0.25rem;
  color: #d4a574;
}

.events-grid h3 {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.events-grid .event-card {
  margin-bottom: 1.75rem;
}
.events-grid .event-card:last-child {
  margin-bottom: 0;
}

/*-----Student Life Page---*/
.vid {
  display:block;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
}

.play {
  display: inline-block;
  width:30%;
  text-align: center;
  padding: 50px ;
}

@media (max-width: 768px) {
  .vid {
    display: grid;
    position:relative;
    flex-wrap: wrap;
    justify-content: auto;
    
  }
}

/*-----student life end ------*/

.activity-card {
    margin: 30px;
  
    
}

.contact-section  {
  padding: 6rem 1rem;
  background: linear-gradient(to bottom right, #c13c4b, #be185d, #a47d31);
  color: #fff;
}

.con-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.sec-header {
  text-align: center;
  margin-bottom: 4rem;
}

.badge3 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.titlez {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
}


.subtitlez {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.625;
  font-weight: 300;
}


.grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.con-subtitlez {
	display: flex;
	align-items: center;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
	}

.options-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.option-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.con-box {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.option-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.option-text {
  font-size: 1.125rem;
  opacity: 0.95;
}

.support-box {
  margin-top: 3rem;
}

.support-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.support-text {
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.con-button {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-don,
.btn-part {
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-don {
  background: #fff;
  color: #a0323f;
  border: none;
}

.btn-don:hover {
  background: #fefdf6;
  transform: scale(1.05);
}

.btn-part {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.btn-part:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.sub-button {
  padding: 1rem 2rem;
  background-color: rgb(255 255 255);
  border-radius: 9999px;
  color: rgb(160 50 63);
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  width: 100%;
  border: none;
}
	
.sub-button:hover {
  background-color: rgb(254 253 246);
  transform: scale(1.05);
}

.submit-text {
	display: flex;
	align-items: center;
	justify-content: center;
	}

.contact-form {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.form-group input,
textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  backdrop-filter: blur(4px);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

textarea {
  resize: none;
}

.con-icon {
  width: 1rem;
  height: 1rem;
}

.con-icon2 {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}

.con-icon3 {
  width: 2rem;
  height: 2rem;
}

.con-icon4 {
  width: 2rem;
  height: 2rem;
  margin-right: 0.75rem;
}

.footer {
  background-image: linear-gradient(to right, #872C39, #97303C, #72502B);
  color:white;
  padding: 3rem 1rem;
  display:block;
  position: relative;
  top: 50%;
  margin: auto;
}

.footer__container {
  max-width: 72rem;
  margin: auto;
  text-align: center;
  
}

.footer__logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer__logo-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to bottom right, #f2d967, #ec4899);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1),
              0 4px 6px -4px rgba(0,0,0,0.1);
}
.footer__logo-icon .icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0.50rem;
  color: #fff;
}

.footer__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-right: 10rem;
}

.footer__subtitle {
  font-size: 0.875rem;
  opacity: 0.9;
  margin: 0;
  
}

.footer__tagline p {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.95;
  max-width: 48rem;
  margin: 0 auto 2rem;
}

.footer__legal {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.footer__legal p {
  font-size: 1.125rem;
  opacity: 0.8;
  margin-top: 1em;
  text-align: center;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.footer__social-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fefafa
}

.footer__social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 0 auto;
}

.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    background: #ffffff1a;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.social-circle:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, .1), transparent);
    opacity: 0;
    transition: opacity .3s ease
}

.social-circle:hover:before {
    opacity: 1
}

.social-circle:hover {
    background: #fff3;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 30px #0003
}

.social-circle.twitter:hover {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    box-shadow: 0 10px 30px #1da1f266
}

.social-circle.facebook:hover {
    background: linear-gradient(135deg, #4267b2, #365899);
    box-shadow: 0 10px 30px #4267b266
}

.social-circle.instagram:hover {
    background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045);
    box-shadow: 0 10px 30px #e4405f66
}

.social-circle.linkedin:hover {
    background: linear-gradient(135deg, #0077b5, #005885);
    box-shadow: 0 10px 30px #0077b566
}

.social-circle.youtube:hover {
    background: linear-gradient(135deg, red, #c00);
    box-shadow: 0 10px 30px #f006
}

.social-circle.email:hover {
    background: linear-gradient(135deg, #34d399, #10b981);
    box-shadow: 0 10px 30px #34d39966
}

.social-circle svg {
    width: 1.25rem;
    height: 1.25rem;
    z-index: 1
}

@media (max-width: 768px) {
    .footer__social-links {
        gap: 1rem
    }

    .social-circle {
        width: 3rem;
        height: 3rem
    }

    .social-circle svg {
        width: 1rem;
        height: 1rem
    }
}


/* About Us Page */


.about-container {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .about-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .about-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.about-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.about-section-hero {
  color: #fff;
  text-align: center;
  background-image: linear-gradient(to right, #8b4513, #db2777, #c29a3a);
}

.about-section-light {
  background-image: linear-gradient(to bottom right, #fbebcb, #fac8e3, #ddc1f8);
  color: #374151;
}


.about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
  font-size: 0.875rem;
}

.about-hero__title {
  font-weight: 700;
  margin: 1.25rem 0 2rem;
  font-size: 3rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .about-hero__title {
    font-size: 3.75rem;
  }
}

.hero__lead {
  font-size: 1.25rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
  line-height: 1.625;
}

.lead-highlight {
  color: #f8e896;
}

.story__header {
  text-align: center;
  margin-bottom: 4rem;
}

.story__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  background-image: linear-gradient(to right, #fef9e7, #fce7f3);
  color: #c13c4b;
}

.story__title {
  font-weight: 700;
  font-size: 2.25rem;
  margin-top: 1rem;
  color: #a0323f;
}

.story__content {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #374151;
}

.story__content p + p {
  margin-top: 2rem;
}


.about-icon {
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.mission-section {
  padding: 3rem 1rem;
  background: linear-gradient(to bottom right, #f9dcde, #fadeee, #fdf9dd);
}

@media (min-width: 640px) {
  .mission-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .mission-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.mission-container {
  max-width: 72rem;
  margin: 0 auto;
}

.mission-header {
  text-align: center;
  margin-bottom: 4rem;
}

.mission-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #ffe4e6, #fef9e7);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  color: rgb(193, 60, 75);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.mission-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: rgb(160, 50, 63);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .mission-title {
    font-size: 3rem;
    line-height: 1;
  }
}

.mission-description {
  font-size: 1.35rem;
  font-weight: 300;
  color: #374151;
  line-height: 1.625;
  max-width: 56rem;
  margin: 0 auto;
}

.mission-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mission-card {
  background: white;
  border-radius: 1.5rem;
  border: 1px solid rgb(252, 231, 243);
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -4px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.2s ease;
  transform: scale(1);
  width: 80%;
margin: auto;
}

.mission-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
              0 8px 10px -6px rgba(0, 0, 0, 0.1);
}


.mission-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mission-icon .m-icon { width: 2rem; height: 2rem;  color: rgb(255 255 255); }

.mcon-gold {
  background: linear-gradient(to bottom right, #f2d967, #d4a574);
}
.mcon-emerald {
  background: linear-gradient(to bottom right, #34d399, #10b981);
}
.mcon-pink {
  background: linear-gradient(to bottom right, #f472b6, #ec4899);
}
.mcon-burgundy {
  background: linear-gradient(to bottom right, #ed9ca0, #e2727a);
}
.mcon-purple {
  background: linear-gradient(to bottom right, #c084fc, #a855f7);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgb(160, 50, 63);
  margin-bottom: 1rem;
}

.card-text {
  color: #374151;
  line-height: 1.625;
  font-size: 1.09rem;
}

.card-wide {
  grid-column: span 2;
}

@media (min-width: 1024px) {
  .card-wide {
    grid-column: span 1;
  }
}




/* OUR TEAM PAGE */

.team-section {
      padding: 6rem 1rem;
      background: linear-gradient(to bottom right, #fef9f3, #fdf2f8);
    }

    .team-icon {
  width: 1.50rem;
  height: 1.50rem;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1rem;
  background-image: linear-gradient(to right, #fef9e7, #fce7f3);
  color: #c13c4b;
}

.team__title {
  font-weight: 700;
  font-size: 2.40rem;
  margin-top: 1.5rem;
  color: #a0323f;
  margin-bottom: 0.70em;
}

    .team-intro {
  max-width: 700px;
  margin: 0 auto 5rem auto;
  font-size: 1.1rem;
  color: #444;
  text-align: center;
  line-height: 1.6;
}

.executive-divider {
    text-align: center;
    margin: 4rem 0;
    position: relative;
}

.executive-divider:before {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(190, 24, 93, .3), transparent);
    z-index: 1;
}


.divider-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #be185d, #f59e0b);
    border-radius: 50%;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px #be185d4d;
    position: relative;
    z-index: 2
}

.executive-title{
    font-size: 2.5rem;
    font-weight: 700;
    color: #be185d;
    background: linear-gradient(135deg, #be185d, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem
}

.executive-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6
}

.flower-divider {
    margin-top: 6rem;
    margin-bottom: 4rem;
    position: relative;
}

.flower-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.flower-line::before,
.flower-line::after {
    content: "";
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(190, 24, 93, 0.4), transparent);
}

.flower-icon {
    font-size: 1.5rem;
    color: #be185d;
    animation: spin-flower 8s linear infinite;
}

@keyframes spin-flower {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.team-intro2 {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.7
}

.team-grid2 {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

.team-card2 {
    background: linear-gradient(135deg, #ffffffe6, #ffffffb3);
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px #0000001a;
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}

.team-card2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #be185d, #f59e0b, #10b981);
    border-radius: 25px 25px 0 0;
}

.team-card2:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px #00000026;
}

.team-avatar2{
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid transparent;
    background: linear-gradient(135deg, #be185d, #f59e0b, #10b981);
    padding: 3px;
}

.team-avatar2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform .4s ease;
}

.team-card2:hover .team-avatar2 img {
    transform: scale(1.1);
}

.avatar-overlay2 {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(135deg, #be185d, #f59e0b);
    color: #fff;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 4px 12px #0003;
}

.team-info2 {
    margin-bottom: 2rem;
}

.team-name2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #be185d;
    margin-bottom: .5rem;
}

.team-role2 {
    font-size: 1rem;
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: .75rem;
}

.team-specialization2 {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1rem;
    font-style: italic;
}

.team-location2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .9rem;
    color: #10b981;
    background: #10b9811a;
    padding: .5rem 1rem;
    border-radius: 20px;
    margin: 0 auto;
    max-width: fit-content;
}

.view-more-btn2 {
    background: linear-gradient(135deg, #be185d, #f59e0b);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all .3s ease;
    box-shadow: 0 8px 20px #be185d4d;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.view-more-btn2:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    transition: left .5s ease;
}

.view-more-btn2:hover:before {
    left: 100%;
}

.view-more-btn2:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px #be185d66;
}

.profile-overlay2{
    position: fixed;
    inset: 0;
    background: #000c;
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.profile-overlay2.active {
    display: flex;
}

.profile-close2 {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    background: linear-gradient(135deg, #be185d, #f59e0b);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px #0000004d;
    transition: all .3s ease;
    z-index: 10000
}

.profile-close2:hover {
    transform: scale(1.1) rotate(90deg);
}

.profile-content2 {
    background: linear-gradient(135deg, #fffffff2, #ffffffe6);
    max-width: 700px;
    width: 100%;
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 25px 50px #0003;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .3);
    position: relative;
    overflow: hidden;
}

.profile-content2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #be185d, #f59e0b, #10b981);
    border-radius: 25px 25px 0 0;
}

.profile-avatar-large2 {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    border: 6px solid transparent;
    background: linear-gradient(135deg, #be185d, #f59e0b, #10b981);
    padding: 4px;
    box-shadow: 0 15px 35px #0003;
    margin-top: 12rem;
}

.profile-content2 h2 {
    font-size: 2.5rem;
    color: #be185d;
    margin-bottom: .5rem;
    background: linear-gradient(135deg, #be185d, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-content2 .role {
    font-size: 1.3rem;
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.profile-content2 .specialization {
    font-size: 1rem;
    color: #10b981;
    font-style: italic;
    margin-bottom: 2rem;
}

.profile-content2 .bio2 {
    color: #4b5563;
    line-height: 1.8;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    text-align: justify;
}

.profile-details2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-card2 {
    background: linear-gradient(135deg, #be185d1a, #f59e0b1a);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(190, 24, 93, .2);
}

.detail-card2 h4 {
    color: #be185d;
    font-weight: 600;
    margin-bottom: .5rem;
    font-size: 1rem;
}

.detail-card2 p {
    color: #6b7280;
    margin: 0;
    font-size: .95rem;
}

.social-links2 {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-link2 {
    background: linear-gradient(135deg, #be185d, #f59e0b);
    color: #fff;
    padding: .75rem;
    border-radius: 50%;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 4px 12px #0003;
}

.social-link2:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px #0000004d;
}

@media (max-width: 768px) {
    .team__title2 {
        font-size: 2.5rem;
    }

    .team-grid2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-card2 {
        padding: 2rem;
    }

    .team-avatar2 {
        width: 120px;
        height: 120px;
    }

    .profile-content2 {
        padding: 2rem;
        margin: 1rem;
    }

    .profile-avatar-large2 {
        width: 150px;
        height: 150px;
    }

    .profile-content2 h2 {
        font-size: 2rem;
    }

    .profile-details2 {
        grid-template-columns: 1fr;
    }
}



/* Event Page */


.esection-header {
    text-align: center;
    margin-bottom: 4rem
}

.esection-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(to right, #fce7f3, #fef9e7);
    padding: .5rem 1.5rem;
    border-radius: 9999px;
    color: #c13c4b;
    font-size: .875rem;
    font-weight: 500;
    margin-bottom: 1rem
}

.events-section {
    padding: 8rem 1rem 6rem;
    background: linear-gradient(to bottom right, #eef2ff, #faf5ff, #fdf2f8);
}

.events-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.event-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px #0000001a;
    transition: transform .2s ease;
}

.event-card:hover {
    transform: translateY(-2px);
}

.event-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #8b4513, #db2777, #c29a3a);
  color: #fff;
  padding: 3rem;
}

.event-card.featured .event-title {
  color: #fff;
  font-size: 1.5rem;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #a0323f;
}

.event-tag {
    padding: .25rem .75rem;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 500;
    background: linear-gradient(to right, #fef9e7, #fcf2c4);
    color: #b58900;
}

.event-description {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-datez {
    display: flex;
    align-items: center;
    font-size: .875rem;
    color: #6b7280;
    gap: .5rem;
}

.some-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #a0323f;
    margin-bottom: 2rem
}

.section-description {
    font-size: 1.25rem;
    color: #374151;
    max-width: 56rem;
    margin: 0 auto;
    line-height: 1.625;
    font-weight: 300
}

.featured-tag {
  background: #fff3;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.featured-event-content h4 {
  font-size: 2rem;
  margin: 1rem 0;
  color: #fff;
}

.featured-event-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  color: #fff;
}

.event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

.event-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.some-btn {
  background: transparent;
  color: #fff;
  border: 2px solid white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.some-btn:hover {
  background: #fff;
  color: #a0323f;
}

.some-btn2 {
    background: linear-gradient(to right, #f2d967, #d4a574);
    color: #fff;
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all .3s ease;
    margin-top: 1rem
}

.some-btn2:hover {
    background: linear-gradient(to right, #d4a574, #c29a3a);
    transform: translateY(-1px)
}

.event-speakers {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}

.speaker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.speaker img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}

.event-highlights {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.highlight-tag {
  background: #ecfdf5;
  color: #047857;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.event-format {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}

.format-badge {
  background: #fef3c7;
  color: #92400e;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.event-tech {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.tech-tag {
  background: #e0e7ff;
  color: #4338ca;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.event-benefits {
  margin: 1rem 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.benefit-item svg {
  color: #10b981;
}

.event-countdown {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
  min-width: 4rem;
}

.countdown-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #a0323f;
}

.countdown-label {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
}

.filter-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #4b5563;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #a0323f;
  color: #fff;
  border-color: #a0323f;
}

@media (max-width: 768px) {
  .event-card.featured {
    grid-column: span 1;
    padding: 2rem;
  }

  .featured-event-content h4 {
    font-size: 1.5rem;
  }

  .event-details {
    flex-direction: column;
    gap: 1rem;
  }

  .event-actions {
    flex-direction: column;
  }
}


/* =========================
   Back to Top Button
========================= */
#backToTop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #640612;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
#backToTop:hover {
  background-color: #c71f33;
  transform: translateY(-3px);
}
