.about-page {
  min-height: 100vh;
}

/* Mission and Vision Boxes */
.mission-vision-box {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.mission-vision-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(111, 66, 193, 0.15);
}

.mission-vision-box .box-image {
  height: 250px;
  overflow: hidden;
}

.mission-vision-box .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-vision-box .box-content {
  padding: 2rem;
}

.box-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #6f42c1;
  margin-bottom: 1rem;
}

.box-text {
  font-size: 1.05rem;
  color: #495057;
  line-height: 1.8;
}

/* What We Do Section */
.what-we-do-section {
  background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
  padding: 5rem 0;
}

.section-title-white {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.section-description-white {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin: 0 auto;
}

.stats-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.stats-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stats-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
}

.stats-number {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stats-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
}

/* Benefit Boxes */
.benefit-box {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(111, 66, 193, 0.15);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(111, 66, 193, 0.1) 0%, rgba(111, 66, 193, 0.05) 100%);
  border-radius: 50%;
  color: #6f42c1;
}

.benefit-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.75rem;
}

.benefit-text {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* About Blog Section */
.about-blog-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.blog-card-about {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card-about:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(111, 66, 193, 0.15);
}

.blog-image-about {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-title-about {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
}

.blog-meta-about {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-meta-about .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.9rem;
}

.blog-meta-about .meta-item svg {
  color: #6f42c1;
}

.blog-excerpt-about {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more-btn-about {
  background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
  border: none;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: white;
}

.read-more-btn-about:hover {
  background: linear-gradient(135deg, #5a32a3 0%, #4a2883 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
  color: white;
}

/* About CTA Section */
.about-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
}

.about-cta-section .cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.about-cta-section .cta-description {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.cta-button-large {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  border: none;
  padding: 1rem 3rem;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 8px;
  color: #212529;
  transition: all 0.3s ease;
}

.cta-button-large:hover {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
  color: #212529;
}

.content-section {
  margin-bottom: 3rem;
}

.content-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #6f42c1;
  margin-bottom: 1rem;
}

.content-text {
  font-size: 1.1rem;
  color: #495057;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-list {
  font-size: 1.1rem;
  color: #495057;
  line-height: 2;
  padding-left: 2rem;
}

.content-list li {
  margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
  .section-title-white {
    font-size: 2rem;
  }
  
  .section-description-white {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .box-heading {
    font-size: 1.5rem;
  }
  
  .box-text {
    font-size: 1rem;
  }
  
  .mission-vision-box .box-image {
    height: 200px;
  }
  
  .section-title-white {
    font-size: 1.75rem;
  }
  
  .stats-number {
    font-size: 2.5rem;
  }
  
  .stats-label {
    font-size: 1rem;
  }
  
  .stats-box {
    padding: 2rem 1rem;
  }
  
  .content-heading {
    font-size: 1.5rem;
  }
  
  .content-text {
    font-size: 1rem;
  }
  
  .benefit-title {
    font-size: 1rem;
  }
  
  .benefit-text {
    font-size: 0.9rem;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
  }
  
  .about-cta-section .cta-title {
    font-size: 2rem;
  }
  
  .about-cta-section .cta-description {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .mission-vision-box .box-content {
    padding: 1.5rem;
  }
  
  .mission-vision-box .box-image {
    height: 180px;
  }
  
  .box-heading {
    font-size: 1.25rem;
  }
  
  .section-title-white {
    font-size: 1.5rem;
  }
  
  .stats-number {
    font-size: 2rem;
  }
  
  .stats-icon {
    width: 60px;
    height: 60px;
  }
  
  .stats-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .benefit-box {
    padding: 1.5rem 1rem;
  }
  
  .about-cta-section .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-button-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: 100%;
  }
}.blog-page {
  min-height: 100vh;
}

.blog-page .container {
  padding: 4rem 0;
}

.blog-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(111, 66, 193, 0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.9rem;
}

.meta-item svg {
  color: #6f42c1;
}

.blog-excerpt {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more-btn {
  background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
  border: none;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: linear-gradient(135deg, #5a32a3 0%, #4a2883 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
}

@media (max-width: 992px) {
  .blog-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .blog-page .container {
    padding: 3rem 0;
  }
  
  .blog-title {
    font-size: 1.15rem;
  }
  
  .blog-excerpt {
    font-size: 0.95rem;
  }
  
  .meta-item {
    font-size: 0.85rem;
  }
  
  .blog-image {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .blog-page .container {
    padding: 2rem 0;
  }
  
  .blog-title {
    font-size: 1.1rem;
  }
  
  .blog-image {
    height: 160px;
  }
  
  .read-more-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
  }
}.blogpost-page {
  padding: 4rem 0;
  min-height: 100vh;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6f42c1;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 2rem;
  padding: 0;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #5a32a3;
}

.post-header {
  margin-bottom: 2rem;
}

.post-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.post-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 1rem;
}

.post-meta .meta-item svg {
  color: #6f42c1;
}

.post-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  margin-bottom: 3rem;
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #495057;
}

.post-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #212529;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.post-content p {
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .post-title {
    font-size: 2.25rem;
  }
  
  .post-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .post-title {
    font-size: 2rem;
  }
  
  .post-image {
    height: 250px;
  }
  
  .post-content {
    font-size: 1rem;
  }
  
  .post-content h2 {
    font-size: 1.5rem;
  }
  
  .post-meta .meta-item {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .blogpost-page {
    padding: 2rem 0;
  }
  
  .post-title {
    font-size: 1.5rem;
  }
  
  .post-image {
    height: 200px;
  }
  
  .post-content {
    font-size: 0.95rem;
  }
  
  .post-content h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
  }
  
  .back-link {
    font-size: 0.95rem;
  }
}.contact-page {
  min-height: 100vh;
}

.contact-page .container {
  padding: 4rem 0;
}

.contact-form-container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 3rem;
}

.contact-form-container .form-label {
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.5rem;
}

.contact-form-container .form-control,
.contact-form-container .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-container .form-control:focus,
.contact-form-container .form-select:focus {
  border-color: #6f42c1;
  box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.15);
}

.submit-button {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  border: none;
  padding: 0.875rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  color: #212529;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-button:hover {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
  color: #212529;
}

.contact-info-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(111, 66, 193, 0.15);
}

.info-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(111, 66, 193, 0.1) 0%, rgba(111, 66, 193, 0.05) 100%);
  border-radius: 50%;
  color: #6f42c1;
}

.contact-info-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.75rem;
}

.contact-info-card p {
  color: #6c757d;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .contact-info-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 2rem;
  }
  
  .contact-info-card h5 {
    font-size: 1.1rem;
  }
  
  .contact-info-card p {
    font-size: 0.95rem;
  }
  
  .info-icon {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 576px) {
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .submit-button {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
  
  .info-icon {
    width: 60px;
    height: 60px;
  }
  
  .contact-info-card {
    padding: 1.5rem;
  }
}.home-page {
  min-height: 100vh;
}

.hero-banner-section {
  background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-banner-overlay {
  background: linear-gradient(135deg, rgba(111, 66, 193, 0.85) 0%, rgba(90, 50, 163, 0.9) 100%);
  width: 100%;
  padding: 6rem 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  border: none;
  padding: 0.875rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  color: #212529;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
  color: #212529;
}

.secondary-button {
  border: 2px solid white;
  color: white;
  padding: 0.875rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  background: transparent;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background-color: white;
  color: #6f42c1;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  border-color: white;
}

.features-section {
  padding: 5rem 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.feature-card {
  border: none;
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(111, 66, 193, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(111, 66, 193, 0.1) 0%, rgba(111, 66, 193, 0.05) 100%);
  border-radius: 16px;
  color: #6f42c1;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
}

.feature-text {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-link {
  color: #6f42c1;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.feature-link:hover {
  color: #5a32a3;
  text-decoration: underline;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
  color: white;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-description {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.cta-button-large {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  border: none;
  padding: 1rem 3rem;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 8px;
  color: #212529;
  transition: all 0.3s ease;
}

.cta-button-large:hover {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
  color: #212529;
}

/* Who We Are Section */
.who-we-are-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.who-we-are-image img {
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  width: 100%;
  height: auto;
}

.who-we-are-content {
  padding-left: 2rem;
}

.who-description {
  font-size: 1.1rem;
  color: #495057;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Home Blog Section */
.home-blog-section {
  padding: 5rem 0;
  background: white;
}

.blog-card-home {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card-home:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(111, 66, 193, 0.15);
}

.blog-image-home {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-title-home {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-meta-home {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-meta-home .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.9rem;
}

.blog-meta-home .meta-item svg {
  color: #6f42c1;
}

.blog-excerpt-home {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more-btn-home {
  background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
  border: none;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: white;
}

.read-more-btn-home:hover {
  background: linear-gradient(135deg, #5a32a3 0%, #4a2883 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
  color: white;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.faq-accordion .accordion-item {
  border: none;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-accordion .accordion-button {
  background: white;
  color: #212529;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.25rem 1.5rem;
  border: none;
  transition: background-color 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
  color: white;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.faq-accordion .accordion-button::after {
  filter: brightness(0);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
  padding: 1.5rem;
  font-size: 1.05rem;
  color: #495057;
  line-height: 1.8;
  background: white;
}

/* Tablet and below */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .who-we-are-content {
    padding-left: 0;
    margin-top: 2rem;
  }
  
  .hero-banner-overlay {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-button,
  .secondary-button,
  .cta-button-large {
    width: 100%;
    margin: 0.5rem 0;
  }
  
  .feature-card {
    margin-bottom: 1.5rem;
  }
  
  .who-description {
    font-size: 1rem;
  }
  
  .stats-number {
    font-size: 2.5rem;
  }
  
  .stats-label {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-banner-overlay {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
  
  .cta-button,
  .secondary-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-title {
    font-size: 1.1rem;
  }
  
  .faq-accordion .accordion-button {
    font-size: 1rem;
    padding: 1rem;
  }
}.legal-page {
  padding: 4rem 0;
  min-height: 100vh;
  background-color: #f8f9fa;
}

.legal-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6f42c1;
  margin-bottom: 1rem;
}

.legal-section p {
  font-size: 1.05rem;
  color: #495057;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.legal-section li {
  font-size: 1.05rem;
  color: #495057;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
  .legal-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .legal-page {
    padding: 3rem 0;
  }
  
  .legal-title {
    font-size: 2rem;
  }
  
  .legal-updated {
    font-size: 0.95rem;
  }
  
  .legal-section {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .legal-section h2 {
    font-size: 1.35rem;
  }
  
  .legal-section p,
  .legal-section li {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .legal-page {
    padding: 2rem 0;
  }
  
  .legal-title {
    font-size: 1.75rem;
  }
  
  .legal-section {
    padding: 1.25rem;
  }
  
  .legal-section h2 {
    font-size: 1.25rem;
  }
  
  .legal-section p,
  .legal-section li {
    font-size: 0.95rem;
  }
}/* Purple Header for all pages */
.page-header-section {
  background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
  padding: 4rem 0 3rem;
  margin-bottom: 3rem;
}

.page-header-section .page-title {
  color: white;
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header-section .lead-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .page-header-section {
    padding: 3rem 0 2.5rem;
  }
  
  .page-header-section .page-title {
    font-size: 2.25rem;
  }
  
  .page-header-section .lead-text {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .page-header-section {
    padding: 2.5rem 0 2rem;
    margin-bottom: 2rem;
  }
  
  .page-header-section .page-title {
    font-size: 2rem;
  }
  
  .page-header-section .lead-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-header-section {
    padding: 2rem 0 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .page-header-section .page-title {
    font-size: 1.75rem;
  }
  
  .page-header-section .lead-text {
    font-size: 0.95rem;
  }
}
.rankings-page {
  min-height: 100vh;
}

.rankings-page .container {
  padding: 2rem 0 4rem;
}

/* Ranking Intro Section */
.ranking-intro-section {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.ranking-intro-title {
  font-size: 2rem;
  font-weight: 700;
  color: #6f42c1;
  margin-bottom: 1.5rem;
}

.ranking-intro-text {
  font-size: 1.1rem;
  color: #495057;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.ranking-intro-text:last-child {
  margin-bottom: 0;
}

.rankings-table-container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  overflow-x: auto;
}

.rankings-table {
  margin-bottom: 0;
}

.rankings-table thead {
  background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
  color: white;
}

.rankings-table thead th {
  border: none;
  padding: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

.rankings-table thead tr th:first-child {
  border-radius: 8px 0 0 0;
}

.rankings-table thead tr th:last-child {
  border-radius: 0 8px 0 0;
}

.rankings-table tbody tr {
  transition: all 0.3s ease;
}

.rankings-table tbody tr:hover {
  background-color: rgba(111, 66, 193, 0.05);
  transform: scale(1.01);
}

.rankings-table td {
  padding: 1rem;
  vertical-align: middle;
}

.rank-cell {
  font-weight: 700;
  color: #6f42c1;
  font-size: 1.1rem;
}

.name-cell {
  font-weight: 600;
  color: #212529;
}

.score-cell {
  font-weight: 600;
  color: #28a745;
}

.rating-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.scholarship-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.scholarship-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(111, 66, 193, 0.15);
}

.rank-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.scholarship-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1.5rem;
  padding-right: 60px;
}

.scholarship-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #495057;
  font-size: 1rem;
}

.detail-item svg {
  color: #6f42c1;
  flex-shrink: 0;
}

/* Ranking Cards */
.ranking-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

.ranking-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(111, 66, 193, 0.15);
}

.rank-badge-large {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
}

.ranking-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1.5rem;
  padding-right: 70px;
  line-height: 1.3;
}

.ranking-card-details {
  margin-bottom: 1rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 600;
  color: #6c757d;
  font-size: 0.95rem;
}

.detail-value {
  font-weight: 600;
  color: #212529;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.score-highlight {
  color: #28a745;
  font-size: 1.1rem;
}

.apply-now-btn {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  color: #212529;
  width: 100%;
  transition: all 0.3s ease;
}

.apply-now-btn:hover {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
  color: #212529;
}

/* Ranking Blog Section */
.ranking-blog-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.blog-card-ranking {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card-ranking:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(111, 66, 193, 0.15);
}

.blog-image-ranking {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-title-ranking {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-meta-ranking {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-meta-ranking .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.9rem;
}

.blog-meta-ranking .meta-item svg {
  color: #6f42c1;
}

.blog-excerpt-ranking {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more-btn-ranking {
  background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
  border: none;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: white;
}

.read-more-btn-ranking:hover {
  background: linear-gradient(135deg, #5a32a3 0%, #4a2883 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
  color: white;
}

/* Ranking FAQ Section */
.ranking-faq-section {
  padding: 5rem 0;
  background: white;
}

/* Ranking CTA Section */
.ranking-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
}

.ranking-cta-section .cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.ranking-cta-section .cta-description {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button-outline {
  border: 2px solid white;
  color: white;
  padding: 1rem 3rem;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 8px;
  background: transparent;
  transition: all 0.3s ease;
}

.cta-button-outline:hover {
  background-color: white;
  color: #6f42c1;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
  .ranking-intro-title {
    font-size: 1.75rem;
  }
  
  .ranking-intro-section {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .rankings-table-container {
    padding: 1rem;
  }
  
  .ranking-intro-section {
    padding: 1.5rem;
  }
  
  .ranking-intro-title {
    font-size: 1.5rem;
  }
  
  .ranking-intro-text {
    font-size: 1rem;
  }
  
  .scholarship-name {
    font-size: 1.25rem;
  }
  
  .ranking-card-title {
    font-size: 1.25rem;
    padding-right: 70px;
  }
  
  .rank-badge-large {
    width: 50px;
    height: 50px;
    font-size: 1rem;
    right: 15px;
    top: -10px;
  }
  
  .rank-badge {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .detail-label,
  .detail-value {
    font-size: 0.9rem;
  }
  
  .apply-now-btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .ranking-cta-section .cta-title {
    font-size: 2rem;
  }
  
  .ranking-cta-section .cta-description {
    font-size: 1rem;
  }
  
  .blog-title-ranking {
    font-size: 1.1rem;
  }
  
  .blog-excerpt-ranking {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .ranking-intro-section {
    padding: 1.25rem;
  }
  
  .ranking-intro-title {
    font-size: 1.25rem;
  }
  
  .ranking-intro-text {
    font-size: 0.95rem;
  }
  
  .ranking-card {
    margin-bottom: 1rem;
  }
  
  .ranking-card-title {
    font-size: 1.1rem;
    padding-right: 60px;
  }
  
  .rank-badge-large {
    width: 45px;
    height: 45px;
    font-size: 0.9rem;
    right: 10px;
    top: -8px;
  }
  
  .scholarship-name {
    font-size: 1.1rem;
    padding-right: 55px;
  }
  
  .rank-badge {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  .scholarship-card .detail-item {
    font-size: 0.9rem;
  }
  
  .ranking-cta-section .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-button-large,
  .cta-button-outline {
    width: 100%;
    margin: 0.5rem 0;
    padding: 0.875rem 2rem;
  }
  
  .blog-image-ranking {
    height: 180px;
  }
  
  .faq-accordion .accordion-button {
    font-size: 0.95rem;
    padding: 1rem;
  }
  
  .faq-accordion .accordion-body {
    font-size: 0.95rem;
    padding: 1rem;
  }
}.thankyou-page {
  padding: 6rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%);
  border-radius: 50%;
  color: #28a745;
}

.thankyou-title {
  font-size: 3rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1.5rem;
}

.thankyou-message {
  font-size: 1.25rem;
  color: #6c757d;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.thankyou-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.home-button {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  border: none;
  padding: 0.875rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  color: #212529;
  transition: all 0.3s ease;
}

.home-button:hover {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
  color: #212529;
}

.blog-button {
  border: 2px solid #6f42c1;
  color: #6f42c1;
  padding: 0.875rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  background: transparent;
  transition: all 0.3s ease;
}

.blog-button:hover {
  background-color: #6f42c1;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(111, 66, 193, 0.3);
}

@media (max-width: 768px) {
  .thankyou-title {
    font-size: 2rem;
  }
  
  .thankyou-message {
    font-size: 1rem;
  }
  
  .success-icon {
    width: 100px;
    height: 100px;
  }
  
  .home-button,
  .blog-button {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .thankyou-page {
    padding: 4rem 0;
  }
  
  .thankyou-title {
    font-size: 1.75rem;
  }
  
  .thankyou-message {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .success-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }
  
  .thankyou-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .home-button,
  .blog-button {
    width: 100%;
    margin: 0.5rem 0;
  }
}.lead-modal .modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.lead-modal-header {
  background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
  color: white;
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  padding: 1.5rem;
}

.lead-modal-header .modal-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.lead-modal-header .btn-close {
  filter: brightness(0) invert(1);
}

.lead-modal-body {
  padding: 2rem;
}

.lead-description {
  color: #495057;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.lead-modal-body .form-label {
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.5rem;
}

.lead-modal-body .form-control,
.lead-modal-body .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.lead-modal-body .form-control:focus,
.lead-modal-body .form-select:focus {
  border-color: #6f42c1;
  box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.15);
}

.submit-btn {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  color: #212529;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

@media (max-width: 768px) {
  .lead-modal-header {
    padding: 1.25rem;
  }
  
  .lead-modal-header .modal-title {
    font-size: 1.35rem;
  }
  
  .lead-modal-body {
    padding: 1.5rem;
  }
  
  .lead-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .lead-modal-header .modal-title {
    font-size: 1.25rem;
  }
  
  .lead-modal-body {
    padding: 1.25rem;
  }
  
  .lead-description {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  
  .submit-btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
  }
}