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

p {
  font-size: 16px !important;
}


/* ===== Navbar ===== */
.navbar {
  background-color: #C4E4F6;
  padding: 10px 0;
}

.navbar .logo-img {
  width: 111px;
}

.admission-btn {
  background: #3AB5FE;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.admission-btn:hover {
  background: #0c4fa0;
  color: #fff;
}

/* ===== Banner Section ===== */
.scholarship-banner {
  background-color: #C4E4F6;
  background-image: url('pattern-bg.png');
  /* optional */
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 65px;
  /* space below navbar */
  position: relative;
  padding-bottom: 60px;
}

.announce-tag {
  background: #094887;
  color: #fff;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
}

.head-three-newcum {
  text-align: center;
  width: 43%;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
}

.scholarship-banner h1 {
  color: #1E75B8 !important;
  font-weight: 700;
}

.adm-test-head {
  color: #FF5D0B !important;
}

.scholarship-banner h2 {
  font-weight: 700;
  color: #094887;
}

.btn-scholor-rew {
  background-color: #3AB5FE;
  color: white;
}
.btn-scholor-rew:hover{
  background-color: #3AB5FE;
}
.contact-box {
  background: #094887;
  color: #fff;
  border-radius: 10px;
  position: absolute;
  bottom: -40px;
  max-width: 800px;
  width: 100%;
  z-index: 9;
}

.register-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  bottom: -121px;
  z-index: 999;
}

.form-header {
  background: #3AB5FE;
  color: #fff;
  margin: -1.5rem -1.5rem 1rem -1.5rem;
  padding: 12px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-weight: 600;
}

.form-control,
.form-select {
  border: 1px solid #ccc;
  border-radius: 6px;
  height: 45px;
  background-color: #F5F5F5;
}

.btn-primary-now {
  color: white;
  background: #094887;
  border: none;
  font-weight: 600;
}

.btn-outline-primary {
  border: none;
  background-color: white;
  color: black;
  font-weight: 600;
}

.btn-primary-now:hover {
  border: white;
  background-color: #094887;
  color: white;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background: #0c4fa0;
  color: #fff;
}
.bg-banner-newstud-img{
margin-top: 24px;
margin-bottom: 24px;
}
.bg-banner-newstud-img img {
  position: absolute;
  bottom: -114px;
  right: -150px;
}


/* === Scholarship Section === */
.scholarship-section {
  background: white;
  position: relative;
  padding-top: 100px;
}


.scholarship-section::before {
  content: "";
  position: absolute;
  top: -94px;
  left: 0;
  width: 340px;
  height: 340px;
  background-image: url('assets/images/half-ring.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  z-index: 0;
}

.section-title {
  font-weight: 700;
  font-size: 2rem;
  color: #0F4E8F;
  display: inline-block;
  position: relative;
}

.section-title .highlight {
  color: #3c2b7c;
}

/* Dot centered vertically */
.section-title .with-dot {
  position: relative;
  padding-left: 25px;
}

.section-title .with-dot::before {
  content: "•";
  color: #0F4E8F;
  font-size: 1.8rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}

.section-desc {
  color: #555;
  max-width: 858px;
  margin: 0 auto;
  font-size: 1rem;
}

.scholar-box {
  background: #ECF8FF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.scholar-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.scholar-box h5 {
  color: #0d2d6c;
  font-weight: 600;
  margin-bottom: 10px;
}

.scholar-box p {
  color: #555;
  font-size: 0.95rem;
  margin: 0;
}

.scholar-box .icon img {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}



/* === Special Image Box === */
.scholar-imgbox {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  height: 100%;
  /* min-height: 300px; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: 0.3s ease;
}
.scholar-imgbox:hover{
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Dark overlay for better text contrast */
.scholar-imgbox::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 7%);
  border-radius: 10px;
}

/* Centered white text */
.scholar-imgcontent {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

.scholar-imgcontent p {
  margin: 0;
}

.clip-icon {
  position: absolute;
  top: 6px;
  right: 0;
  width: 82px;
  height: auto;
  z-index: 3;
  transform: rotate(5deg);
}

.four-img {
  overflow: hidden;
  border-radius: 10px;
}

.four-img img {
  border-radius: 10px;
  max-height: 300px;
  min-height: 300px;
  width: 100%;
  transition: all 0.3s ease;
}

.four-img img:hover {
  transform: scale(1.1);
}

.two-box {
  background: #ECF8FF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  display: flex;
  height: 100%;
  gap: 16px;
  padding: 24px;
}

.two-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.two-boxcontent {
  text-align: start;
}

.two-boxcontent p {
  margin-bottom: 0;
}

.two-boxcontent h4 {
  font-size: 20px;
}

.subj-mark-heading h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;

}
.fixed-imgfooter{
    position: fixed;
    bottom: 64px;
    right: 4px;
    z-index: 10;
    animation: float 2.5s ease-in-out infinite;
}


.sub-mark-fourbox {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  border-radius: 5px;
  align-items: center;
  transition: 0.3s ease;
}

.sub-mark-fourbox.yellow {
  background-color: #F5E5AA;
}

.sub-mark-fourbox.blue {
  background-color: #B3E0FE;
}

.sub-mark-fourbox.pink {
  background-color: #F8D7DC;
}

.sub-mark-fourbox.green {
  background-color: #E6F4D5;
}

.sub-mark-fourbox.lghblue {
  background-color: #ECF8FF;
}

.icon-heading {
  display: flex;
  gap: 10px;
  align-items: center;
}

.icon-heading h4 {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 700;
  color: #096592;
}

.numbermark-sub span {
  background: white;
  padding: 6px;
  border-radius: 6px
}


.sub-mark-fourbox:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.tweler-sub h4 {
  font-size: 24px;
  font-weight: 500;
}

.tweler-sub p {
  margin-bottom: 0;
}

.why-box {
  background: linear-gradient(90deg, #ffffff 0%, #f8f9fb 100%);
  border: 1px solid #9abce4;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  position: relative;
  background-image: url('assets/images/promotion-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.girl-img {
  max-height: 320px;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  left: 20px;
  max-width: 237px;
}

.why-title {
  font-weight: 700;
  color: #0F4E8F;
}

.why-list li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
  display: flex;
  align-items: center;
}

.topper-prize {
  background-color: #ECF8FF;
  position: relative;
  overflow: hidden;
  padding-bottom: 150px;
  /* enough space for image height */
}

.topper-girl-fixed {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 300px;
  height: auto;
  z-index: 1;
}
.fixed-imgfooter:hover img {
  transform: scale(1.1) rotate(5deg);
}

/* Floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.topper-three-col-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  text-align: left;
  position: relative;
  z-index: 2;
}

.topper-three-col-box img {
  width: 50px;
  height: auto;
}

.topper-three-insi-content h4 {
  font-weight: 700;
  margin-bottom: 5px;
  color: #0a1f44;
}

.topper-three-insi-content p {
  margin: 0;
  color: #444;
  font-size: 14px;
}

.topper-girl-img {
  position: absolute;
  bottom: 0;
}

.topper-girl-img img {
  max-width: 275px;
}

.tick-icon {
  width: 24px;
  margin-right: 10px;
}

.test-works {
  background-color: #FFFBED;
}

.tst-work-fourbox {
  background: white;
  padding: 20px;
  position: relative;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  height: 100%;
}

.tst-work-fourbox span {
  position: absolute;
  top: -20px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  left: 31px;
  padding: 7px;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-weight: 800;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tst-work-fourbox p {
  margin-top: 20px;
  margin-bottom: 0;
}

.girl-imgtwo {
  max-height: 320px;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  left: 20px;
  max-width: 272px;
  width: 100%;
  height: 100%;
  min-height: 230px;
  max-height: 230px;
}

.cpyright-section {
      background-color: #1F5891;
    width: 100%;
}

.cpyrghttext {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  color: white;
  flex-wrap: wrap;
}

.cpyrghttext p {
  margin-bottom: 0;
  font-size: 16px !important;
}

.cpyrghttext ul {
  list-style: none;
  display: flex;
  margin-bottom: 0;
padding: 0;
}

.cpyrghttext ul li:nth-child(2)::before {
  content: "•";
  margin-right: 10px;
  margin-left: 10px;
  color: white;
  /* change color if needed */
}

.mySwiper .img-next{
    position: absolute;
    right: 0;
    color: white;
    font-size: 49px;
    background: #1d5288;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgb(0 0 0 / 84%);
}
.mySwiper .img-next:after{
font-size: 18px;
font-weight: 600;
}
.mySwiper .img-prev{
    position: absolute;
    left: 0;
    color: white;
    font-size: 49px;
    background: #1d5288;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgb(0 0 0 / 84%);
}
.mySwiper .img-prev:after{
font-size: 18px;
font-weight: 600;
}
.lastwhy-choose{
padding-top: 48px;
padding-bottom: 80px;
}
.fixed-imgfooter img{
width: 52px;
transition: transform 0.3s ease;
}

@media (max-width: 767px) {
  .scholar-imgbox {
    min-height: 250px;
  }
.cpyrghttext ul li{
font-size: 12px;
}

.cpyrghttext p{
font-size: 12px !important;
}
.lastwhy-choose{
padding-bottom: 65px;
}
  .cpyrghttext {
    justify-content: center;
  }
.navbar .logo-img{
width: 100px;
}
  .scholar-imgcontent {
    font-size: 0.95rem;
    padding: 15px;
  }

  .why-box {
    text-align: center;
    padding: 2rem 1rem !important;
     justify-content: center;
  }

  .why-list li {
    justify-content: start;
    text-align: start;
  }

  .topper-girl-img{
   position: unset;
}

  .girl-imgtwo {
    position: unset;
  }

  .tick-icon {
    width: 20px;
  }

  .section-title {
    font-size: 25px;
  }

  .scholarship-section::before {
    content: unset;
  }
  .scholarship-section{
    padding-top: 50px;
  }

  .four-img img {
    max-height: 398px;
    min-height: 398px;
   
  }

  .subj-mark-heading h2 {
    text-align: center;
  }

  .girl-img {
    position: unset;
  }

  .scholarship-banner {
    padding-top: 100px;
  }

  .bg-banner-newstud-img img {
    position: unset;
  }
.bg-banner-newstud-img{
margin-top: 0;
margin-bottom: 0;
}

  .register-card {
    position: unset;
  }

  .contact-box {
    position: unset;
  }
  .admission-btn{
    font-size: 14px;
    padding: 8px;
  }
}
@media (min-width: 768px) and (max-width: 991px){
.bg-banner-newstud-img img{
	bottom: -25px;
    right: -16px;}
.register-card{
position: unset;
}
.contact-box{
position: unset;
}
.scholarship-banner{
padding-top: 160px;
}
.topper-girl-img{
display:none;
}
}