

/* GRADIENT TEXT */
.gradient-textt { background: #000;
  -webkit-background-clip: text;
  color: transparent;
}

.gradient-textt {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  position: relative;

  background: linear-gradient(45deg, #f1d608, #f1d608);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* underline effect */
.gradient-textt::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #000, #000);
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}




.gradient-text{
  background: linear-gradient(45deg, #ffcc00, #ffc107);
  -webkit-background-clip: text;
  color: transparent;
}

.prolicy{
  background: linear-gradient(45deg, #ffcc00, #ffc107);
  -webkit-background-clip: text;
  color: transparent;
}
.prolicy::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ffc107; /* yellow line */
  margin: 8px auto 0;
  border-radius: 2px;
}

/* HERO */
.about-hero {
  background: #0f0f0f;
  padding: 80px 50px;
  color: #fff;
}

/* FLEX LAYOUT */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap:40px;
}

/* TEXT SIDE */
.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
    color: #fff;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #fff;
}

/* BUTTONS */
.hero-btns .btn {
  padding: 12px 25px;
  margin-right: 10px;
  font-weight: 600;
}

.btn-warning {
  background: #f4b400;
  border: none;
  color: #000;
}

.btn-outline-light {
  border: 1px solid #fff;
  color: #fff;
}

/* IMAGE SIDE */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;   /* 👈 center control */
  margin: 0 auto;      /* 👈 pura section center */
  gap: 40px;
  padding: 0 20px;
}

/* IMAGE SIDE FIX */
.hero-image {
  width: 50%;
  display: flex;
  justify-content: center; /* 👈 center image */
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: 40vh;
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 28px;
    color:#fff;
  }
}
/*hero end*/
/* GLASS */
.glass {
      background: rgb(191 186 186 / 65%);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s;
  color:#000;
}

.glass:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(255,204,0,0.2);
}

/* SECTION */
.section {
  padding: 80px 0;
}

/* VALUES */
.value-box {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  border-bottom: 3px solid #ffcc00;
  transition: 0.3s;
  color:#fff;
}

.value-box:hover {
  transform: scale(1.05);
}

/* TIMELINE */
.timeline {
  border-left: 3px solid #ffcc00;
  padding-left: 25px;
}

.timeline-item {
  margin-bottom: 25px;
}

/* COUNTER */
.counter {
  font-size: 40px;
  font-weight: bold;
  color: #ffcc00;
}

/* DARK */
.dark {
  background: #0a0a0a;
  color: #fff;
}

/* LEADER CARD */
.leader-card {
     background: linear-gradient(135deg, #414141, #625e4a);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: 0.4s;
  border: 1px solid rgba(255,255,255,0.1);
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255,204,0,0.2);
}

/* IMAGE */
.leader-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* INFO */
.leader-info {
  padding: 20px;
  color: #fff;
}

.leader-info h5 {
  margin-bottom: 5px;
}

.role {
  display: block;
  color: #ffcc00;
  margin-bottom: 10px;
  font-size: 14px;
}