/* Global Styles */
:root {
  --primary-color: #4285f4; 
  --secondary-color: #49f892; 
  --accent-color: #008362; 
  --success-color: #34a853; 

  /* Light Mode Colors */
  --background-light: #f0f2f5;
  --card-background-light: #ffffff;
  --text-color-light: #3c4043;
  --text-light-dim: #5f6368;
  --border-color-light: #e0e0e0;
  --shadow-light: rgba(0, 0, 0, 0.08);

  /* Dark Mode Colors */
  --background-dark: #1a1a2e; /* Dark Blue */
  --card-background-dark: #1f283e;
  --text-color-dark: #e0e0e0;
  --text-dark-dim: #a0a0a0;
  --border-color-dark: #3a3a50;
  --shadow-dark: rgba(0, 0, 0, 0.3);

  --transition: all 0.4s ease;
  --border-radius: 10px;
}

[data-theme="light"] {
  --bg-color: var(--background-light);
  --card-bg: var(--card-background-light);
  --text-color: var(--text-color-light);
  --text-dim: var(--text-light-dim);
  --border-color: var(--border-color-light);
  --box-shadow: 0 8px 24px var(--shadow-light);
  --navbar-bg: rgba(255, 255, 255, 0.95);
  --navbar-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] {
  --bg-color: var(--background-dark);
  --card-bg: var(--card-background-dark);
  --text-color: var(--text-color-dark);
  --text-dim: var(--text-dark-dim);
  --border-color: var(--border-color-dark);
  --box-shadow: 0 8px 24px var(--shadow-dark);
  --navbar-bg: rgba(26, 26, 46, 0.95);
  --navbar-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
  overflow-x: hidden;
  transition: background-color var(--transition), color var(--transition);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block; /* Remove extra space below images */
}

/* Theme specific logo display */
body[data-theme="light"] .dark-logo {
  display: none;
}
body[data-theme="dark"] .light-logo {
  display: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-color);
  position: relative;
  font-weight: 700;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 5px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(
    --card-bg
  ); /* Use card background for better contrast in dark mode */
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
  box-shadow: none;
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(
    --card-bg
  ); /* Use card background for better contrast in dark mode */
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 6px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--navbar-bg);
  backdrop-filter: blur(8px);
  box-shadow: var(--navbar-shadow);
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  background-color: var(--navbar-bg);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 45px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin-left: 35px;
}

.nav-menu a {
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
  color: var(--text-dim);
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: var(--text-color);
  transition: var(--transition);
  border-radius: 2px;
}

/* Add these to your existing CSS */

/* Glassmorphism Effect */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Neumorphic Elements */
.neumorphic {
  border-radius: var(--border-radius);
  background: var(--card-bg);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1),
    -5px -5px 10px rgba(255, 255, 255, 0.05);
}

/* Modern Button Styles */
.btn-modern {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-modern:hover::before {
  width: 100%;
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* Modern Input Fields */
.modern-input {
  border: none;
  border-bottom: 2px solid var(--border-color);
  background: transparent;
  border-radius: 0;
  padding-left: 0;
  transition: all 0.3s ease;
}

.modern-input:focus {
  border-bottom-color: var(--primary-color);
  box-shadow: none;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Modern Card Hover Effect */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Theme Switch */
/* Theme Switch */
.theme-switch-wrapper {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.theme-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* New icon-based slider */
.icon-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(
    --border-color
  ); /* Neutral background for the switch track */
  transition: 0.4s;
  border-radius: 28px;
  display: flex;
  align-items: center;
  padding: 0 4px;
  justify-content: space-between; /* To position icons at ends */
  overflow: hidden; /* Hide overflowing icon when sliding */
}

.icon-slider .light-icon,
.icon-slider .dark-icon {
  position: absolute;
  font-size: 1.2rem;
  line-height: 1; /* Ensure icons sit centrally */
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.icon-slider .light-icon {
  color: var(--accent-color); /* Yellow for sun */
  left: 5px;
  transform: translateX(0);
  opacity: 1;
}

.icon-slider .dark-icon {
  color: var(--primary-color); /* Blue for moon */
  right: 5px;
  transform: translateX(0);
  opacity: 0; /* Hide dark icon initially */
}

input:checked + .icon-slider {
  background-color: var(
    --primary-color
  ); /* Change background when dark mode is active */
}

input:checked + .icon-slider .light-icon {
  transform: translateX(-25px); /* Slide sun out */
  opacity: 0;
}

input:checked + .icon-slider .dark-icon {
  transform: translateX(-25px); /* Keep moon visible and shift */
  opacity: 1;
  color: var(
    --accent-color
  ); /* Change moon color to yellow for better contrast on blue background */
}

/* Simulate the sliding circle using a pseudo-element for aesthetic if desired,
   or just let the icons animate. For icon-based, this is simpler. */
.icon-slider.round:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: var(
    --card-bg
  ); /* Use card background for the slider "thumb" */
  transition: 0.4s;
  border-radius: 50%;
  z-index: 1; /* Ensure slider thumb is above icons for proper masking */
}

input:checked + .icon-slider.round:before {
  transform: translateX(22px);
}

/* Adjust icon positioning relative to the sliding thumb */
input:not(:checked) + .icon-slider .light-icon {
  z-index: 2; /* Bring sun icon to front when light mode is active */
}

input:checked + .icon-slider .dark-icon {
  z-index: 2; /* Bring moon icon to front when dark mode is active */
}

/* General improvements for input focus */
input:focus + .icon-slider {
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.2);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--card-bg) 100%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    var(--secondary-color) 0%,
    transparent 70%
  );
  opacity: 0.1;
  border-radius: 50%;
  animation: float 6s reverse ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, 10px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  animation: fadeInSlideUp 1s ease-out forwards;
}

.hero-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.8rem;
  margin-bottom: 25px;
  color: var(--text-color);
  line-height: 1.25;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: var(--text-dim);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 25px;
}

.hero-image {
  flex: 1;
  text-align: center;
  animation: fadeInScale 1s ease-out forwards;
}

.hero-image img {
  max-width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: translateY(-5px);
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: var(--bg-color);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-top: 50px;
  animation: fadeInSlideUp 1s ease-out forwards;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.15rem;
  color: var(--text-dim);
}

.about-features {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.about-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: var(--text-color);
}

.about-features i {
  color: var(--success-color); /* Google Green for checkmarks */
  margin-right: 12px;
  font-size: 1.3rem;
}

.about-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transform: rotate(3deg); /* Slight tilt for visual interest */
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Events Section */
.events {
  padding: 120px 0;
  background-color: var(--card-bg);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
  color: var(--text-color);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 20px auto 0;
  border-radius: 2px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.event-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  border: none;
  position: relative;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.event-date {
  background-color: var(--white);
  color: var(--text-color);
  padding: 25px 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  border-bottom: none;
}

.event-date .day {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: var(--primary-color);
}

.event-date .month {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
  color: var(--text-dim);
  letter-spacing: 1px;
}

.event-info {
  padding: 0 25px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-info h3 {
  margin-bottom: 20px;
  color: var(--text-color);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.event-info p {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
}

.event-info i {
  margin-right: 12px;
  color: var(--primary-color);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.event-info .btn-small {
  margin-top: 20px;
  align-self: flex-start;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.event-info .btn-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.view-all {
  text-align: center;
  margin-top: 60px;
}

.view-all .btn-secondary {
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.view-all .btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .events {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .events-grid {
    gap: 30px;
  }
}

/* Team Section */

.team {
  padding: 120px 0;
  background-color: var(--bg-color);
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--text-color);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  margin: 20px auto 0;
  border-radius: 2px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.team-member {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  padding: 40px 30px;
  position: relative;
  border: none;
  z-index: 1;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 25px;
  border: 6px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  position: relative;
}

.team-member:hover img {
  transform: scale(1.05);
  border-color: var(--primary-color);
}

.team-member h3 {
  margin-bottom: 8px;
  color: var(--text-color);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.team-member p {
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 25px;
  font-size: 1.1rem;
  position: relative;
  display: inline-block;
}

.team-member p::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-links a:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.social-links a:hover::before {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .team {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .team-grid {
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  
  .team-member {
    padding: 30px 20px;
  }
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: var(--card-bg);
}

.contact-content {
  display: flex;
  gap: 60px;
  margin-top: 50px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  justify-content: center;
}

.contact-info {
  flex: 1;
  min-width: 300px; /* Ensure info section doesn't get too small */
}

.contact-info .section-title {
  text-align: left; /* Align title to left */
  margin-left: 0;
}

.contact-info .section-title::after {
  left: 0;
  transform: translateX(0);
}

.contact-info p {
  margin-bottom: 30px;
  font-size: 1.15rem;
  color: var(--text-dim);
}

.social-media {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-media a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.social-media a:hover {
  transform: translateY(-5px);
  background-color: var(--secondary-color); /* Different color on hover */
  box-shadow: 0 6px 16px rgba(234, 67, 53, 0.4);
}

.contact-form {
  flex: 1;
  min-width: 400px; /* Ensure form doesn't get too small */
  background-color: var(--bg-color);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: inherit;
  transition: var(--transition);
  background-color: var(--card-bg);
  color: var(--text-color);
  font-size: 1rem;
}

.form-group input::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.2);
}

.contact-form .btn-primary {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background-color: var(--card-bg); /* Use card-bg for footer too */
  color: var(--text-dim);
  padding: 60px 0 20px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 45px;
  margin-bottom: 20px;
}

.footer-logo p {
  color: var(--text-dim);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--text-color);
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 600;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-dim);
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

.footer-contact p {
  color: var(--text-dim);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.footer-contact i {
  margin-right: 12px;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-dim);
  font-size: 0.85rem;
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column-reverse; /* Image above content for mobile */
    text-align: center;
  }

  .hero-content,
  .hero-image,
  .about-text,
  .about-image,
  .contact-info,
  .contact-form {
    width: 100%;
    text-align: center; /* Center content for smaller screens */
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-image {
    margin-bottom: 40px; /* Add space below image */
    transform: rotate(0deg); /* Remove tilt on smaller screens */
  }

  .hero-buttons {
    justify-content: center; /* Center buttons */
  }

  .about-content {
    flex-direction: column;
    gap: 50px;
  }

  .about-features {
    grid-template-columns: 1fr; /* Stack features on smaller screens */
  }

  .about-info .section-title {
    text-align: center;
  }
  .about-info .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .section-title {
    font-size: 2.2rem;
  }

  .contact-content {
    flex-direction: column;
    gap: 40px;
  }

  .contact-info .section-title {
    text-align: center; /* Center title on smaller screens */
    margin-left: auto;
    margin-right: auto;
  }
  .contact-info .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .contact-form {
    min-width: unset; /* Remove min-width to allow shrinking */
    width: 100%;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 75px; /* Adjust based on navbar height */
    left: -100%;
    width: 100%; /* Full width for mobile menu */
    height: calc(100vh - 75px);
    background-color: var(--navbar-bg);
    backdrop-filter: blur(8px);
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    transition: var(--transition);
    box-shadow: var(--navbar-shadow);
    justify-content: flex-start; /* Align items to top */
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 20px 0; /* More spacing for mobile links */
  }

  .hero {
    padding: 150px 0 80px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
  }

  .event-card {
    flex-direction: column;
  }

  .event-date {
    flex-direction: row;
    justify-content: space-around;
    padding: 15px;
    min-height: auto; /* Remove min-height */
    border-bottom: none; /* Remove border */
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }

  .event-date .day,
  .event-date .month {
    font-size: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr; /* Stack footer columns */
    text-align: center;
  }

  .footer-links ul {
    padding: 0;
  }

  .footer-links a {
    padding-left: 0;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .footer-logo img {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 1rem;
  }

  .event-info h3 {
    font-size: 1.2rem;
  }
  .event-info p {
    font-size: 0.95rem;
  }

  .team-member h3 {
    font-size: 1.3rem;
  }
  .team-member p {
    font-size: 0.9rem;
  }
}
