/* CSS Custom Properties for consistent theming */
:root {
  --primary-color: #4fc3d7;
  --primary-dark: #3aafcc;
  --purple-primary: #8b5cf6;
  --purple-dark: #7c3aed;
  --secondary-color: #f8f9fa;
  --text-primary: #2c3e50;
  --text-secondary: #6c757d;
  --text-light: #adb5bd;
  --white: #ffffff;
  --warning: #ffc107;
  --border-color: #e9ecef;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Popppins", sans-serif;
  color: black;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 70px;
}

/* Header Styles */
.header {
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

.logo-animation {
  animation: logoFloat 3s ease-in-out infinite;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0.5rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Dropdown arrow positioning */
.dropdown-toggle::after {
  display: none;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: var(--transition);
}

.nav-link.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

/* Mobile responsive styles */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 20px;
  position: relative;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition);
}

.navbar-toggler span:nth-child(1) {
  top: 0;
}

.navbar-toggler span:nth-child(2) {
  top: 8px;
}

.navbar-toggler span:nth-child(3) {
  top: 16px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  left: -20px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

.cta-button {
  font-weight: bold;
  background-color: rgb(211, 211, 211);
  border-radius: 20px;
}

/* Mobile menu adjustments */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding: 1rem 0;
  }

  .width{
    width: 100% !important;
  }

  .img-contain{
    margin-top: 30px;
  }

  .nav-item {
    margin: 0.5rem 0;
    width: 100%;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    justify-content: flex-start;
    width: 100%;
  }

  .nav-link:hover {
    background-color: rgba(58, 134, 255, 0.1);
  }

  .dropdown-menu {
    border: none;
    box-shadow: none;
    padding-left: 1.5rem;
    background-color: rgba(58, 134, 255, 0.05);
    width: 100%;
  }

  .dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
  }

  .cta-button {
    /* border: 2px solid rgb(253, 142, 142); */
    background-color: rgb(211, 211, 211);
    margin-top: 1rem;
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  /* Fix alignment for all nav items */
  .navbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    padding-left: 1rem;
  }

  /* Adjust logo size on mobile */
  .navbar-brand img {
    height: 50px;
  }

  /* Ensure all nav items have the same alignment */
  .navbar-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Desktop specific styles */
@media (min-width: 992px) {
  .dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
  }

  .dropdown-item {
    padding: 0.5rem 1rem;
    transition: var(--transition);
  }

  .dropdown-item:hover {
    background-color: rgba(58, 134, 255, 0.1);
  }

  .nav-link .dropdown-arrow {
    margin-left: 0.25rem;
  }

  /* Desktop specific alignment */
  .navbar-nav .nav-item .nav-link {
    justify-content: center;
  }
}

.hero-section{
  background-image: url("../images/scholarship/hero-scholarship.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-btn {
  font-weight: 800;
  background-color: #169b62;
  padding: 15px 30px;
  border-radius: 50px;
  color: white;
 }
.hero-btn:hover {
border-color: #169b62;
color: #169b62;
}
/* Smooth scrolling for any anchor links */
html {
  scroll-behavior: smooth;
}

/* Main Section */
.scholarship-section-matters {
  font-family: "Poppins";
  color:#000000;
  background-color: #f9fafb;
  padding: 3rem 1rem;
}

.main-container-matters {
  /* border: 2px solid; */
  margin: 0 auto;
}

.two-column-grid-matters {
  display: grid;
  gap: 3rem;
  align-items: center;
}

/* Content Column (Left) */
.content-column-matters {
  animation: slideInLeft 0.8s ease-out;
}

.badge-container-matters {
  margin-bottom: 2rem;
  animation: fadeIn 0.8s ease-out;
}

.scholarship-badge-matters {
  display: inline-flex;
  align-items: center;
  padding: 3px 15px;
  background-color: #d0ebe0;
  color: #169b62;
  font-family: "Poppins";
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
}
.scholarship-badge-matters-1 {
  display: inline-flex;
  align-items: center;
  padding: 3px 15px;
  background-color: #d0ebe0;
  color: #169b62;
  font-family: "Poppins";
  font-weight: 600;
  border-radius: 9999px;
}
.main-heading-matters-1{
  font-family: "Poppins";
  font-size: 35px;
  line-height: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 2rem;
  animation: slideUp 0.6s ease-out;

}

.main-heading-matters {
  font-size: 35px;
  line-height: 2.5rem;
  font-weight: bold;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 1rem;
  animation: slideUp 0.6s ease-out;
}

.highlighted-text-matters {
  color: #169b62;
}
.main-description-matters-1 {
  color: #000000;
  font-family: "Roboto";
  font-size: 18px;
  line-height: 1.625;
  margin-bottom: 2rem;
  animation: slideUp 0.6s ease-out;
}

.main-description-matters {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 450;
  line-height: 1.625;
  margin-bottom: 2rem;
  animation: slideUp 0.6s ease-out;
}

/* Features */
.features-container-matters {
  display: flex;
  flex-direction: column;
  /* gap: 1rem; */
}

.feature-item-matters {
  /* border: 2px solid; */
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  transition: transform 0.1s ease-out;
  animation: slideUp 0.6s ease-out;
}

.feature-item-matters:hover {
  transform: translateX(10px);
}

.icon-wrapper-matters {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-content-matters {
  flex: 1;
}

.feature-title-matters {
  font-family: "Roboto";
  font-size: 23px;
  font-weight: bold;
  color: #000000;
  /* margin-bottom: ; */
}
.feature-title-matters-1 {
  font-family: "Roboto";
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  /* margin-bottom: ; */
}
.feature-description-matters {
  font-family: "Roboto";
  font-size: 16px;
  color: #000000;
  line-height: 1.625;
}
.feature-description-matters-1 {
  font-family: "Roboto";
  font-size: 16px;
  color: #000000;
  line-height: 1.625;
}

/* Report Card Column (Right) */
/* Report Card Column (Right) */
.report-column-matters {
  position: relative;
  animation: slideInRight 0.8s ease-out;
}

.report-card-matters {
  min-height: 300px;
  /* Changed from fixed height to min-height for flexibility */
  border: 2px solid;
  position: relative;
  background-color: #1f2937;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  transition: transform 0.3s ease-out;
}
.report-points{
  font-family: "Roboto";
}
.report-card-matters:hover {
  transform: scale(1.05);
}

.report-background-matters {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* background-image: url("https://images.unsplash.com/photo-1541339907198-e08756dedf3f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&h=1080"); */
  background-image:url("../images/scholarship/site.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-position: top;
}
.report-background-matters-2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* background-image: url("https://images.unsplash.com/photo-1541339907198-e08756dedf3f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&h=1080"); */
  background-image:url("../images/scholarship/site2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-position: top;
}
.report-overlay-matters {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom right,
      rgb(17 24 39 / 0.8),
      rgb(31 41 55 / 0.7),
      rgb(17 24 39 / 0.9));
}
.report-overlay-matters-2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom right,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.7),
      rgb(17 24 39 / 0.9));
}

.report-content-matters {
  position: relative;
  z-index: 10;
  padding: 2rem;
  margin-top: 50px;
}

.report-title-matters {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.report-year-matters {
  color: #34d399;
}

.report-description-matters {
  color: #ffffff;
  font-family: "Roboto";
  font-size: 18px;
  font-weight: 500;
  line-height: 1.625;
  margin-bottom: 2rem;
  width:75%;
}

.download-button-matters {
  margin-top: 50px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  padding: 0.75rem 2rem;
  background-color: #169b62;
  color: #ffffff;
  border-radius: 0px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.download-button-matters-1 {
  margin-top: 50px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  background-color: #169b62;
  color: #ffffff;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.download-button-matters:hover {
  background-color: #169b62;
  transform: scale(1.05);
  box-shadow: 0 10px 25px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -2px rgb(0 0 0 / 0.05);
}
.download-button-matters-1:hover {
  background-color: #169b62;
  transform: scale(1.05);
  box-shadow: 0 10px 25px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -2px rgb(0 0 0 / 0.05);
}

.download-button-matters:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px #6ee7b7;
}
.download-button-matters-1:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px #6ee7b7;
}

.download-icon-matters {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (min-width: 1024px) {
  .two-column-grid-matters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }

  /* .main-heading-matters {
    font-size: 2rem;
    line-height: 1;
  } */

  .report-title-matters {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .report-description-matters {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .report-content-matters {
    padding: 2.5rem;
  }
}

@media (max-width: 1023px) {
  .main-heading-matters {
    font-size: 2.25rem;
  }

  .report-content-matters {
    padding: 2rem;
  }

  .two-column-grid-matters {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .report-card-matters {
    min-height: 400px;
    /* Adjust min-height for tablets */
  }

  .report-content-matters {
    padding: 1.5rem;
    margin-top: 30px;
  }

  .report-title-matters {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .report-description-matters {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .download-button-matters {
    margin-top: 30px;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }
   .download-button-matters-1 {
    margin-top: 30px;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }

  /* Reduce animation intensity for smaller screens */
  .report-column-matters {
    animation: slideUp 0.6s ease-out;
    /* Change to slideUp for better mobile feel */
  }

  .report-card-matters:hover {
    transform: scale(1.02);
    /* Softer scale on hover */
  }
}

@media (max-width: 480px) {
  .report-card-matters {
    min-height: 350px;
    /* Further adjust for mobile phones */
  }

  .report-content-matters {
    padding: 1rem;
    margin-top: 20px;
  }

  .report-title-matters {
    font-size: 1.25rem;
  }

  .report-description-matters {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .download-button-matters {
    margin-top: 20px;
    padding: 0.5rem 1rem;
    width: 100%;
    border-radius: 0;
    /* Full width button on small screens */
    justify-content: center;
  }
  .download-button-matters-1 {
    margin-top: 20px;
    padding: 0.5rem 1rem;
    width: 100%;
    border-radius: 0;
    /* Full width button on small screens */
    justify-content: center;
  }
  

  ul {
    padding-left: 1rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 1023px) {
  .main-heading-matters {
    font-size: 2.25rem;
  }

  .report-content-matters {
    padding: 2rem;
  }

  .two-column-grid-matters {
    grid-template-columns: 1fr;
  }
}

.study-abroad-section {
  font-family: "Poppins";
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  color: black;
}

.top-courses-badge {
  padding: 3px 18px;
  background-color: #d0ebe0;
  color: #169b62;
  border-radius: 25px;
  font-family: "Poppins";
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 0.8s ease forwards;
}

.main-heading {
  color: #000000;
  font-size: 2 0.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.3s forwards;
}

.main-heading .heading {
  color: orange;
}

.subtitle {
  color: #000000;
  font-size: 20px;
  font-weight: 450;
  margin-bottom: 32px;
  opacity: 0;
  max-width: 75%;
  transform: translateY(20px);
  animation: fadeInUp 1s ease 0.6s forwards;
}

.category-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease 0.9s forwards;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-buttons::-webkit-scrollbar {
  display: none;
}

.category-btn {
  font-size: 18px;
  padding: 12px 50px;
  border-radius: 10px;
  border: 2px solid #000000;
  background: white;
  /* color: #169b62#0d9284; */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  color: #012169;
}

.category-btn.active {
  text-decoration: none;
  background: #0d9284;
  color: white;
  border-color: #0d9284;
}

/* .category-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: #1a73e8;
  border-color: #169b62;
} */

.category-btn.active:hover {
  /* transform: translateY(-2px); */
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
  color: white;
}

.description-text {
  font-family: "Roboto";
  font-size: 20px;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease 1.2s forwards;
  max-width: 520px;
}
.description-text-1{
  font-family: "Roboto";
  font-size: 20px;

}

.consultation-btn {
  background: transparent;
  border: solid #000000;
  color: #000000;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease 1.5s forwards;
  font-size: 17px;
}

.consultation-btn:hover {
  background: #169b62;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #08db80;
}

.image-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  opacity: 0;
  animation: fadeIn 1.2s ease 1.8s forwards;
}

.university-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  opacity: 70%;
}

.stat-callout {
  position: absolute;
  background: #fffdfd;
  color: rgb(0, 0, 0);
  border-radius: 10px;
  border: 2px solid black;
  padding: 8px 16px;
  box-shadow: 2px 2px black;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transform: scale(0);
  animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  z-index: 3;
}

.stat-callout::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}

.stat-callout.stat-1 {
  top: -1px;
  left: 25%;
  animation-delay: 2.2s;
}

.stat-callout.stat-2 {
  top: 50px;
  right: 65px;
  transform-origin: right center;
  animation-delay: 2.5s;
}
.stat-callout.stat-3 {
  bottom: 0px;
  right: 125px;
  animation-delay: 2.8s;
}

.blue-circle {
  display: none;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  to {
    transform: scale(1);
  }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .main-heading {
    font-size: 2.8rem;
  }

  .university-image {
    width: 280px;
    height: 280px;
  }

  .blue-circle {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 2.4rem;
  }

  .category-buttons {
    gap: 6px;
    padding-right: 20px;
  }

  .category-btn {
    padding: 8px 12px;
    font-size: 12px;
    min-width: fit-content;
  }

  .university-image {
    width: 250px;
    height: 250px;
  }

  .blue-circle {
    width: 280px;
    height: 280px;
  }

  .stat-callout {
    font-size: 12px;
    padding: 6px 12px;
  }

  .stat-callout.stat-2 {
    left: -60px;
  }
}

@media (max-width: 576px) {
  .study-abroad-section {
    padding: 40px 0;
  }

  .main-heading {
    font-size: 2rem;
  }

  .category-buttons {
    gap: 4px;
    padding-right: 20px;
  }

  .category-btn {
    padding: 6px 10px;
    font-size: 14px;
    min-width: fit-content;
    font-weight: bold;
  }
  .consultation-btn{
    margin-bottom: 20px;
  }

  .university-image {
    width: 220px;
    height: 220px;
  }

  .blue-circle {
    width: 250px;
    height: 250px;
  }

  .stat-callout.stat-2 {
    left: 200px;

  }

  .stat-callout.stat-3 {
    margin-right: 10px;
  }
}

/* Hover effects */
.content-section:hover .category-btn:not(:hover):not(.active) {
  opacity: 0.7;
  transform: scale(0.98);
}

.image-section:hover .university-image {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.image-section:hover .stat-callout {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Container */
.container-flagship {
  min-height: 100vh;
}

/* Main Section */
.section-flagship {
  font-family: "Poppins";
  color: #000000;
  position: relative;
  padding: 4rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background */
.background-flagship {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(132, 125, 125, 0.338)), url('../images/bg-cover.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.background-flagship::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

/* Content Wrapper */
.content-wrapper-flagship {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

/* Header Section */
.header-flagship {
  text-align: center;
  margin-bottom: 4rem;
}

.badge-wrapper-flagship {
  display: inline-block;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.1s forwards;
}

.badge-flagship {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  background-color: #169b62;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.heading-flagship {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 1.5rem 0;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease-out 0.2s forwards;
}

.accent-flagship {
  color: #3adf99;
}

.subtitle-flagship {
  font-family: "Roboto";
  font-size: 18px;
  color: #ffffff;
  max-width: 60%;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease-out 0.3s forwards;
}

/* Grid */
.grid-flagship {
  /* border: 2px solid; */
  display: grid;
  grid-template-columns: 1fr;
  gap: 7rem;
  /* max-width: 86%; */
  margin: 0px 90px 40px 78px;
}

/* Cards */
.card-flagship {
  border: 12px rgb(0, 0, 0);
  background-color: #ebe9e9;
  border-radius: 1rem;
  padding: 55px 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}

.card-flagship:nth-child(1) {
  animation: slideUp 0.8s ease-out 0.4s forwards;
}

.card-flagship:nth-child(2) {
  animation: slideUp 0.8s ease-out 0.5s forwards;
}

.card-flagship:nth-child(3) {
  animation: slideUp 0.8s ease-out 0.6s forwards;
}

.card-flagship:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
}

.card-content-flagship {
  margin-bottom: 1.5rem;
}

.card-title-flagship {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-desc-flagship {
  font-family: "Roboto";
  font-size: 18px;
  line-height: 1.6;
}

/* Statistics */
.stats-flagship {
  margin-bottom: 2rem;
}

.stats-primary-flagship,
.stats-grant-flagship {
  font-family: "Roboto";
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.stat-label-flagship {
  font-weight: 500;
}

/* Bottom Section */
.bottom-section-flagship {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 1rem; */
}

.eligibility-text-flagship {
  font-family: "Roboto";
  font-size: 12px;
  color: #000000;
  flex: 1;
}

.btn-flagship {
  background-color: #169b62;
  color: #ffffff;
  padding: 0.4rem 0.9rem;
  border-radius: 5px;
  font-size:10px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-flagship:hover {
  background-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
}

/* Animations */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .section-flagship {
    padding: 4rem 2rem;
  }

  .grid-flagship {
    grid-template-columns: repeat(2, 1fr);
  }

  /* .heading-flagship {
    font-size: 2rem;
  } */

  /* .subtitle-flagship {
    font-size: 1rem;
  } */
}

@media (min-width: 1024px) {
  .grid-flagship {
    grid-template-columns: repeat(3, 1fr);
  }
  /* .heading-flagship {
    font-size: 2rem;
  }
} */

@media (max-width: 640px) {
  /* ... (other styles remain unchanged) */

  .grid-flagship {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 2rem;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .card-flagship {
    width: 100%;
    max-width: 380px;
  }
}


.faq-heading {
  text-align: center;
  font-weight: bold;
  margin-bottom: 2rem;
  font-size: 28px;
}

.faq-box {
  margin-bottom: 1rem;
}

.faq-item {
  width: 100%;
  background-color: #169b62;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border: none;
  text-align: left;
  padding: 10px 20px;
  border-radius: 5px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item.collapsed {
  background-color: #a6a6a6;
  color: white;
}

.faq-item i {
  margin-left: 10px;
  transition: transform 0.3s ease;
  color: white;
}

.faq-item:not(.collapsed) i {
  transform: rotate(180deg);
}

.faq-body {
  background: transparent;
  padding: 15px 20px;
  color: #333;
  font-weight: normal;
}

/* Hero Banner Styles */
.hero-banner {
  background: linear-gradient(180deg, #2c4d42e3 100%, #2d3748de 100%), url("../images/scholarship/scholar-last.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  max-width: 84%;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.hero-title {
  font-size: 42px;
  font-family: "Poppins";
  font-weight: 700;
}
.hero-subtext {
  font-family: "Roboto";
  font-size: 20px;
  font-weight: 420;
  text-align: justify;
  width: 70%;
  color: #000000;
}

.hero-title-2 {
  font-family: "Poppins";
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 30px;
  text-align: left;
}

.hero-subtitle {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 0 30px;
  text-align: justify;
  max-width: 75%;
}

.btn-consultation-2 {
  background: #169b62;
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 36px;
  border: none;
  border-radius: 0;
  margin-right: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: slideInUp 0.8s ease-out 0.9s forwards;
  transform: translateY(20px);
}

.btn-consultation-2:hover {
  background: #08db80;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #08db80;
  color: white;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Background geometric shapes */
.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: 10%;
  background: rgba(139, 92, 246, 0.2);
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: 5%;
  background: rgba(16, 185, 129, 0.2);
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 5%;
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-banner {
    padding: 40px 0;
    max-width: 90%;
  }

  .hero-title-2 {
    font-size: 2rem;
    text-align: center;
    margin: 0 0 20px 0;
  }

  .hero-subtitle {
    font-size: 1rem;
    text-align: justify;
    margin: 0 15px 20px 15px;
  }

  .btn-consultation-2 {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .text-end {
    text-align: center !important;
  }

  .shape-1 {
    width: 150px;
    height: 150px;
    top: -30px;
    right: 5%;
  }

  .shape-2 {
    width: 100px;
    height: 100px;
    bottom: -20px;
    left: 3%;
  }

  .shape-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 3%;
  }
}

@media (max-width: 575.98px) {
  .hero-banner {
    padding: 30px 0;
    max-width: 95%;
    border-radius: 12px;
  }

  .hero-title-2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 10px 15px 10px;
    text-align: justify;
  }

  .btn-consultation-2 {
    padding: 12px 24px;
    font-size: 0.85rem;
    margin: 0 auto;
  }

  .shape-1 {
    width: 100px;
    height: 100px;
    top: -20px;
  }

  .shape-2 {
    width: 80px;
    height: 80px;
    bottom: -15px;
  }

  .shape-3 {
    width: 60px;
    height: 60px;
    top: 65%;
  }
}

/* Footer Styles */

.footer-section {
  background: rgb(203 164 235 / 15%);
  padding: 60px 0 0;
  color: #4a5568;
}

.footer-brand {
  margin-bottom: 30px;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo-icon {
  margin-right: 12px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #8b5cf6;
}

.footer-description {
  text-align: justify;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #718096;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #8b5cf6;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #7c3aed;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #718096;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #8b5cf6;
}

.contact-info {
  font-size: 0.95rem;
}

.contact-item {
  margin-bottom: 15px;
  color: #718096;
}

.contact-item strong {
  color: #4a5568;
}

/* Quote Section Styles */
.quote-section {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  border-left: 4px solid #8b5cf6;
}

.quote-mark {
  font-size: 3rem;
  color: #8b5cf6;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.quote-content {
  font-size: 1.1rem;
  line-height: 1.4;
}

.quote-text-1 {
  color: #4a5568;
  font-weight: 500;
}

.quote-text-2 {
  color: #8b5cf6;
  font-weight: 700;
  font-style: italic;
}

.quote-text-3 {
  color: #8b5cf6;
  font-weight: 700;
}

.quote-attribution {
  color: #718096;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 5px;
}

.success-description {
  font-size: 0.95rem;
  color: #718096;
  margin-bottom: 25px;
}

.btn-journey {
  /* background: #8b5cf6; */
  color: #000000;
  border: 2px solid black;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-journey:hover {
  background: #7c3aed;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  background: #e2e8f0;
  padding: 20px 0;
  margin-top: 50px;
}

.footer-copyright {
  color: #718096;
  font-size: 0.9rem;
  padding-bottom: 18px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    text-align: center;
    margin-bottom: 30px;
  }

  .btn-consultation {
    display: block;
    text-align: center;
    margin: 0 auto;
  }

  .footer-section {
    padding: 40px 0 0;
  }
}

@media (max-width: 767.98px) {
  .hero-banner {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-consultation {
    font-size: 1rem;
    padding: 12px 25px;
  }

  .quote-section {
    padding: 20px;
  }

  .quote-mark {
    font-size: 2.5rem;
  }

  .quote-content {
    font-size: 1rem;
  }

}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .quote-section {
    padding: 15px;
  }

  .btn-consultation {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .btn-journey {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

/* Hover effects for better interactivity */
.footer-links a,
.contact-item {
  transition: all 0.3s ease;
}

.footer-links a:hover {
  padding-left: 5px;
}

/* Focus states for accessibility */
.btn-consultation:focus,
.btn-journey:focus,
.social-link:focus {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
}
}


/*faqs*/
/*faqs*/

.faq-section-matters {
  font-family: "Poppins";
  color:#000000;
  padding-bottom: 100px;
  max-width: 84%;
  margin: 0px auto;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.accordion {
  padding: 80px 80px;
  background-color: #f1f1f1;
}


.h1style {
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 130px;
  margin-bottom: -36px;
  color: #f1f1f1;
}

.faq-box {
  margin-bottom: 1rem;
}

.faq-item {
  width: 100%;
  background-color: #169b62;
  color: white;
  font-family: "Poppins";
  font-weight: bold;
  font-size: 18px;
  border: none;
  text-align: left;
  padding: 10px 20px;
  border-radius: 11px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item.collapsed {
  background-color: #a6a6a6;
  color: white;
}

.faq-item i {
  margin-left: 10px;
  transition: transform 0.3s ease;
  color: white;
}

.faq-item:not(.collapsed) i {
  transform: rotate(180deg);
}

.faq-body {
  background: transparent;
  padding: 15px 20px;
  color: #000000;
  font-weight: normal;
  font-size: 15px;
}

.accordion-button {
  background-color: #a6a6a6;
  color: white;
  font-family: "Poppins";
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 14px;
}

.accordion-button::after {
  background-image: none;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.accordion-button:not(.collapsed) {
  background-color: #169b62 !important;
  color: #fff;
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.accordion-body {
  /* background-color: white; */
  border-radius: 6px;
  padding: 15px 20px;
}

.accordion-item {
  border: none;
  background: transparent;
}

