body {
  background-color: #d0d0d0;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Hero Section */

.blog-hero {
  position: relative;
  width: 100%;
  height:10vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('image/dilsad-campus.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog h2, h3, h4, h5, h6{

font-size:1.5rem;
  background: linear-gradient(90deg, #ffc107, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;


}
.blog .headings{

font-size:1.5rem;
  background: linear-gradient(90deg, #ffc107, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;

}
.blog .sub-head{

font-size:1rem;
  background: linear-gradient(90deg, #ffc107, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  letter-spacing: 1.5px;

}



.blog ul { margin:0 0 30px 0; padding:0; }
.blog ul li { margin:0 0 0 25px; padding:0; list-style:square; }
.blog ul li::marker { color:orange; };

.about-hero-content h1 {
  font-size: 3rem;
  color: #ffc107;
  text-shadow: 0 0 0 rgba(255, 193, 5, 0.5);
    animation: text-glow 3s ease-in-out infinite alternate;
}

.about-hero-content p {
  font-size: 1.4rem;
  color: #fff;
  margin-top: 1.2rem;
  text-shadow: 0 0 5px rgba(255, 193, 7, 0.3);
  max-width: 750px;
  margin-inline: auto;
  line-height: 1.7;
  font-weight: 400;
}

@keyframes text-glow {
  from {
    text-shadow: 0 0 10px #ffc107, 0 0 5px #ff512f;
  }
  to {
    text-shadow: 0 0 25px #ff512f, 0 0 15px #ffc107;
  }
}

.scroll-down {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid #ffc107;
  border-radius: 25px;
  box-shadow: 0 0 10px #ffc10799;
}

.scroll-down::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: #ffc107;
  border-radius: 50%;
  animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
  0% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 30px;
    opacity: 0;
  }
}
/* WHO WE ARE - Modern Styling */
.about-who-we-are-section {
  background: linear-gradient(145deg, #0e0e0e, #1a1a1a);
  color: #f0f0f0;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
}

.about-who-we-are-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-who-we-are-text {
  flex: 1;
  animation: fadeInLeft 1s ease-out;
}
.about-who-we-are-text p a { color:orange; }

.about-who-we-are-text ul li a{ color:orange; }


.about-who-we-are-heading {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #ffe600, #ffae00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-who-we-are-description {
  font-size: 1.05rem;
  line-height: 2;
  color: #dcdcdc;
}

.about-who-we-are-image {
  flex: 1;
  animation: fadeInRight 1s ease-out;
}

.about-who-we-are-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(255, 196, 0, 0.2);
  transition: transform 0.3s ease;
}

.about-who-we-are-image img:hover {
  transform: scale(1.03);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-mission-vision-section {
  padding: 50px 20px;
  background: #0e0e0e;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.about-mission-vision-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-mission-card,
.about-vision-card {
  background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
  border-radius: 20px;
  padding: 20px 15px;
  flex: 1;
  min-width: 280px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-mission-card:hover,
.about-vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(255, 204, 0, 0.3);
}

.about-mission-icon,
.about-vision-icon {
  width: 80px;
  margin-bottom: 20px;
}

.about-mission-title,
.about-vision-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ffcc00, #ffd54f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-mission-text,
.about-vision-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #d0d0d0;
}


/* Wrapper row */
.stats-section {
  
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
/* Stats Section Container */
.stats-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  background: #000000;
}
.stats-section h2 {font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ffcc00; text-align:center;
  position: relative; te
  display: inline-block;}

/* Each stat box with animated gradient background */
.stat-box {
  background: linear-gradient(135deg, #ffcc00, #ff512f, #ffcc00);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  color: #000000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex: 1 1 220px;
  max-width: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-size: 200% 200%;
  animation: gradientMove 4s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Counter text */
.stat-box .counter {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.25);
}

/* Description */
.stat-box p {
  font-size: 16px;
  color: #f0f0f0;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
}


.why-choose-us {
  padding: 40px 20px;
  background: #1b1b1b;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ffcc00;
  position: relative;
  display: inline-block;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-card {
  background: linear-gradient(135deg, #ffcc00, #ff512f);
  border-radius: 16px;
  padding: 30px 20px;
  width: 280px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.icon-box {
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 25px;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
}
.blog-link { margin-bottom:20px  }
.blog-link a { color:orange; text-decoration:none; }
.blog-link a:hover {color: yellow;}




@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 2.5rem;
  }
   .about-hero-content h2 {
    font-size: 1.8rem;
  }
  .about-hero-content p {
    font-size: 1rem;
  }

  .scroll-down {
   bottom: 60px;
  }

  .why-choose-us {
    padding: 40px 10px; /* kam padding */
  }

  .why-choose-us h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .features {
    flex-direction: column;
    gap: 15px;
  }

  .feature-card {
    width: 95%;
    padding: 20px 12px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: auto;
  }

  .icon-box svg {
    width: 36px;
    height: 36px;
  }

  .feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .feature-card p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

    .about-who-we-are-section {
    padding: 20px 15px;
  }

  .about-who-we-are-container {
    flex-direction: column-reverse;
    gap: 25px;
    text-align: center;
    align-items: center;
  }

  .about-who-we-are-heading {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .about-who-we-are-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .about-who-we-are-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 196, 0, 0.1); margin-top: 20px;
  }

    .about-mission-vision-section {
    padding: 40px 15px;
  }

  .about-mission-vision-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
  }

  .about-mission-card,
  .about-vision-card {
    background: black;
    padding: 10px 5px;
    border-radius: 12px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }

  .about-mission-icon,
  .about-vision-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
  }

  .about-mission-title,
  .about-vision-title {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }

  .about-mission-text,
  .about-vision-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }

    .stats-section {
  
    gap: 15px; /* cards ke beech minimal space */
  }

  .blog h2, h3, h4, h5, h6{

font-size:1rem;
  background: linear-gradient(90deg, #ffc107, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  letter-spacing: 1.5px;

}
.blog .headings{

font-size:20px;
  background: linear-gradient(90deg, #ffc107, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  letter-spacing: 1.5px;

}
}
