/*events*/
/* Year Headings */
.events-year-section {
  margin-top: 4rem;
}

.events-year-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.events-year-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #3b82f6;
  margin: 0.5rem auto 0 auto;
  border-radius: 2px;
}

/* Responsive Events Section */
@media (max-width: 768px) {
  .event-content h3 {
    font-size: 1.1rem;
  }

  .event-content p {
    font-size: 0.9rem;
  }

  .event-date,
  .event-time,
  .event-location {
    font-size: 0.85rem;
    flex-wrap: wrap;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    margin: 0 auto;
    max-width: 90%;
  }

  .event-category {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }

  .event-status {
    font-size: 0.7rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-weight: 600;
  }
}

/* Optional: Make status look good for both 'Completed' and 'Upcoming' */
.event-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #10b981;
  /* Green for completed */
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.event-status.upcoming {
  background-color: #facc15;
  /* Yellow for upcoming */
  color: #1e293b;
}

.event-card {
  opacity: 0.95;
}

.event-card:hover {
  opacity: 1;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  background-color: #e2e8f0;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 600;
  color: #1e293b;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #3b82f6;
  color: white;
}




/* Reset and Base Styles */



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1e293b;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Loader Styles */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3730a3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
}

.spinner-outer {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid #3b82f6;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

.spinner-inner {
  position: absolute;
  top: 8px;
  left: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 4px solid #6366f1;
  border-bottom: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1.5s linear infinite reverse;
}

.loader-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-logo {
  margin-bottom: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-logo img {
  filter: brightness(0) invert(1);
}

.loader-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.loader-dots .dot {
  width: 12px;
  height: 12px;
  background: #3b82f6;
  border-radius: 50%;
  animation: bounce 1.4s ease-in-out infinite both;
}

.loader-dots .dot:nth-child(1) {
  animation-delay: -0.32s;
}

.loader-dots .dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

/* Navigation Styles */
.navbar {
  /* position: fixed;
  top: 0;
  left: 0;
  right: 0; */
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: rgb(0, 1, 44, 0.95);
}

.navbar.navbar-scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.nav-brand:hover {
  transform: scale(1.05);
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.brand-text p {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: white;

}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.btn-outline {
  background: transparent;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.btn-outline:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.dev-btn {

  margin: 4rem 0rem -1rem 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Section */
.hero {

  min-height: 76vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3730a3 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {

  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-title {
  font-size: 1rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.t-in {

  font-size: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 16px;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  animation: fadeInUp 0.8s ease 1s both;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(255, 255, 255);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #94a3b8;
}

.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-card {
  min-width: 100%;
  height: 385px;
  /* background: rgba(59, 130, 246, 0.1); */
  /* border: 1px solid rgba(59, 130, 246, 0.3); */
  border-radius: 24px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-content {
  text-align: center;
  color: white;
}

.card-icon {
  font-size: 4rem;
  color: #3b82f6;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #85b4ff;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
  padding: 10px;
}

.floating-element img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(214deg) brightness(97%) contrast(87%);
}

.element-1 {
  top: -20px;
  right: -20px;
  animation: float 3s ease-in-out infinite;
}

.element-2 {
  bottom: -20px;
  left: -20px;
  animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.group-image {
  width: 100%;
  height: 100%;
  border-radius: 35px;
  object-fit: cover;

}

/* Navigation buttons */
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.slider-wrapper:hover .nav-button {
  opacity: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}


/* About Section */
.about {
  padding: 6rem 0;
  background: #f8fafc;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image {
  width: 100%;
  height: 400px;
  /* background: linear-gradient(135deg, #3b82f6, #6366f1); */
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.image-overlay {
  text-align: center;
  color: white;
}

.image-overlay i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.image-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.about-badge:hover {
  transform: scale(1.05);
}

.badge-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
}

.badge-text {
  font-size: 0.9rem;
  color: #64748b;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #dbeafe;
  color: #1d4ed8;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.text-primary {
  color: #3b82f6;
}

.section-description {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature {
  text-align: center;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #dbeafe;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #1d4ed8;
}

.feature h4 {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.9rem;
  color: #64748b;
}

/* Domains Section */
.domains {
  padding: 6rem 0;
  background: #0f172a;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.domains .section-badge {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

.domains .section-title {
  color: white;
}

.domains .section-description {
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.domain-card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.domain-card:hover {
  border-color: #3b82f6;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.domain-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  transition: transform 0.3s ease;
}

.domain-card:hover .domain-icon {
  transform: scale(1.1);
}

.domain-card[data-color="blue"] .domain-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.domain-card[data-color="orange"] .domain-icon {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.domain-card[data-color="green"] .domain-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.domain-card[data-color="red"] .domain-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.domain-card[data-color="purple"] .domain-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.domain-card[data-color="pink"] .domain-icon {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.domain-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.domain-card p {
  color: #94a3b8;
  line-height: 1.6;
}

/* Events Preview Section */
.events-preview {
  padding: 6rem 0;
  background: #f8fafc;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.event-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.1);
}

.event-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #3b82f6;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.event-content {
  padding: 1.5rem;
}

.event-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.event-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.event-content p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.section-footer {
  text-align: center;
  margin-top: 3rem;
}


.vm {

  margin: 5rem;
}

.card-ctn {

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.vision,
.mission {
  box-shadow: 0px 0px 20px 1px rgba(128, 128, 128, 0.563);
  padding: 3rem;
  border-radius: 10px;
  transition: 0.5s ease;
   max-width: 41rem;
  min-height: 312px;
  text-align: justify;

  h2 {

    text-align: center;
    margin: 10px 0;
  }
}

/*  */

.vision:hover,
.mission:hover {
  transform: translateY(-2.5px);
  box-shadow: 0px 9px 20px 1px grey;
}

.icon {

  color: white;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  text-align: center;
  /* padding: 1rem; */
  border-radius: 10px;
  font-size: 1.7rem;
  width: 5rem;
  height: 5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vm-in {

  display: flex;
  justify-content: center;
  align-items: center;
}



/* Page Header */
.page-header {
  padding: 5rem 0 5rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3730a3 100%);
  text-align: center;
  color: white;
}

.page-header-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header-content p {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #cbd5e1;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb i {
  color: #64748b;
}

/* Events Filter */
.events-filter {
  padding: 2rem 0;
  background: white;
  border-bottom: 1px solid #e2e8f0;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid #e2e8f0;
  background: white;
  color: #64748b;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: #3b82f6;
  background: #3b82f6;
  color: white;
}

/* Events Section */
.events-section {
  padding: 4rem 0;
  background: #f8fafc;
}

.events-section .events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.events-section .event-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.event-card{

      max-width: 560px;
    justify-self: center;
}

.event-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.event-status.completed {
  background: #10b981;
  color: white;
}

.event-status.upcoming {
  background: #f59e0b;
  color: white;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.event-meta>div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.9rem;
}

.event-highlights,
.event-speakers,
.event-requirements,
.event-registration,
.event-prizes {
  margin: 1.5rem 0;
}

.event-highlights h4,
.event-speakers h4,
.event-requirements h4,
.event-registration h4,
.event-prizes h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.event-highlights ul {
  list-style: none;
  padding-left: 0;
}

.event-highlights li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #64748b;
}

.event-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.event-stats {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
}

.event-stats .stat {
  text-align: center;
}

.event-stats .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  display: block;
}

.event-stats .stat-label {
  font-size: 0.8rem;
  color: #64748b;
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.prize {
  background: #f1f5f9;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: #1e293b;
}

/* Team Section */

.f-t {

  text-align: center;
}

.f-card {

  display: flex;
  justify-content: center;
  gap: 30px
}



.team-section {
  padding: 4rem 0;
}

.team-section:nth-child(even) {
  background: #f8fafc;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faculty-grid {
  /* max-width: 600px;
  margin: 0 auto; */
}

.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.faculty-card {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 0;
}

.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.faculty-card .member-image {
  height: auto;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .member-overlay {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  background: white;
  color: #1e293b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link1 {
  width: 40%;
  height: 40%;
  background: white;
  color: #1e293b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-2px);
}

.social-link1:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-2px);
}

.member-info {
  padding: 1.5rem;
}

.member-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.member-role {
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.member-year,
.member-department {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.member-description {
  color: #64748b;
  line-height: 1.6;
  margin: 1rem 0;
}

.member-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.expertise-tag {
  background: #f1f5f9;
  color: #475569;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Join Team CTA */
.join-team-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3730a3 100%);
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background: #f8fafc;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-cards {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #64748b;
  line-height: 1.6;
}

.social-media {
  margin-top: 2rem;
}

.social-media h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.social-media .social-links {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-content: space-around;
  align-items: center;
  justify-content: space-between;
}

.social-media .social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
  text-decoration: none;
  color: #64748b;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.social-media .social-link:hover {
  transform: translateX(5px);
  color: #1e293b;
}

.social-media .social-link i {
  width: 20px;
  text-align: center;
}

.social-media .social-link.facebook:hover {
  color: #1877f2;
}

.social-media .social-link.twitter:hover {
  color: #1da1f2;
}

.social-media .social-link.instagram:hover {
  color: #e4405f;
}

.social-media .social-link.linkedin:hover {
  color: #0077b5;
}

.social-media .social-link.github:hover {
  color: #333;
}

.social-media .social-link1 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
  text-decoration: none;
  color: #64748b;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.social-media .social-link1:hover {
  transform: translateX(5px);
  color: #1e293b;
}

.social-media .social-link1 i {
  width: 20px;
  text-align: center;
}

.social-media .social-link1.facebook:hover {
  color: #1877f2;
}

.social-media .social-link1.twitter:hover {
  color: #1da1f2;
}

.social-media .social-link1.instagram:hover {
  color: #e4405f;
}

.social-media .social-link1.linkedin:hover {
  color: #0077b5;
}

.social-media .social-link1.github:hover {
  color: #333;
}

/* Contact Form */
.contact-form-container {
  position: relative;
}

.contact-form-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  width: auto;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #e5e7eb;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
  background: #3b82f6;
  border-color: #3b82f6;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  background: white;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: #f8fafc;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.faq-question i {
  color: #3b82f6;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Footer */
.footer {
  background: #0f172a;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-brand .brand-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.footer-brand .brand-text p {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1;
}

.footer-description {
  color: #94a3b8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-item i {
  color: #3b82f6;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-item p {
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #94a3b8;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}


/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1rem;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    z-index: 10;
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .page-header-content h1 {
    font-size: 2rem;
  }

  .domains-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .faculty-card {
    grid-template-columns: 1fr;
  }

  .about-features {
    /* grid-template-columns: 1fr; */
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .filter-buttons {
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .events-section .events-grid {
    grid-template-columns: 1fr;
  }

  /* Fix for hero badge overlap with navigation in mobile */
  .hero {
    padding-top: 80px;
    /* Add top padding to account for fixed navbar */
  }

  .hero-badge {
    margin-top: 1rem;
    /* Add extra top margin for the badge */
  }
}

@media (max-width: 480px) {
  .f-card {

  display: grid;
  padding: 1rem;
}

  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 22px;
  }

  .page-header-content h1 {
    font-size: 1.75rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 1rem 1.5rem;
  }

  .domain-card,
  .event-card,
  .team-card {
    margin-bottom: 1rem;
  }

  .contact-form-card {
    padding: 1.5rem;
  }

  .hero-visual {
    margin-top: 2rem;
  }

  .hero-card {
    height: 300px;
  }

  .floating-element {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .card-ctn {
    display: grid;
  }

  .vision,
  .mission {

    padding: 21px;
  }

  .vm {

    margin: 22px;
  }

  .element-2 {

    bottom: 74px;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

.slide-up {
  animation: slideUp 0.6s ease-in-out;
}

.scale-in {
  animation: scaleIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Smooth scrolling for all browsers */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Selection styles */
::selection {
  background: #3b82f6;
  color: white;
}

::-moz-selection {
  background: #3b82f6;
  color: white;
}

/* Responsive styles for laptop (1024px) */
    @media (max-width: 1024px) {
        .container {
            max-width: 900px;
            padding: 0 24px;
        }
        .hero-content {
            flex-direction: column;
            gap: 2rem;
        }
        .hero-text {
            width: 100%;
        }
        .hero-visual {
            width: 100%;
            margin: 0 auto;
        }
        .card-ctn {
            flex-direction: column;
            gap: 2rem;
        }
        .about-content {
            flex-direction: column;
            gap: 2rem;
        }
        .about-visual, .about-text {
            width: 100%;
        }

        .about-badge{

          right: -8px;
        }
        .events-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .footer-content {
            flex-wrap: wrap;
            gap: 2rem;
        }

        .hero-buttons{

          justify-content: center;
        }

        .slider-wrapper{

          margin-bottom: 2rem;
        }

        .College_NamePlate>.h1{

            font-weight: 100;
        font-size: 19px;
        margin-top: 3px;
        }
    }
    /* Responsive styles for tablet (768px) */
    @media (max-width: 768px) {
        .container {
            max-width: 100%;
            padding: 0 12px;
        }
        .navbar .nav-container {
            flex-direction: column;
            gap: 1rem;
        }
        .nav-menu {
            flex-direction: column;
            gap: 1rem;
            align-items: flex-start;
        }
        .hero-content {
            flex-direction: column;
            gap: 1.5rem;
        }
        .hero-title {
            font-size: 2rem !important;
        }
        .hero-description {
            font-size: 1rem;
        }
        .hero-buttons {
            flex-direction: column;
            gap: 1rem;
        }
        .slider-wrapper {
            width: 100%;
        }
        .card-ctn {
            flex-direction: column;
            gap: 1.5rem;
        }
        .about-content {
            flex-direction: column;
            gap: 1.5rem;
        }
        .about-visual, .about-text {
            width: 100%;
        }
        .about-image img {
            border-radius: 16px;
        }
        .events-grid {
            grid-template-columns: 1fr;
        }
        .footer-content {
            flex-direction: column;
            gap: 1.5rem;
            text-align: center;
        }
        .footer-brand{

              justify-content: center;
        }
        .footer-section {
            width: 100%;
        }
        .contact-item{

          justify-content: center;
        }        .College_NamePlate > p{

          font-size: 10px;
        }
    }



    @media (max-width: 1440px) and (min-width: 1025px) {
      


      .event-card{

        min-width: 35rem;
      }
    }