.divbg {
    background: linear-gradient(135deg, #ADD8E6, #E0FFFF);
	border-radius:15px;
}
.pulse-text {
  display: inline-block;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.animated-button {
   animation: bounce 1.5s infinite;
	color:white !important;
	margin-top:20px;
	background-color:blue !important;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); 
  }
}
@media (min-width: 1350px){
	.headerforlargescreen{
	font-size:45px;
}
}

/****************************************************************/
    .site-header {
      background: linear-gradient(to right, #031033, #013483);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      color: white;
    }

    .logo img {
      height: 115px;
      object-fit: contain;
    }

    .header-title {
      line-height: 1.2;
    }

    @media (max-width: 767px) {
      .header-title h1 {
        font-size: 1.1rem;
      }
      .header-title p {
        font-size: 0.85rem;
      }
    }

    .hero-section {
  background-image: url("./public/images/admissionbg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

.highlight {
  color: #013483;
  /* background: rgba(57, 74, 230, 0.12); */
  padding: 0 6px;
}

.hero-desc {
  font-size: 1.05rem;
  color: #444444;
  max-width: 520px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
}
#typing-text {
  border-right: 3px solid #e63946;
  padding-right: 5px;
  white-space: nowrap;
  animation: blink 0.8s infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.accreditation-logos {
  padding: 10px 0;
}

.accr-logo {
  height: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.accr-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* @media (max-width: 576px) {
  .accr-logo {
    height: 45px;
  }
} */

.describesection{
  background: #6d7bd417;
}

/* .stats-section {
  background: #ffffff;
} */

.stat-card {
  height: 100%;
  padding: 30px 15px;
  border-radius: 16px;
  transition: all 0.35s ease;
  background: #fff;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.stat-card h5 {
  font-weight: 600;
  font-size: 1rem;
  color: #111;
  line-height: 1.3;
}

/* HOVER EFFECT */
.stat-card:hover {
  background: #eef6ff;
  box-shadow: 0 15px 35px rgba(0, 86, 179, 0.15);
  transform: translateY(-6px);
}

.stat-card:hover .stat-icon {
  color: #0d6efd; /* Bootstrap primary */
}

/* Mobile */
@media (max-width: 576px) {
  .stat-icon {
    font-size: 2.2rem;
  }
}

		.logo-track img {
		  height: 100px;
		  width: auto;
		  margin-right: 50px; 
		  object-fit: contain;
			background-color:white;
		}

.shorts-section {
  padding: 100px 0;
}

.shorts-container {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.short-iframe {
  width: 300px;
  height: 390px; /* Shorts ratio */
  border-radius: 16px;
  border: none;
  background: black;
}
        .bgimage{
            overflow-x: hidden;
            background-position: center;
            background-size: cover;
            width: 100%;
            height: 500px;
            background-repeat: no-repeat;
        }

        /* SECTION */
/* ===============================
   STATS SECTION
================================ */
.stats-section {
  padding: 80px 0;
  /* background: #f9fafb; */
}

/* ===============================
   GRID CONTAINER
================================ */
.stats-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  justify-items: center;
}

/* ===============================
   EACH STAT CARD
================================ */
.stat {
  width: 160px;
  text-align: center;
  font-family: Arial, sans-serif;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* ===============================
   CSS VARIABLE FOR PROGRESS
================================ */
@property --value {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

/* ===============================
   PROGRESS CIRCLE
================================ */
.circle {
  --value: 0;
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(
    #eb2525 calc(var(--value) * 1%),
    #e5e7eb 0
  );
  transition: --value 1.8s ease-in-out;

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   INNER WHITE CIRCLE
================================ */
.circle::before {
  content: "";
  position: absolute;
  inset: 10px;
  background: #ffffff;
  border-radius: 50%;
}

/* ===============================
   NUMBER TEXT
================================ */
.circle span {
  position: relative;
  z-index: 1;
  font-size: 44px;
  font-weight: 700;
  color: #111827;
}

/* ===============================
   LABEL TEXT
================================ */
.stat p {
  margin-top: 14px;
  font-size: 24px;
  color: #ffffff;
  line-height: 1.4;
  transition: color 0.3s ease;
}


/* ===============================
   RESPONSIVE BREAKPOINTS
================================ */
@media (max-width: 1200px) {
  .stats-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    /* gap: 30px; */
  }

  .circle {
    width: 120px;
    height: 120px;
  }

  .circle::before {
    inset: 12px;
  }

  .circle span {
    font-size: 22px;
  }

  .stat p {
    font-size: 18px;
  }
}
