body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* ---- NAVBAR STYLES ---- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0b3d91;
  text-decoration: none !important;

}

.logo a {
  text-decoration: none;
  color: #0b3d91;}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.nav-links a {
  border-radius: 17px;
  background-color: #f4f4f5;
  padding: 1rem 1rem;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  
}

.donate-btn {
  background: #0b63f6;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.donate-btn:hover {
  background: #0841a5;
}

/* Hamburger button */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  border-radius: 12px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 12px;
}

/* ---- PAGE SECTIONS ---- */
.section {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.about .content {

  max-width: 1200px;
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow-wrap: normal;
}

.about .image {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
}

.where {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.where .text { 
  padding: 2rem;
  border-radius: 12px;;
  flex: 1;
}

.where .media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.where .media .image {
  width: 250px;
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
}

.qr img {
  width: 120px;
  height: 120px;
}

.qr p {
  margin-top: 0.5rem;
  font-weight: bold;
  text-align: center;
}

/* ---- DONATE PAGE STYLES ---- */
.donate-section {
  position: relative;
  text-align: center;
  padding: 4rem 2rem;
  overflow: hidden;
  min-height: 100vh;
}

.h2{
  text-align: center;
  margin-bottom: 2rem;
font-weight: bold;
}

.donate-section h1 {
  font-size: 2.5rem;
  color: #0b3d91;
  margin-bottom: 0.5rem;
}

.donate-section p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.donate-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: nowrap;
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.student-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 1rem;
  width: 200px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

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

.student-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.student-card button {
  background: #0b63f6;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.student-card button:hover {
  background: #0841a5;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #d1e2ff 0%, transparent 70%);
  z-index: 1;
}

.circle1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -150px;
}

.circle2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: -100px;
}

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width: 900px) {
  .donate-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    width: 200px;
    text-align: right;
    padding: 1rem;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: none;
    border-radius: 22px;
  }

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

  .menu-toggle {
    display: flex;
  }

  .about .content {
    flex-direction: column;
    text-align: center;
  }

  .where {
    flex-direction: column;
    text-align: center;
  }
}

.video{
  display: flex;
  padding-top: 4rem;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  align-items: center;
  justify-content: center;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: #0b3d91;
  font-weight: bold;
}

.section-subheader{
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #555;
}

.footer{
  background-color: #0f0f0f;
  text-align: center;
  padding: 1rem 2rem;
  margin-top: 2rem;
}

  .home-color{   
   background-color: #ffa909;  
   }  

.student-card {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.longdonate{

  display: flex;
  justify-content: center;
padding-bottom: 2rem;
}

  .longbutton{
    width: 280px;
    background: #0b63f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
  }

.wbodycolor{
  background-color: #ffa909;  
}
.dbodycolor{
  background-color: #ffa909;
}
.cbodycolor{
  background-color: #ffa909;
}