/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

/* Additional Utility Classes */
.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.transition-all {
  transition: all 0.3s ease;
}

.transition-colors {
  transition: color 0.3s ease, background-color 0.3s ease;
}

.transition-transform {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-lift:hover {
  transform: translateY(-4px);
}

/* Focus states for better accessibility */
.form-input:focus,
.btn-primary:focus,
.btn-secondary:focus,
.tab-button:focus {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

/* Loading state utility */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #dc2626;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Header Styles */
.header {
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #991b1b;
  text-decoration: none;
}

.nav {
  display: none;
  gap: 2rem;
}

.nav a {
  color: #374151;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: #b91c1c;
}

.menu-button {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
}

.mobile-menu {
  display: none;
  background: white;
  padding: 0.5rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  color: #374151;
  text-decoration: none;
  padding: 0.75rem;
  font-weight: 500;
}

.mobile-menu a:hover {
  color: #b91c1c;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(to bottom right, #7f1d1d, #991b1b, #1e3a8a);
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-in;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeIn 1s ease-in 0.2s both;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  animation: fadeIn 1s ease-in 0.4s both;
}

.btn-primary {
  background: #dc2626;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: #b91c1c;
  transform: scale(1.05);
}

.btn-secondary {
  border: 2px solid white;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-secondary:hover {
  background: white;
  color: #991b1b;
}

.hero-arrow {
  margin-top: 3rem;
  animation: bounce 2s infinite;
}

/* Quick Links Section */
.quick-links {
  padding: 5rem 0;
  background: #f9fafb;
}

.quick-links-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.quick-links h2 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
  text-align: center;
}

.quick-links-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  text-align: center;
  margin-bottom: 4rem;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.quick-link-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  display: block;
}

.quick-link-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.quick-link-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.quick-link-card:hover .quick-link-icon {
  transform: scale(1.1);
}

.icon-red {
  background: #fef2f2;
  color: #dc2626;
}

.icon-blue {
  background: #eff6ff;
  color: #2563eb;
}

.icon-yellow {
  background: #fffbeb;
  color: #d97706;
}

.icon-green {
  background: #f0fdf4;
  color: #16a34a;
}

.quick-link-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.quick-link-card p {
  color: #4b5563;
}

/* Footer */
.footer {
  background: #111827;
  color: white;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-brand {
  grid-column: span 1;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f87171;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #d1d5db;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #d1d5db;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #f87171;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #f87171;
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translateY(0);
  }
  40%,
  43% {
    transform: translateY(-30px);
  }
  70% {
    transform: translateY(-15px);
  }
  90% {
    transform: translateY(-4px);
  }
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero p {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .menu-button {
    display: none;
  }

  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .quick-links-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero h1 {
    font-size: 4.5rem;
  }
}

/* Print styles */
@media print {
  .header,
  .footer,
  .mobile-menu,
  .menu-button {
    display: none !important;
  }

  .hero,
  .about-hero,
  .events-hero,
  .join-hero {
    background: none !important;
    color: #000 !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }
}


/* news */
.news-hero {
        background: linear-gradient(135deg, #1e3a8a, #7f1d1d);
        color: white;
        padding: 5rem 0;
        text-align: center;
      }
      
      .news-hero h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
      }
      
      .news-hero p {
        font-size: 1.25rem;
        opacity: 0.9;
        max-width: 48rem;
        margin: 0 auto;
      }
      
      .news-content {
        max-width: 80rem;
        margin: 0 auto;
        padding: 4rem 1rem;
      }
      
      .news-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
      }
      
      .news-card {
        background: white;
        border-radius: 0.75rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
      }
      
      .news-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
      }
      
      .news-image {
        width: 100%;
        height: 12rem;
        object-fit: cover;
      }
      
      .news-body {
        padding: 1.5rem;
      }
      
      .news-category {
        display: inline-block;
        background: #dc2626;
        color: white;
        padding: 0.25rem 0.75rem;
        border-radius: 9999px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 1rem;
      }
      
      .news-category.announcement {
        background: #2563eb;
      }
      
      .news-category.achievement {
        background: #059669;
      }
      
      .news-title {
        font-size: 1.5rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 0.75rem;
        line-height: 1.3;
      }
      
      .news-excerpt {
        color: #4b5563;
        line-height: 1.6;
        margin-bottom: 1rem;
      }
      
      .news-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.875rem;
        color: #6b7280;
        border-top: 1px solid #e5e7eb;
        padding-top: 1rem;
      }
      
      .news-date {
        font-weight: 500;
      }
      
      .read-more {
        color: #dc2626;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s;
      }
      
      .read-more:hover {
        color: #b91c1c;
      }
      
      .newsletter-signup {
        background: linear-gradient(to right, #fef2f2, #eff6ff);
        padding: 3rem 2rem;
        border-radius: 0.75rem;
        text-align: center;
        margin-top: 3rem;
      }
      
      .newsletter-signup h3 {
        font-size: 1.875rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 1rem;
      }
      
      .newsletter-signup p {
        color: #4b5563;
        margin-bottom: 2rem;
        font-size: 1.125rem;
      }
      
      .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 24rem;
        margin: 0 auto;
      }
      
      .newsletter-input {
        padding: 0.75rem 1rem;
        border: 1px solid #d1d5db;
        border-radius: 0.5rem;
        font-size: 1rem;
      }
      
      .newsletter-button {
        background: #dc2626;
        color: white;
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 0.5rem;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s;
      }
      
      .newsletter-button:hover {
        background: #b91c1c;
      }
      
      @media (min-width: 768px) {
        .news-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        
        .newsletter-form {
          flex-direction: row;
        }
        
        .newsletter-input {
          flex: 1;
        }
      }
      
      @media (min-width: 1024px) {
        .news-hero h1 {
          font-size: 4rem;
        }
      }
/* news ends */

/* join starts */

 .join-hero {
        background: linear-gradient(to right, #7f1d1d, #1e3a8a);
        color: white;
        padding: 5rem 0;
        text-align: center;
      }
      
      .join-hero h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
      }
      
      .join-hero p {
        font-size: 1.25rem;
        opacity: 0.9;
        max-width: 48rem;
        margin: 0 auto;
      }
      
      .join-content {
        max-width: 64rem;
        margin: 0 auto;
        padding: 4rem 1rem;
      }
      
      .join-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      
      .benefits-section h2 {
        font-size: 1.875rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 1.5rem;
      }
      
      .benefits-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }
      
      .benefit-item {
        display: flex;
        align-items: flex-start;
      }
      
      .benefit-icon {
        background: #fef2f2;
        padding: 0.5rem;
        border-radius: 0.5rem;
        margin-right: 1rem;
        flex-shrink: 0;
      }
      
      .benefit-icon svg {
        width: 1.25rem;
        height: 1.25rem;
        color: #dc2626;
      }
      
      .benefit-content h3 {
        font-weight: 600;
        color: #111827;
        margin-bottom: 0.25rem;
      }
      
      .benefit-content p {
        color: #4b5563;
        line-height: 1.6;
      }
      
      .form-section {
        background: #f9fafb;
        padding: 2rem;
        border-radius: 0.5rem;
      }
      
      .form-group {
        margin-bottom: 1.5rem;
      }
      
      .form-label {
        display: block;
        font-size: 0.875rem;
        font-weight: 500;
        color: #374151;
        margin-bottom: 0.5rem;
      }
      
      .form-input {
        width: 100%;
        padding: 0.5rem 1rem;
        border: 1px solid #d1d5db;
        border-radius: 0.5rem;
        font-size: 1rem;
        transition: all 0.2s;
      }
      
      .form-input:focus {
        outline: none;
        border-color: transparent;
        box-shadow: 0 0 0 2px #dc2626;
      }
      
      .form-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      
      .interests-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
      }
      
      .checkbox-item {
        display: flex;
        align-items: center;
      }
      
      .checkbox-input {
        margin-right: 0.5rem;
        color: #dc2626;
      }
      
      .checkbox-input:focus {
        box-shadow: 0 0 0 2px #dc2626;
      }
      
      .checkbox-label {
        font-size: 0.875rem;
        color: #374151;
      }
      
      .submit-button {
        width: 100%;
        background: #dc2626;
        color: white;
        padding: 0.75rem;
        border-radius: 0.5rem;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s;
      }
      
      .submit-button:hover {
        background: #b91c1c;
      }
      
      .success-page {
        max-width: 32rem;
        margin: 0 auto;
        padding: 5rem 1rem;
        text-align: center;
      }
      
      .success-icon {
        width: 4rem;
        height: 4rem;
        color: #10b981;
        margin: 0 auto 1.5rem;
      }
      
      .success-title {
        font-size: 2.25rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 1rem;
      }
      
      .success-message {
        font-size: 1.25rem;
        color: #4b5563;
        margin-bottom: 2rem;
        line-height: 1.6;
      }
      
      .success-button {
        background: #dc2626;
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 9999px;
        font-weight: 600;
        text-decoration: none;
        transition: background-color 0.3s;
        display: inline-block;
      }
      
      .success-button:hover {
        background: #b91c1c;
      }
      
      .hidden {
        display: none;
      }
      
      @media (min-width: 768px) {
        .form-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        
        .interests-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      
      @media (min-width: 1024px) {
        .join-grid {
          grid-template-columns: 1fr 1fr;
        }
        
        .join-hero h1 {
          font-size: 4rem;
        }
      }
/* join ends */

/* events starts */
.events-hero {
        background: linear-gradient(to right, #7f1d1d, #1e3a8a);
        color: white;
        padding: 5rem 0;
        text-align: center;
      }
      
      .events-hero h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
      }
      
      .events-hero p {
        font-size: 1.25rem;
        opacity: 0.9;
        max-width: 48rem;
        margin: 0 auto;
      }
      
      .events-content {
        max-width: 80rem;
        margin: 0 auto;
        padding: 4rem 1rem;
      }
      
      .tab-container {
        display: flex;
        justify-content: center;
        margin-bottom: 3rem;
      }
      
      .tab-wrapper {
        background: #f3f4f6;
        padding: 0.25rem;
        border-radius: 0.5rem;
      }
      
      .tab-button {
        padding: 0.5rem 1.5rem;
        border-radius: 0.375rem;
        font-weight: 600;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
        background: transparent;
        color: #4b5563;
      }
      
      .tab-button:hover {
        color: #111827;
      }
      
      .tab-button.active {
        background: #dc2626;
        color: white;
      }
      
      .events-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      
      .event-card {
        background: white;
        border-radius: 0.5rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: box-shadow 0.3s;
      }
      
      .event-card:hover {
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
      }
      
      .event-image {
        width: 100%;
        height: 12rem;
        object-fit: cover;
      }
      
      .event-content {
        padding: 1.5rem;
      }
      
      .event-title {
        font-size: 1.25rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 0.75rem;
      }
      
      .event-details {
        margin-bottom: 1rem;
      }
      
      .event-detail {
        display: flex;
        align-items: center;
        color: #4b5563;
        margin-bottom: 0.5rem;
        font-size: 0.875rem;
      }
      
      .event-icon {
        width: 1rem;
        height: 1rem;
        margin-right: 0.5rem;
        flex-shrink: 0;
      }
      
      .event-description {
        color: #4b5563;
        margin-bottom: 1rem;
        line-height: 1.6;
      }
      
      .event-button {
        padding: 0.5rem 1.5rem;
        border-radius: 9999px;
        font-weight: 600;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
      }
      
      .btn-register {
        background: #dc2626;
        color: white;
      }
      
      .btn-register:hover {
        background: #b91c1c;
      }
      
      .btn-photos {
        background: #f3f4f6;
        color: #374151;
      }
      
      .btn-photos:hover {
        background: #e5e7eb;
      }
      
      .organize-section {
        margin-top: 4rem;
        background: linear-gradient(to right, #fef2f2, #eff6ff);
        padding: 2rem;
        border-radius: 0.5rem;
        text-align: center;
      }
      
      .organize-section h3 {
        font-size: 1.5rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 1rem;
      }
      
      .organize-section p {
        color: #4b5563;
        margin-bottom: 1.5rem;
        line-height: 1.6;
      }
      
      .organize-link {
        background: #dc2626;
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 9999px;
        font-weight: 600;
        text-decoration: none;
        transition: background-color 0.3s;
        display: inline-block;
      }
      
      .organize-link:hover {
        background: #b91c1c;
      }
      
      .hidden {
        display: none;
      }
      
      @media (min-width: 1024px) {
        .events-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        
        .events-hero h1 {
          font-size: 4rem;
        }
      }
/* events ends */

/* contact starts */
 .contact-hero {
        background: linear-gradient(135deg, #7f1d1d, #1e3a8a);
        color: white;
        padding: 5rem 0;
        text-align: center;
      }
      
      .contact-hero h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
      }
      
      .contact-hero p {
        font-size: 1.25rem;
        opacity: 0.9;
        max-width: 48rem;
        margin: 0 auto;
      }
      
      .contact-content {
        max-width: 80rem;
        margin: 0 auto;
        padding: 4rem 1rem;
      }
      
      .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
      }
      
      .contact-info {
        background: white;
        padding: 2rem;
        border-radius: 0.75rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      }
      
      .contact-info h2 {
        font-size: 1.875rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 1.5rem;
      }
      
      .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: #f9fafb;
        border-radius: 0.5rem;
      }
      
      .contact-icon {
        width: 2rem;
        height: 2rem;
        color: #dc2626;
        margin-right: 1rem;
        flex-shrink: 0;
        margin-top: 0.25rem;
      }
      
      .contact-details h3 {
        font-size: 1.125rem;
        font-weight: 600;
        color: #111827;
        margin-bottom: 0.25rem;
      }
      
      .contact-details p {
        color: #4b5563;
        line-height: 1.5;
      }
      
      .contact-details a {
        color: #dc2626;
        text-decoration: none;
        transition: color 0.3s;
      }
      
      .contact-details a:hover {
        color: #b91c1c;
      }
      
      .contact-form {
        background: white;
        padding: 2rem;
        border-radius: 0.75rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      }
      
      .contact-form h2 {
        font-size: 1.875rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 1.5rem;
      }
      
      .form-group {
        margin-bottom: 1.5rem;
      }
      
      .form-label {
        display: block;
        font-weight: 600;
        color: #374151;
        margin-bottom: 0.5rem;
      }
      
      .form-input,
      .form-textarea,
      .form-select {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1px solid #d1d5db;
        border-radius: 0.5rem;
        font-size: 1rem;
        transition: border-color 0.3s, box-shadow 0.3s;
      }
      
      .form-input:focus,
      .form-textarea:focus,
      .form-select:focus {
        outline: none;
        border-color: #dc2626;
        box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
      }
      
      .form-textarea {
        resize: vertical;
        min-height: 8rem;
      }
      
      .form-button {
        background: #dc2626;
        color: white;
        padding: 0.75rem 2rem;
        border: none;
        border-radius: 0.5rem;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s;
        width: 100%;
      }
      
      .form-button:hover {
        background: #b91c1c;
      }
      
      .office-hours {
        background: linear-gradient(to right, #fef2f2, #eff6ff);
        padding: 2rem;
        border-radius: 0.75rem;
        text-align: center;
      }
      
      .office-hours h3 {
        font-size: 1.5rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 1rem;
      }
      
      .hours-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
        max-width: 20rem;
        margin: 0 auto;
      }
      
      .hours-item {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-bottom: 1px solid #e5e7eb;
      }
      
      .hours-item:last-child {
        border-bottom: none;
      }
      
      .day {
        font-weight: 600;
        color: #374151;
      }
      
      .time {
        color: #4b5563;
      }
      
      .map-container {
        background: #f3f4f6;
        height: 20rem;
        border-radius: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #6b7280;
        font-size: 1.125rem;
        margin-top: 2rem;
      }
      
      @media (min-width: 768px) {
        .contact-grid {
          grid-template-columns: 1fr 1fr;
        }
        
        .form-button {
          width: auto;
        }
      }
      
      @media (min-width: 1024px) {
        .contact-hero h1 {
          font-size: 4rem;
        }
      }
/* contact ends */

/* alumini starts */
 .alumni-hero {
        background: linear-gradient(135deg, #1e3a8a, #7f1d1d);
        color: white;
        padding: 5rem 0;
        text-align: center;
      }
      
      .alumni-hero h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
      }
      
      .alumni-hero p {
        font-size: 1.25rem;
        opacity: 0.9;
        max-width: 48rem;
        margin: 0 auto;
      }
      
      .alumni-content {
        max-width: 80rem;
        margin: 0 auto;
        padding: 4rem 1rem;
      }
      
      .alumni-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
      }
      
      .alumni-card {
        background: white;
        border-radius: 0.75rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
      }
      
      .alumni-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
      }
      
      .alumni-image {
        width: 100%;
        height: 16rem;
        object-fit: cover;
      }
      
      .alumni-body {
        padding: 2rem;
      }
      
      .alumni-badge {
        display: inline-block;
        background: #dc2626;
        color: white;
        padding: 0.25rem 0.75rem;
        border-radius: 9999px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 1rem;
      }
      
      .alumni-badge.entrepreneur {
        background: #059669;
      }
      
      .alumni-badge.executive {
        background: #2563eb;
      }
      
      .alumni-badge.researcher {
        background: #7c3aed;
      }
      
      .alumni-badge.social-impact {
        background: #ea580c;
      }
      
      .alumni-name {
        font-size: 1.75rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 0.5rem;
      }
      
      .alumni-title {
        font-size: 1.125rem;
        color: #dc2626;
        font-weight: 600;
        margin-bottom: 1rem;
      }
      
      .alumni-story {
        color: #4b5563;
        line-height: 1.6;
        margin-bottom: 1.5rem;
      }
      
      .alumni-achievements {
        background: #f9fafb;
        padding: 1rem;
        border-radius: 0.5rem;
        margin-bottom: 1.5rem;
      }
      
      .alumni-achievements h4 {
        font-size: 0.875rem;
        font-weight: 600;
        color: #374151;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }
      
      .alumni-achievements ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      
      .alumni-achievements li {
        color: #6b7280;
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
        padding-left: 1rem;
        position: relative;
      }
      
      .alumni-achievements li::before {
        content: "•";
        color: #dc2626;
        position: absolute;
        left: 0;
      }
      
      .alumni-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.875rem;
        color: #6b7280;
        border-top: 1px solid #e5e7eb;
        padding-top: 1rem;
      }
      
      .alumni-graduation {
        font-weight: 500;
      }
      
      .connect-link {
        color: #dc2626;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s;
      }
      
      .connect-link:hover {
        color: #b91c1c;
      }
      
      .nomination-section {
        background: linear-gradient(to right, #fef2f2, #eff6ff);
        padding: 3rem 2rem;
        border-radius: 0.75rem;
        text-align: center;
        margin-top: 3rem;
      }
      
      .nomination-section h3 {
        font-size: 1.875rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 1rem;
      }
      
      .nomination-section p {
        color: #4b5563;
        margin-bottom: 2rem;
        font-size: 1.125rem;
      }
      
      .nomination-button {
        background: #dc2626;
        color: white;
        padding: 0.75rem 2rem;
        border: none;
        border-radius: 0.5rem;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s;
        text-decoration: none;
        display: inline-block;
      }
      
      .nomination-button:hover {
        background: #b91c1c;
      }
      
      @media (min-width: 768px) {
        .alumni-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      
      @media (min-width: 1024px) {
        .alumni-hero h1 {
          font-size: 4rem;
        }
        
        .alumni-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
/* alumini ends */

/* about starts */
 .about-hero {
        background: linear-gradient(to right, #7f1d1d, #1e3a8a);
        color: white;
        padding: 5rem 0;
        text-align: center;
      }
      
      .about-hero h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
      }
      
      .about-hero p {
        font-size: 1.25rem;
        opacity: 0.9;
        max-width: 48rem;
        margin: 0 auto;
      }
      
      .about-content {
        max-width: 80rem;
        margin: 0 auto;
        padding: 4rem 1rem;
      }
      
      .about-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
      }
      
      .story-section h2 {
        font-size: 1.875rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 1.5rem;
      }
      
      .story-text {
        font-size: 1.125rem;
        line-height: 1.75;
        color: #4b5563;
      }
      
      .story-text p {
        margin-bottom: 1rem;
      }
      
      .mission-vision {
        background: #f9fafb;
        padding: 2rem;
        border-radius: 0.5rem;
      }
      
      .mission-vision h3 {
        font-size: 1.5rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 1.5rem;
      }
      
      .mission-item {
        margin-bottom: 1.5rem;
      }
      
      .mission-item h4 {
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
      }
      
      .mission-title {
        color: #dc2626;
      }
      
      .vision-title {
        color: #2563eb;
      }
      
      .mission-item p {
        color: #4b5563;
        line-height: 1.6;
      }
      
      .leadership-section {
        margin-bottom: 4rem;
      }
      
      .leadership-section h2 {
        font-size: 1.875rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 2rem;
        text-align: center;
      }
      
      .leadership-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      
      .leader-card {
        background: white;
        border-radius: 0.5rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s;
      }
      
      .leader-card:hover {
        transform: translateY(-4px);
      }
      
      .leader-image {
        width: 100%;
        height: 16rem;
        object-fit: cover;
      }
      
      .leader-info {
        padding: 1.5rem;
      }
      
      .leader-name {
        font-size: 1.25rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 0.25rem;
      }
      
      .leader-position {
        color: #dc2626;
        font-weight: 600;
        margin-bottom: 0.5rem;
      }
      
      .leader-details {
        color: #4b5563;
        font-size: 0.875rem;
      }
      
      .leader-details p {
        margin-bottom: 0.25rem;
      }
      
      .global-connect {
        background: linear-gradient(to right, #fef2f2, #eff6ff);
        padding: 2rem;
        border-radius: 0.5rem;
        text-align: center;
      }
      
      .global-connect h3 {
        font-size: 1.5rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 1rem;
      }
      
      .global-connect p {
        color: #4b5563;
        margin-bottom: 1.5rem;
        line-height: 1.6;
      }
      
      .global-link {
        background: #dc2626;
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 9999px;
        font-weight: 600;
        text-decoration: none;
        transition: background-color 0.3s;
        display: inline-block;
      }
      
      .global-link:hover {
        background: #b91c1c;
      }
      
      @media (min-width: 768px) {
        .leadership-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
      
      @media (min-width: 1024px) {
        .about-grid {
          grid-template-columns: 1fr 1fr;
        }
        
        .about-hero h1 {
          font-size: 4rem;
        }
      }
/* about ends */