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

body {
  font-family: "Poppins", "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header Styles */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  height:100px;
}

.logo {
  height: 60px;
  width: 60px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s;
}

/* Updated hover color to match FRSI blue */
.nav-menu a:hover {
  color: #2196f3;
}

/* Active navigation link */
.nav-menu a.active {
  color: #2196f3;
  font-weight: 600;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("/assets/user/images/index2.jpeg") center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 80px;
}


.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

/* Updated highlight color to FRSI brand blue */
.hero-content .highlight {
  color: #2196f3;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Updated CTA button to use FRSI blue with pink accent on hover */
.cta-btn {
  background: #2196f3;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-btn:hover {
  background: #e91e63;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Updated section title color to FRSI blue */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2196f3;
}

/* About Section */
.about {
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Updated about text heading color to FRSI blue */
.about-text h3 {
  font-size: 2rem;
  color: #2196f3;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 600px;
}

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

.about-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Who We Are Section */
.who-we-are {
  background: white;
}

.who-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.who-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #555;
}

.who-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.mission {
  background: #f8f9fa;
}

.mission-content {
  display: flex;
  justify-content: center;
}

.mission-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #2196f3;
}

.mission-icon {
  font-size: 4rem;
  color: #2196f3;
  margin-bottom: 2rem;
}

.mission-card h3 {
  font-size: 2rem;
  color: #2196f3;
  margin-bottom: 1.5rem;
}

.mission-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Vision Section */
.vision {
  background: white;
}

.vision-content {
  display: flex;
  justify-content: center;
}

.vision-card {
  background: linear-gradient(135deg, #2196f3, #673ab7);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 15px 35px rgba(33, 150, 243, 0.3);
}

.vision-icon {
  font-size: 4rem;
  color: #e91e63;
  margin-bottom: 2rem;
}

.vision-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.vision-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* Journey Section */
.journey {
  background: #f8f9fa;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #2196f3, #e91e63);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  background: #2196f3;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.2rem;
  min-width: 100px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 2rem;
  flex: 1;
  border-left: 4px solid #e91e63;
}

.timeline-item:nth-child(even) .timeline-content {
  border-left: none;
  border-right: 4px solid #e91e63;
}

.timeline-content h4 {
  color: #2196f3;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #555;
  line-height: 1.6;
}

/* Uniqueness Section */
.uniqueness {
  background: white;
}

.uniqueness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.unique-item {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid #2196f3;
}

.unique-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(33, 150, 243, 0.2);
}

.unique-icon {
  font-size: 3rem;
  color: #2196f3;
  margin-bottom: 1.5rem;
}

.unique-item h4 {
  color: #2196f3;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.unique-item p {
  color: #555;
  line-height: 1.6;
}

/* Director Section */
.director {
  background: #f8f9fa;
}

.director-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.director-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.director-info h3 {
  font-size: 2.5rem;
  color: #2196f3;
  margin-bottom: 0.5rem;
}

.director-title {
  font-size: 1.2rem;
  color: #e91e63;
  font-weight: 500;
  margin-bottom: 2rem;
}

.director-bio {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}


.achievement {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.achievement i {
  color: #2196f3;
  font-size: 1.5rem;
}

.achievement span {
  color: #555;
  font-weight: 500;
}

/* Programs Section */
.programs {
  background: white;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

.program-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
  border-top: 4px solid #2196f3;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(33, 150, 243, 0.2);
}

.program-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.program-card-content {
  padding: 2rem;
}

/* Updated program card heading color to FRSI blue */
.program-card h4 {
  font-size: 1.5rem;
  color: #2196f3;
  margin-bottom: 1rem;
}

.program-card p {
  color: #666;
  line-height: 1.6;
}

/* Campus Section */
/* Updated campus section gradient to use FRSI blue and purple */
.campus {
  background: linear-gradient(135deg, #2196f3 0%, #673ab7 100%);
  color: white;
  text-align: center;
}

.campus .section-title {
  color: white;
}

.campus-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.campus-feature {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

/* Updated campus feature icon color to pink accent */
.campus-feature i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #e91e63;
}

/* Why Choose Section */
.why-choose {
  background: #f8f9fa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

/* Updated feature item icon color to FRSI blue */
.feature-item i {
  font-size: 3rem;
  color: #2196f3;
  margin-bottom: 1rem;
}

/* Updated feature item heading color to FRSI blue */
.feature-item h4 {
  font-size: 1.5rem;
  color: #2196f3;
  margin-bottom: 1rem;
}

/* Competition Section */
.competition {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
              url('/assets/user/images/index3.jpg') center / cover no-repeat;
  color: white;
  text-align: center;
}


.competition .section-title {
  color: white;
}

.competition-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  padding: 2rem;
}

/* Updated stat number color to FRSI blue */
.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #2196f3;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* Get Quote Section */
.get-quote {
  background: linear-gradient(135deg, #2196f3 0%, #673ab7 100%);
  color: white;
  text-align: center;
}

.quote-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.quote-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.quote-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-btn-outline {
  background: transparent;
  color: white;
  padding: 15px 30px;
  border: 2px solid white;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.cta-btn-outline:hover {
  background: white;
  color: #2196f3;
}

.cta-btn-outline i {
  font-size: 0.9rem;
}

/* Achievements Section */
.achievements {
  padding: 5rem 0;
  background: #f8f9fa;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.achievement-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(33, 150, 243, 0.2);
}

.achievement-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.achievement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
  margin: 0;
  padding: 0;
  vertical-align: top;
}

.achievement-card:hover .achievement-image img {
  transform: scale(1.05);
}

.achievement-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #2196f3, #e91e63);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.achievement-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.achievement-year {
  display: inline-block;
  background: linear-gradient(135deg, #2196f3, #673ab7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: auto;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.achievement-content h3 {
  font-size: 1.8rem;
  color: #2196f3;
  margin-bottom: 1rem;
  font-weight: 700;
}

.achievement-description {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  flex-grow: 1;
}

.achievement-stats {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #2196f3;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.achievement-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}



.highlight i {
  color: #2196f3;
  font-size: 1.2rem;
}

.highlight span {
  color: #333;
  font-weight: 500;
}

/* Footer */
/* Updated footer background to white and text color to dark grey */
.footer {
  background: white;
  color: #444;
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid #e0e0e0;
}

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

/* Updated footer section heading color to FRSI blue */
.footer-section h4 {
  margin-bottom: 1rem;
  color: #2196f3;
}

.footer-links {
    gap: 1.5rem; /* space between links */
}

.footer-links a {
    color: #fff;          /* white color */
    text-decoration: none; /* remove underline */
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline; /* optional hover effect */
    color: #ffd700;             /* optional hover color */
}


/* Updated footer links color to dark grey */
.footer-section a {
  color: #666;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

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

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Updated social links color to dark grey */
.social-links a {
  color: #666;
  font-size: 1.5rem;
  transition: color 0.3s;
}

/* Updated social links hover color to FRSI blue */
.social-links a:hover {
  color: #2196f3;
}

/* Breadcrumb Styles */
.breadcrumb-section {
  background: linear-gradient(135deg, #2196f3 0%, #673ab7 100%);
  color: white;
  padding: 185px 0 80px;
  text-align: center;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb-separator {
  margin: 0 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
  color: #e91e63;
  font-weight: 500;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Section Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2196f3, #e91e63);
  margin: 1rem auto;
  border-radius: 2px;
}

/* Activities Section Styles */
.activities-section {
  background: #f8f9fa;
}

.activity-category {
  margin-bottom: 4rem;
}

.category-title {
  font-size: 2rem;
  color: #2196f3;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.category-title i {
  font-size: 1.5rem;
  background: linear-gradient(45deg, #2196f3, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.activity-card-new {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(33, 150, 243, 0.1);
}

.activity-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(33, 150, 243, 0.2);
}

.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.activity-card-new:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.card-content {
  padding: 2rem;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #2196f3, #e91e63);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.card-content h4 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.card-content > p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: #555;
  font-size: 0.9rem;
}

.feature-list i {
  color: #2196f3;
  margin-right: 0.8rem;
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.duration {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

.learn-more-btn {
  background: linear-gradient(45deg, #2196f3, #e91e63);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.learn-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.level-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
}

.level-badge.beginner {
  background: linear-gradient(45deg, #4caf50, #8bc34a);
}

.level-badge.intermediate {
  background: linear-gradient(45deg, #ff9800, #ffc107);
}

.level-badge.advanced {
  background: linear-gradient(45deg, #f44336, #e91e63);
}

/* Responsive Design */
@media (max-width: 768px) {
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .category-title {
    font-size: 1.5rem;
  }

  .card-content {
    padding: 1.5rem;
  }

  .card-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .learn-more-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

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

  .section {
    padding: 60px 0;
  }

  .page-title {
    font-size: 2rem;
  }

  .mission-card,
  .vision-card {
    padding: 2rem;
  }

  .breadcrumb {
    flex-direction: column;
    gap: 0.5rem;
  }

  .breadcrumb-separator {
    transform: rotate(90deg);
  }

  .activities-grid {
    grid-template-columns: 1fr;
  }

  .activity-card {
    height: 260px;
  }

  .activity-icon {
    font-size: 2.5rem;
  }

  .card-front h3 {
    font-size: 1.3rem;
  }

  .card-front p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .nav-container {
    padding: 1rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .who-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .director-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 60px;
  }

  .timeline-item:nth-child(even) {
    flex-direction: row !important;
  }

  .timeline-year {
    position: absolute;
    left: 0;
    min-width: 80px;
  }

  .timeline-content {
    margin-left: 2rem;
    margin-right: 0;
    border-left: 4px solid #e91e63 !important;
    border-right: none !important;
  }

  .quote-actions {
    flex-direction: column;
    align-items: center;
  }

  .activities-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .activity-card {
    height: 320px;
  }

  .card-front,
  .card-back {
    padding: 2rem;
  }

  .activity-icon {
    font-size: 3.5rem;
  }

  .card-front h3 {
    font-size: 1.6rem;
  }

  .card-front p {
    font-size: 1rem;
  }

  .card-back h3 {
    font-size: 1.5rem;
  }

  .activity-details li {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .achievement-content h3 {
    font-size: 1.5rem;
  }

  .achievement-description {
    font-size: 1rem;
  }

  .achievement-image {
    height: 250px;
  }
}

/* Contact Section Styles */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* Contact Form Styles */
.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(33, 150, 243, 0.1);
}

.contact-form {
  margin-top: 30px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2196f3;
  background: white;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, #2196f3, #e91e63);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(33, 150, 243, 0.4);
  background: linear-gradient(135deg, #1976d2, #c2185b);
}

/* Contact Info Styles */
.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(33, 150, 243, 0.1);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(33, 150, 243, 0.15);
}

.contact-icon {
  background: linear-gradient(135deg, #2196f3, #e91e63);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details h3 {
  color: #2196f3;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-details p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Social Media Styles */
.social-media {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid rgba(33, 150, 243, 0.1);
}

.social-media h3 {
  color: #2196f3;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

.social-link {
  background: linear-gradient(135deg, #2196f3, #e91e63);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
}

/* Map Section Styles */
.map-section {
  margin-top: 60px;
}

.map-container {
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(33, 150, 243, 0.1);
}

.map-container iframe {
  border-radius: 15px;
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-container,
  .contact-info-container {
    padding: 30px 20px;
  }

  .contact-info-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    align-self: center;
  }

  .social-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-form-container {
    padding: 25px 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
  }

  .submit-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .map-container {
    padding: 15px;
  }

  .map-container iframe {
    height: 300px;
  }
}
.logo {
        width: 100px;   /* Increase this as needed */
        height: auto;   /* Keeps aspect ratio */
    }
