/* Hero Section - Blue Theme */
.hero-section {
  /* background: linear-gradient(135deg, #4361ee, #3a0ca3);  */
  background: #13005A !important; 
  color: white;
  padding: 6rem 2rem;
  text-align: center;
  border-radius: 0 0 20px 20px;
  margin-bottom: 3rem;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

/* Blue Buttons */
.cta-button {
  background: white;
  color: #4361ee;
}

.cta-button.outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

/* Blue Headings */
h2 {
  color: #3a0ca3;
}

/* Feature Cards with Blue Accents */
.feature-card {
  border-top: 4px solid #4361ee;
}

.feature-icon {
  color: #4361ee;
}

/* News Cards with Blue Links */
.read-more {
  color: #4361ee;
}

.read-more:hover {
  color: #3a0ca3;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
}
/* Gallery Section with Blue Accents */
.gallery-link {
  color: #4361ee;
  background: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.gallery-link:hover {
  color: #3a0ca3;
}

/* Stats Section Blue Background */
.journey-stats {
  background: rgba(67, 97, 238, 0.1);
  border-radius: 10px;
  padding: 2rem;
}

.stat-number {
  color: #3a0ca3;
}


/* Gallery Section */
.gallery-section {
  padding: 4rem 2rem;
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #3a0ca3;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 300px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h3 {
  margin-bottom: 0.5rem;
}

.gallery-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.gallery-link::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.gallery-link:hover::after {
  transform: translateX(5px);
}

/* News Images */
.news-card .news-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 10px 10px 0 0;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Base Styles */
.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #333;
    font-family: 'Poppins', sans-serif;
  }
  
  /* Hero Section */
  .hero-section {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: white;
    padding: 5rem 2rem;
    border-radius: 0 0 20px 20px;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  
  .cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: white;
    color: #4361ee;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .cta-button.outline {
    background: transparent;
    color: white;
    border: 2px solid white;
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  /* About Section */
  .about-section {
    padding: 4rem 0;
    text-align: center;
  }
  
  .about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #3a0ca3;
    margin-bottom: 1.5rem;
  }
  
  .about-section p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
  }
  
  .journey-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }
  
  .stat {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    min-width: 150px;
  }
  
  .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4361ee;
    line-height: 1;
  }
  
  .stat-label {
    font-size: 1rem;
    color: #666;
  }
  
  /* Features Section */
  .features-section {
    padding: 4rem 0;
    background: #f9fafb;
    border-radius: 20px;
    margin: 3rem 0;
  }
  
  .features-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #3a0ca3;
    margin-bottom: 3rem;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
  }
  
  .feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.1);
  }
  
  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #3a0ca3;
  }
  
  .feature-card p {
    color: #666;
    line-height: 1.6;
  }
  
  /* News Section */
  .news-section {
    padding: 4rem 0;
  }
  
  .news-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #3a0ca3;
    margin-bottom: 3rem;
  }
  
  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .news-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }
  
  .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.1);
  }
  
  .news-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
  }
  
  .news-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #3a0ca3;
  }
  
  .news-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .read-more {
    color: #4361ee;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }
  
  .read-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
  }
  
  .read-more:hover::after {
    transform: translateX(5px);
  }
  
  /* Features Section - Base Styles */
.features-section {
  padding: 3rem 1.5rem;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2rem;
  color: #3a0ca3;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Features Grid - Responsive Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Feature Card Styles */
.feature-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  border-top: 4px solid #4361ee;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #4361ee;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #3a0ca3;
}

.feature-description {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .features-grid {
    gap: 1.25rem;
  }
  .feature-card {
    padding: 1.25rem;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 2.5rem 1.25rem;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .feature-icon {
    font-size: 2rem;
  }
  .feature-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 2rem 1rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
  }
  .section-header h2 {
    font-size: 1.6rem;
  }
  .feature-card {
    padding: 1.5rem 1rem;
  }
  .feature-icon {
    font-size: 1.8rem;
  }
}

  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-subtitle {
      font-size: 1.2rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .cta-button {
      width: 100%;
      max-width: 250px;
      text-align: center;
    }
    
    .journey-stats {
      gap: 1.5rem;
    }
    
    .stat {
      min-width: 120px;
      padding: 1rem;
    }
    
    .stat-number {
      font-size: 2rem;
    }
  }