/*================ header css start now ================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.container {
  width: 90%;
  margin: auto;
}

.applynowbtn {
  display: inline-block;
  text-decoration: none;
}

/* 🔴 HEADER */
.top-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-top: 15px;
}

.header-flex {
  display: flex;
  justify-content: space-between;

}

.logo-wrap {
  display: flex;
  gap: 15px;
  /* align-items:center; */
}

.logo-wrap img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.logo-wrap h2 {
  font-size: 18px;
  color: #C62828;
}

.logo-wrap p {
  font-size: 12px;
  color: #555;
}

.right-info {
  text-align: right;
}

.address {
  font-size: 12px;
  color: #777;
  margin-bottom: 8px;
}

.btn-group {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.btn {
  background: linear-gradient(90deg, #F57C00, #F09803);
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
}

/* 🔻 NAVBAR */
.navbar {
  background: #fff;
  position: sticky;
  top: 100px;
  z-index: 999;
  box-shadow: 0px 1px 1px 1px #f1f1f1b0;
  padding: 8px 0 !important;
}

.nav-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 5px 16px !important;
  border-radius: 20px;
  text-decoration: none;
  color: #777;
  background: #FFF8F2;
  font-size: 12px;
}



.nav-links a.active {
  background: #C62827;
  color: #fff;
}

/* 📱 SIDEBAR */
.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 260px;
  height: 100%;
  background: #fff;
  padding: 20px;
  transition: 0.3s;
  z-index: 2000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.sidebar a {
  display: block;
  margin: 10px 0;
  padding: 10px;
  border-radius: 20px;
  background: #FFF8F2;
  text-decoration: none;
  color: #333;
}

.sidebar a.active {
  background: #C62827;
  color: #fff;
}

.close-btn {
  font-size: 28px;
  cursor: pointer;
}

/* ☰ MENU BTN */
.menu-btn {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* 📱 RESPONSIVE */
@media(max-width:768px) {

  .right-info {
    display: none;
  }

  .navbar {
    display: none !important;
  }

  .menu-btn {
    display: block;
  }
  .logo-wrap img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
}

/*================ header css end now ================*/



/*================ hero css start now ================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* HERO SECTION */
.hero {
  width: 100%;
  min-height: 600px;
  background: url('../assets/images/arvalbanerimage.png') no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 8%;
}

/* LIGHT OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

/* CONTENT WRAP */
.hero-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* LEFT */
.left {
  max-width: 600px;
}

.title {
  font-size: 48px;
  font-weight: 800;
  color: #333333;
  line-height: 60px;
}

.title span {
  display: block;
}

.subtitle {
  margin-top: 20px;
  font-size: 20px;
  color: #C62828;
  line-height: 30px;
}

/* BUTTONS */
.btns {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.applynowbtn {
  background: linear-gradient(90deg, #F57C00, #F09803);
  padding: 10px 20px;
  border-radius: 50px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}

/* CENTER STATS */
.center {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}



.circle {
  --percent: 90;

  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ROTATING BORDER */
.circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;

  background: conic-gradient(#C62828 calc(var(--percent) * 1%),
      transparent 0);

  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 0);

  animation: rotateBorder 4s linear infinite;
  /* 🔥 ROTATION */
}

/* ROTATE ANIMATION */
@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* HOVER BONUS (optional premium feel) */
.circle:hover::before {
  animation-duration: 1s;
}



.inner {
  /* width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.num {
  font-weight: 700;
  color: #C62828;
  font-size: 16px;
}

.txt {
  font-size: 10px;
  color: #777;
  text-align: center;
}

/* RIGHT IMAGE */
.right img {
  width: 380px;
  max-width: 100%;
}

/* 🔥 RESPONSIVE */
@media(max-width: 1024px) {
  .hero-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .center {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media(max-width: 600px) {

  .title {
    font-size: 21px;
    line-height: 29px;
    display: none;
  }

  .hero-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 200px;
}
  .subtitle {
    font-size: 11px;
    display: none;
  }
.hero {
  width: 100%;
  min-height: 600px;
  background: url('../assets/images/mobilebanner.jpg') no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 8%;
}

/* 📱 Mobile View */
@media (max-width: 768px) {
  .hero {
    min-height: 400px;              /* height kam karo */
    padding: 40px 20px;             /* side padding fix */
    background-position: center top; /* image top se dikhe */
    background-size: contain;         /* ya contain use kar sakte ho */
  }
}
  .btns {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .inner {
    width: 50px;
    height: 50px;
  }

  .hero {

    padding: 20px 8% !;
  }

  .logo-wrap p {
    font-size: 12px;
    color: #555;
    display: none;
  }

  .logo-wrap h2 {
    font-size: 12px;
    color: #C62828;
    font-weight: 800;
  }

  .logo-wrap {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 10px;
  }

}

/*================ hero css end now ================*/



/*================ announce-bar css start now ================*/


/* MAIN BAR */
.announce-bar {
  width: 100%;
  background: #C62928;
  padding: 15px 0;
  overflow: hidden;
  /* FIX overflow */
}

/* CONTAINER */
.announce-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 15px;
}

/* BADGE */
.announce-badge {
  background: #fff;
  color: #C62928;
  padding: 6px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  white-space: nowrap;
}

/* TEXT WRAPPER */
.announce-text {
  flex: 1;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}

/* SCROLL TEXT */
.announce-text span {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  /* important for smooth entry */
  animation: scrollText 12s linear infinite;
  color: #fff;
  font-size: 15px;
}

/* ANIMATION */
@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* 🔥 TABLET */
@media (max-width: 768px) {
  .announce-container {
    flex-direction: row;
    /* KEEP row */
    align-items: center;
  }

  .announce-text span {
    animation-duration: 18s;
    /* slower */
    font-size: 14px;
  }
}

/* 🔥 MOBILE */
@media (max-width: 480px) {
  .announce-badge {
    font-size: 12px;
    padding: 5px 10px;
  }

  .announce-text span {
    font-size: 13px;
    animation-duration: 20s;
  }
}

/*================ announce-bar css end now ================*/





/*================ info-section css start now ================*/

.info-section {
  width: 100%;
  background: #fff;
  padding: 50px 20px;
}

/* WRAPPER */
.info-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.info-card {
  width: 317px;
  height: 134px;
  background: #fff;
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;

}

/* TOP LINE */
.info-top-line {
  width: 100%;
  height: 5px;
  background: #F57C00;
  margin-bottom: 40px;
}

/* TEXT */
.info-card h3 {
  color: #C62828;
  font-size: 22px;
  font-weight: 500;
}

/* TEXT */
.info-card h3 {
  color: #C62828;
  font-size: 22px;
  font-weight: 500;
  transition: 0.3s;
}

/* TOP LINE */
.info-top-line {
  width: 100%;
  height: 5px;
  background: #F57C00;
  margin-bottom: 40px;
  transition: 0.3s;
}

/* 🔥 HOVER EFFECT */
.info-card:hover {
  background: #F57C00;
  /* pura card color change */
  transform: translateY(-8px);
}

/* TEXT COLOR CHANGE */
.info-card:hover h3 {
  color: #fff;
}

/* TOP LINE CHANGE */
.info-card:hover .info-top-line {
  background: #fff;
}

/* 🔥 TABLET */
@media (max-width: 992px) {
  .info-wrapper {
    gap: 25px;
  }

  .info-card {
    width: 280px;
  }
}

/* 🔥 MOBILE */
@media (max-width: 600px) {
  .info-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .info-card {
    width: 100%;
    max-width: 320px;
  }
}

/*================ info-section css end now ================*/





/*================ desk-sec css start now ================*/

.desk-sec {
  width: 100%;
  padding: 50px 20px;
  background: url('../assets/images/chairmenbaackgrounimage.png') no-repeat center/cover;
}

/* ROW */
.desk-row {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* CARD */
.desk-box {
  width: 670px;
  height: 460px;
  background: #C62828;
  border-radius: 25px;
  position: relative;
  box-shadow: 0px 20px 20px rgba(198, 40, 40, 0.25);
  overflow: hidden;
  transition: all 0.4s ease;
}

/* TOP WHITE BAR */
.desk-top {
  width: 100%;
  height: 78px;
  background: #fff;
  position: absolute;
  top: 0;
}

/* DP */
.desk-dp {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  position: absolute;
  top: 40px;
  left: 50px;
  object-fit: cover;
  /* border: 2px solid #fff;
  box-shadow: 0 4px 4px rgba(0,0,0,0.25); */
}

/* HEADING */
.desk-head {
  position: absolute;
  top: 10px;
  left: 160px;
}

.desk-head h3 {
  color: #C62828;
  font-size: 22px;
  font-weight: 700;
}

.desk-head p {
  color: #777;
  font-size: 16px;
}

/* TEXT */
.desk-text1 {
  position: absolute;
  top: 110px;
  left: 160px;
  width: 460px;
  color: #FFE2C4;
  font-size: 15px;
}

.desk-text2 {
  position: absolute;
  top: 200px;
  left: 40px;
  width: 580px;
  color: #FFE2C4;
  font-size: 15px;
}

/* BOTTOM */
.desk-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 78px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 40px;
}

.desk-bottom img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.desk-bottom h4 {
  color: #C62828;
  font-size: 16px;
}

.desk-bottom span {
  font-size: 14px;
  color: #777;
}

/* 🔥 OVERLAY EFFECT */
.desk-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: 0.4s;
}

/* TEXT TRANSITION */
.desk-text1,
.desk-text2 {
  transition: 0.4s;
}

.desk-head h3,
.desk-head p,
.desk-bottom h4,
.desk-bottom span {
  transition: 0.4s;
}

/* 🔥 HOVER START */
.desk-box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0px 30px 40px rgba(198, 40, 40, 0.4);
  /* background: linear-gradient(135deg, #C62828, #ff5252); */
}

/* overlay visible */
.desk-box:hover::before {
  opacity: 1;
}

/* IMAGE ZOOM */
.desk-box:hover .desk-dp {
  transform: scale(1.15);
}

/* TEXT COLOR CHANGE */
.desk-box:hover .desk-text1,
.desk-box:hover .desk-text2 {
  color: #fff;
}

/* HEADING COLOR */
.desk-box:hover .desk-head h3 {
  color: #C62828;
}

.desk-box:hover .desk-head p {
  color: #777;
}

/* BOTTOM TEXT */
.desk-box:hover .desk-bottom h4 {
  color: #C62828;
}

.desk-box:hover .desk-bottom span {
  color: #555;
}

/* TOP + BOTTOM BAR SLIGHT EFFECT */
.desk-box:hover .desk-top,
.desk-box:hover .desk-bottom {
  background: #fff;
}

/* 🔥 MOBILE */

/* 🔥 TABLET */
@media(max-width:1100px) {

  .desk-row {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .desk-box {
    width: 100%;
    max-width: 600px;
    height: auto;
    padding-bottom: 20px;
  }

  /* REMOVE ABSOLUTE */
  .desk-head,
  .desk-text1,
  .desk-text2 {
    position: static;
    width: 100%;
  }

  /* FIX HEADER ALIGNMENT */
  .desk-head {
    margin-left: 100px;
    margin-top: 10px;
    z-index: 5;
    /* important */
  }

  /* TEXT */
  .desk-text1,
  .desk-text2 {
    padding: 0 20px;
    margin-top: 10px;
  }

  /* IMAGE */
  .desk-dp {
    left: 20px;
    top: 20px;
    z-index: 6;
    /* above top bar */
  }

  /* TOP BAR FIX */
  .desk-top {
    height: 80px;
    z-index: 1;
  }

  /* BOTTOM */
  .desk-bottom {
    position: static;
    margin-top: 20px;
  }

}

/* 🔥 MOBILE FIX (MAIN SOLUTION) */
@media(max-width:768px) {

  .desk-row {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .desk-box {
    width: 100%;
    height: auto;
    padding: 15px;
    border-radius: 18px;
  }
  .desk-bottom span {
  font-size: 10px;
  color: #777;
}

  /* ❌ REMOVE ALL ABSOLUTE */
  .desk-top,
  .desk-head,
  .desk-text1,
  .desk-text2,
  .desk-bottom,
  .desk-dp {
    position: static;
  }

  /* HIDE TOP BAR (problem create kar raha tha) */
  .desk-top {
    display: none;
  }
.desk-head p {
    color: #ffab71;
    font-size: 16px;
}
  .desk-head h3 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
  }

  /* FLEX HEADER */
  .desk-head {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    margin-top: 10px;
  }

  .desk-box:hover .desk-head h3 {
    color: #ffffff;
  }
  .desk-bottom h4 {
    color: #C62828;
    font-size: 13px;
    margin-bottom: 0px;
}

  /* PROFILE IMAGE */
  .desk-dp {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }

  /* TEXT */
  .desk-text1,
  .desk-text2 {
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
    padding: 0;
  }

  /* BOTTOM */
  .desk-bottom {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 8px;
    border-radius: 7px;
  }

  .desk-bottom img {
    width: 40px;
    height: 40px;
  }

}


/*================ desk-sec css ends now ================*/





/*================ student-center-sec css start now ================*/

.student-center-sec {
  width: 100%;
  padding: 50px 20px;
  background: url('../assets/images/addmissionimages.png') no-repeat center/cover;
}

/* HEADING */
.student-center-head {
  text-align: center;
  max-width: 600px;
  margin: auto;
  margin-bottom: 50px;
}

.student-center-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.student-center-title .bar {
  width: 4px;
  height: 20px;
  background: #C62828;
  border-radius: 2px;
}

.student-center-title h2 {
  color: #C62828;
  font-size: 22px;
  font-weight: 600;
}

.student-center-head p {
  font-size: 16px;
  color: #333;
}

/* CARDS */
.student-center-cards {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.student-card {
  width: 320px;
  background: #FFF8F2;
  border-radius: 24px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

/* HEADER */
.card-header {
  background: #F57C00 !important;
  color: #fff !important;
  text-align: center;
  padding: 10px !important;
  font-size: 18px;
  font-weight: 600;
  transition: 0.4s;
}

/* LIST */
.student-card ul {
  list-style: none;
  padding: 20px 25px;
  transition: 0.3s;
}

.student-card ul li {
  font-size: 16px;
  color: #777;
  margin-bottom: 18px;
  line-height: 1.4;
  transition: 0.3s;
}

/* 🔥 HOVER EFFECT */
.student-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #FFF8F2, #ffe0c2);
}

/* HEADER HOVER */
.student-card:hover .card-header {
  background: #C62828 !important;
}

/* TEXT HOVER */
.student-card:hover ul li {
  color: #C62828;
  transform: translateX(5px);
}

/* OPTIONAL ICON EFFECT (agar future me icon add karo) */
.student-card ul li::before {
  content: "✔";
  margin-right: 8px;
  color: #F57C00;
  transition: 0.3s;
}

.student-card:hover ul li::before {
  color: #C62828;
}

/* SCROLL BOX */
.scroll-box {
  height: 300px;
  overflow: hidden;
  position: relative;
}

/* AUTO SCROLL */
.scroll-box ul {
  display: flex;
  flex-direction: column;
  animation: scrollUp 10s linear infinite;
}

/* KEYFRAMES */
@keyframes scrollUp {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* 🔥 TABLET */
@media(max-width: 992px) {
  .student-center-cards {
    gap: 20px;
  }

  .student-card {
    width: 45%;
  }
}

/* 🔥 MOBILE */
@media(max-width: 600px) {

  .student-card {
    width: 100%;
  }
.student-card ul li {
    font-size: 13px;
    color: #777;
    margin-bottom: 18px;
    line-height: 1.4;
    transition: 0.3s;
}


  .student-center-title h2 {
    font-size: 18px;
  }

  .student-center-head p {
    font-size: 14px;
  }

}
/* ===========student-center-sec css ends now ================*/ 







/* ===========achieve-sec css start now ================*/ 

/* RESET SAFETY */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial;
  overflow-x: hidden;
  /* overflow stop */
}

/* SECTION */
.achieve-sec {
  background: #FFF8F2;
  padding: 50px 20px;
  overflow: hidden;
  /* important */
}

/* WRAP */
.achieve-wrap {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* LEFT */
.achieve-left {
  flex: 1;
  min-width: 0;
}

/* HEAD */
.achieve-head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.line {
  width: 4px;
  height: 22px;
  background: #C62828;
}

.achieve-head h2 {
  color: #C62828;
  margin: 0;
}

.achieve-head p {
  margin: 0;
  font-size: 14px;
}

/* IMAGE BOX */
.achieve-image-box {
  position: relative;
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  /* main fix */
}

/* BACKGROUNDS */
.bg-orange {
    position: absolute;
    width: 75%;
    height: 75%;
    background: #F57C00;
    left: 0px;
    top: 81px;
    border: 4px solid #C62828;
    z-index: 0;
}

.btn-outline {
  display: inline-block;
  text-decoration: none;
  color: #2c2b2b;
}

.bg-light {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFF8F2;
  left: 10px;
  top: -58px;
  z-index: 1;
}

/* SLIDER FIX */
.slider {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  overflow: hidden;
  /* important */
}

/* SLIDES FIX (MAIN ISSUE SOLVED) */
.slide {
  width: 100%;
  height: 447px;
  max-width: 100%;
  position: absolute;
  top: -54px;
  left: 10px;
  opacity: 0;
  transition: opacity 0.6s ease;
  border: 4px solid #C62828;
}

/* ACTIVE SLIDE */
.slide.active {
  position: relative;
  opacity: 1;
}

/* DOTS */
.achieve-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  /* margin-top: 40px; */
}

.achieve-dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.achieve-dots .active {
  width: 20px;
  border-radius: 10px;
  background: #C62828;
}

/* RIGHT BLOG */
.achieve-blog {
  width: 100%;
  max-width: 340px;
}

.blog-head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.blog-head h3 {
  color: #C62828;
}

/* BLOG */
.blog-item {
  margin-bottom: 10px;
  position: relative;
}

.blog-item img {
  width: 100%;
  height: 160px;
  border-radius: 6px;
}

.blog-item.dark .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 6px;
}

.blog-content {
  padding: 10px;
}

.blog-item.dark .blog-content {
  position: absolute;
  bottom: 0;
  color: white;
}
.announce-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c62828;
  font-weight: 600;
  font-size: 14px;
  position: relative;
}

/* 🔥 Icon animation (no background) */
.announce-badge .icon {
  font-size: 18px;
  animation: iconBounce 1.2s infinite;
}

/* Smooth bounce */
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ✨ Text glow underline effect */
.announce-badge span:last-child {
  position: relative;
}

.announce-badge span:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #c62828;
  transition: 0.4s;
}

/* hover effect */
.announce-badge:hover span:last-child::after {
  width: 100%;
}
.blog-item.light {
  background: #fff;
  padding: 10px;
  border-radius: 6px;
}

.blog-item.light p {
  color: #666;
}

.blog-item span {
  font-size: 13px;
  color: #F57C00;
}

/* 🔥 TABLET */
@media(max-width:1024px) {
  .achieve-wrap {
    flex-direction: column;
    align-items: center;
  }

  .achieve-blog {
    max-width: 100%;
  }
}

/* 🔥 MOBILE */
@media(max-width:600px) {

  .achieve-sec {
    padding: 40px 15px;
  }

  .achieve-wrap {
    gap: 20px;
  }

  /* BACKGROUND SAFE */
  .bg-orange {
    width: 85%;
    height: 60%;
    top: 60px;
    /* display: none; */
  }

  .bg-light {
    left: 5px;
    top: -5px;
  }
.course-head p {
    color: #555;
    margin: 15px 0;
    font-size: 13px;
}
  /* TEXT */
  .achieve-head h2 {
    font-size: 18px;
  }

  .achieve-head p {
    font-size: 13px;
  }

  /* DOTS */
  .achieve-dots {
    margin-top: -38px;
  }

  /* BLOG */
  .achieve-blog {
    width: 100%;
  }
}

/* ===========achieve-sec css end now ================*/ 


/* ===========course-sec css start now ================*/ 

.course-sec {
  padding: 50px 20px;
  background: #fff;
}

/* HEADING */
.course-head {
  text-align: center;
  max-width: 650px;
  margin: auto;
  margin-bottom: 60px;
}

.course-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.bar {
  width: 4px;
  height: 22px;
  background: #C62828;
}

.course-title h2 {
  color: #C62828;
}

.course-head p {
  color: #555;
  margin: 15px 0;
}

/* FILTER */
.course-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.course-filter button {
  border: none;
  padding: 8px 18px;
  border-radius: 25px;
  background: #f3f3f3;
  cursor: pointer;
}

.course-filter .active {
  background: linear-gradient(90deg, #F57C00, #F09803);
  color: #fff;
}

/* GRID */
.course-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.course-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.course-card:hover {
  transform: translateY(-5px);
}

.course-card.dark {
  background: #2e2e2e;
  color: #fff;
}

/* IMAGE */
.img-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENT */
.content {
  padding: 15px;
}

.tag {
  font-size: 12px;
  color: #f57c00;
}

.course-card.dark .tag {
  color: #ffa726;
}

.content h3 {
  margin: 5px 0 10px;
}

/* META */
.meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 15px;
}

.meta span {
  display: block;
  color: #777;
  font-size: 12px;
}

.course-card.dark .meta span {
  color: #bbb;
}

/* BUTTONS */
.btns {
  display: flex;
  gap: 10px;
}

.btn-fill {
  background: linear-gradient(90deg, #F57C00, #F09803);
  border: none;
  color: #fff;
  padding: 7px 14px;
  border-radius: 20px;
  cursor: pointer;
}

.btn-primary {
  display: inline-block;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #ccc;
  background: transparent;
  padding: 7px 14px;
  border-radius: 20px;
  cursor: pointer;
}

.course-card.dark .btn-outline {
  border-color: #fff;
  color: #fff;
}

/* HOVER = DARK MODE EFFECT */
.course-card:hover {
  background: #2e2e2e;
  color: #fff;
}

/* TEXT COLORS FIX */
.course-card:hover .tag {
  color: #ffa726;
}

.course-card:hover .meta span {
  color: #bbb;
}

/* BUTTON OUTLINE FIX */
.course-card:hover .btn-outline {
  border-color: #fff;
  color: #fff;
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .course-grid {
    grid-template-columns: 1fr;
  }

.bg-light {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFF8F2;
  left: 10px;
  top: -58px;
  z-index: 1;
  display: none;
}
  .img-box img {
    height: 200px;
  }
}
/* ===========course-sec css end now ================*/ 








/* ===========news-sec css start now ================*/ 


.news-sec {
  position: relative;
  width: 100%;
  padding: 50px 20px;
  background: url('../assets/images/Frame 48095602.png') no-repeat center/cover;

}

.news-overlay {
  position: absolute;
  inset: 0;

}

.news-container {
  position: relative;
  max-width: 1300px;
  margin: auto;
  color: #fff;
}

/* TOP */
.news-top {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}

.bar {
  width: 4px;
  height: 20px;
  background: #fff;
}

.news-left-head,
.news-right-head {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* CONTENT */
.news-content {
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* LEFT */
.news-left {
  display: flex;
  gap: 20px;
}

.big-news {
  max-width: 360px;
}

.big-news img {
  width: 100%;
  border: 4px solid #fff;
}

.big-news h3 {
  color: #F57C00;
  font-size: 16px;
  margin: 10px 0;
}

.big-news p {
  font-size: 14px;
}

.btn-primary {
  margin-top: 10px;
  background: linear-gradient(90deg, #F57C00, #F09803);
  border: none;
  padding: 8px 16px;
  border-radius: 25px;
  color: #fff;
  cursor: pointer;
}

/* LIST */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.news-item {
  display: flex;
  background: #fff;
  color: #333;
  padding: 5px;
}

.news-item img {
  width: 100px;
}

.news-item div {
  padding: 5px;
}

.news-item button {
  background: #777;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 20px;
  margin-top: 5px;
}

/* DIVIDER */
.news-divider {
  width: 3px;
  background: #fff;
}

/* RIGHT */
.news-right {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.event-item {
  display: flex;
  gap: 15px;
}

.event-item img {
  width: 180px;
}

.event-item span {
  display: inline-block;
  margin-top: 5px;
  background: #fff;
  color: #333;
  padding: 5px 10px;
  border-radius: 20px;
}

.ptag p {
  font-size: 12px;
  color: #fff;
}

.ptag1 p {
  font-size: 12px;
  color: #2c2b2b;
}

/* BIG NEWS CARD */
.big-news {
  transition: all 0.4s ease;
}

.big-news img {
  transition: 0.4s ease;
}

.big-news:hover {
  transform: translateY(-8px);
}

.big-news:hover img {
  transform: scale(1.08);
}

.big-news:hover h3 {
  color: #fff;
}

/* BUTTON HOVER */
.btn-primary {
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #ff9800, #ffb74d);
}

/* NEWS LIST ITEM */
.news-item {
  display: flex;
  background: #fff;
  color: #333;
  padding: 5px;
  transition: all 0.3s ease;
}

.news-item img {
  transition: 0.3s;
}

.news-item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.news-item:hover img {
  transform: scale(1.05);
}

/* BUTTON INSIDE LIST */
.news-item button {
  transition: 0.3s;
}

.news-item button:hover {
  background: #C62828;
}

/* EVENT ITEM (RIGHT SIDE) */
.event-item {
  transition: all 0.3s ease;
}

.event-item img {
  transition: 0.3s;
}

.event-item:hover {
  transform: translateY(-6px);
}

.event-item:hover img {
  transform: scale(1.05);
}

/* EVENT TAG */
.event-item span {
  transition: 0.3s;
}

.event-item:hover span {
  background: #F57C00;
  color: #fff;
}

/* 🔥 RESPONSIVE */
@media(max-width:1024px) {

  .news-content {
    flex-direction: column;
  }

  .news-left {
    flex-direction: column;
  }

  .news-divider {
    display: none;
  }

  .news-right {
    width: 100%;
  }
}

@media(max-width:600px) {

  .news-top {
    flex-direction: column;
    gap: 10px;
  }

  .event-item {
    flex-direction: column;
  }

  .event-item img {
    width: 100%;
  }

}
/* ===========news-sec css end now ================*/ 






/* ===========gallery-sec css start now ================*/ 

.gallery-sec {
  padding: 50px 20px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Heading */
.gallery-head {
  max-width: 540px;
  margin: auto;
}

.gallery-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.gallery-title .line {
  width: 4px;
  height: 20px;
  background: #C62828;
  border-radius: 2px;
}

.gallery-title h2 {
  color: #C62828;
  font-size: 22px;
  font-weight: 600;
}

.gallery-head p {
  margin-top: 10px;
  color: #333;
  font-size: 15px;
}

/* Tabs */
.gallery-tabs {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.tab {
  padding: 6px 14px;
  border-radius: 25px;
  background: #FFF8F2;
  color: #777;
  font-size: 14px;
  cursor: pointer;
}

.tab.active {
  background: linear-gradient(90deg, #F57C00 0%, #F09803 100%);
  color: #fff;
}

/* Grid */
.gallery-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* HIDE DEFAULT */
.gallery-grid {
  display: none;
}

/* SHOW ACTIVE */
.gallery-grid.active {
  display: grid;
}

/* VIDEO STYLE */
.gallery-grid video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.4s;
}

/* HOVER EFFECT VIDEO */
.gallery-grid video:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

/* IMAGE BASE */
.gallery-grid img {
  transition: all 0.4s ease;
  cursor: pointer;
}

/* 🔥 HOVER EFFECT */
.gallery-grid img:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-sec {
    padding: 50px 15px;
  }
}
/* ===========gallery-sec css end now ================*/ 







/* ===========hero-sec css start now ================*/ 

.hero-sec {
  position: relative;
  background: url('../assets/images/Course List (1).png') no-repeat center/cover;


  padding: 80px 20px;
  color: #fff;
}

/* DARK OVERLAY */
.hero-sec .overlay {
  position: absolute;
  inset: 0;

}

.hero-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.hero-left {
  max-width: 600px;
}

.badge {
  background: linear-gradient(90deg, #F57C00, #F09803);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-left .line {
  display: block;
  width: 80%;
  height: 2px;
  background: #fff;
  margin: 10px 0;
}

.highlight {
  color: #F57C00;
  display: block;
}

.hero-left p {
  margin-top: 20px;
  font-size: 16px;
}

/* FORM */
.hero-form {
  width: 380px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-head {
  background: #C62828;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 20px;
  font-weight: 600;
}

.hero-form form {
  display: flex;
  flex-direction: column;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 18px;
  font-size: 14px;
  outline: none;
  background: transparent;
}

.hero-form textarea {
  resize: none;
  height: 80px;
}

.hero-form button {
  background: linear-gradient(90deg, #F57C00, #F09803);
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 16px;
  cursor: pointer;
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 48px;
  }

  .hero-left .line {
    margin: 10px auto;
  }
}

@media(max-width:600px) {

  .hero-left h1 {
    font-size: 36px;
  }

  .hero-form {
    width: 100%;
  }

}
/* ===========hero-sec css end now ================*/ 







/* ===========cta-sec css start now ================*/ 

.cta-sec {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.cta-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  color: #C62828;
  font-size: 23px;
  font-weight: 700;
  line-height: 32px;
  font-family: 'Poppins', sans-serif;
}

/* Buttons */
.cta-buttons {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 100px;
  background: linear-gradient(90deg, #F57C00 0%, #F09803 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

/* Icons */
.icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: white;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

/* Phone icon */
.icon.phone {
  mask-image: url("https://cdn-icons-png.flaticon.com/512/597/597177.png");
}

/* Apply icon */
.icon.apply {
  mask-image: url("https://cdn-icons-png.flaticon.com/512/1828/1828919.png");
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .cta-buttons {
    gap: 12px;
  }

  .cta-btn {
    font-size: 13px;
    padding: 7px 16px;
  }
}

@media (max-width: 480px) {
  .cta-content h2 {
    font-size: 14px;
  }
}
button,
.applynowbtn,
.cta-btn {
  transition: all 0.3s ease;
  cursor: pointer;
}

button:hover,
.applynowbtn:hover,
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
}




.captcha-box {
  padding: 15px;
}

.captcha-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.captcha-label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.captcha-refresh-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  color: #C62828;
  transition: 0.3s;
}

.captcha-refresh-btn:hover {
  transform: rotate(180deg);
}

.captcha-preview {
  background: #f1f1f1;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 10px;
  letter-spacing: 4px;
}

.captcha-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
}

.captcha-error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}
/* ===========cta-sec css end now ================*/ 
