* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f7fb;
  color: #0b1f44;
  line-height: 1.5;
}

img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.container {
  /* width: 100%; */
  /* max-width: 1366px; */
  /* margin: 0 auto; */
}

header {
  background: #f5f7fb;
  padding: 14px 12px;
  position: relative;
  top: 0;
  z-index: 100;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.logo-text {
  line-height: 1.1;
}

.logo-text span {
  font-size: 9px;
  color: #6c7ea8;
  font-weight: 600;
}

.visit-btn {
  text-decoration: none;
  background: #b61f2b;
  color: #fff;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  transition: .3s;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero {
  padding: 30px 0;
}

.hero-banner {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.highlight-bar {
  background: linear-gradient(90deg, #cf102d, #ffcc00);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-weight: 700;
  border-radius: 10px;
  margin-bottom: 24px;
  font-size: 22px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.owl-nav {
  top: calc(50% - 30px / 2);
  position: absolute;
  width: 100%;
}

button.owl-next {
  right: 0px;
  position: absolute;
}

button.owl-prev span,
button.owl-next span {
  font-size: 55px !important;
  color: hsla(0, 0%, 93.3%, .9);
}

.student-card {
  background: #f8fbff;
  border: 2px solid #e7eef9;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 15px;
}

.student-card img {
  height: 260px;
  object-fit: cover;
  border-radius: 0;
}

.student-card h3 {
  font-size: 50px;
  color: #d72638;
  font-weight: 800;
  line-height: 1;
  margin-top: 12px;
}

.student-card span {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

.student-card p {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
}

.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #072b61;
  position:relative;
  
}
.underline{position: relative;margin-bottom: 50px;}
.underline::after {
    content: "";
    width: 60%;
    height: 4px;
    background: #ffc107;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 10px;
}
.underlinesmall{position: relative;margin-bottom: 50px;}
.underlinesmall::after {
    content: "";
    width: 17%;
    height: 4px;
    background: #ffc107;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 10px;
}
.section-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 40px;
  font-size: 15px;
}
.infra{
  background-color: transparent;
    background-image: linear-gradient(180deg, #fcfcfc 0%, #F2BE29 100%);
}
.form-box {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-control {
  width: 100%;
  padding: 14px;
  border: 1px solid #d8dbe3;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  outline: none;
}

textarea.form-control {
  min-height: 120px;
  resize: none;
}

.submit-btn {
  background: #004aad;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  margin-top: 20px;
  cursor: pointer;
  font-weight: 600;
}

.placement-grid,
.gallery-grid,
.video-grid,
.collab-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.placement-card,
.gallery-card,
.video-card,
.collab-card,
.inner-grid {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 6px;
}

.owl-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #cfcfcf;
  border-radius: 50%;
  display: block;
  transition: all 0.3s ease;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
  background: #004aad;
  width: 28px;
  border-radius: 20px;
}

.placement-content,
.video-content,
.collab-content {
  padding: 18px;
}

.placement-card h4 {
  color: #d72638;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.placement-card p,
.video-content p,
.collab-content p {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
}

.stats-grid {
  grid-template-columns: repeat(5, 1fr);
}

.stat-box {
  background: #fff;
  padding: 28px 18px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.stat-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-direction:column
}
.stat-box p {
    font-size: 14px;
    font-weight: 600;
    color: #1a2a4f;
    margin: 0;
}
 .stat-box span {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}
.stat-box h3 {
  font-size: 34px;
  color: #004aad;
  margin-bottom: 8px;
  font-weight: bold;
}
.sk {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    padding: 20px 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    /* transform: translateY(40px); */
}
.sk::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0d47a1, #42a5f5);
}

.why-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-text p {
  color: #555;
  margin-bottom: 14px;
}
.fadeColor{
      background-color: transparent;
    background-image: linear-gradient(180deg, #fcfcfc 0%, #F2BE29 100%)
}
.circle-box {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: conic-gradient(#00c389 0deg 70deg, #ffc93c 70deg 140deg, #ff6b6b 140deg 210deg, #7f5af0 210deg 280deg, #00a8ff 280deg 360deg);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.circle-box::before {
  content: 'WHY MPGI';
  position: absolute;
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  font-weight: 800;
  color: #072b61;
}

.faq-item {
  background: #fff;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.faq-question {
  padding: 18px 22px;
  background: #f6c56f;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 18px 22px;
  display: none;
  color: #555;
}

.faq-item.active .faq-answer {
  display: block;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}

.logo-item {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.footer-cta {
  background: #072b61;
  color: #fff;
  padding: 50px;
  border-radius: 24px;
  text-align: center;
}

.footer-cta h2 {
  font-size: 40px;
  margin-bottom: 14px;
}

.footer-cta p {
  max-width: 700px;
  margin: 0 auto 24px;
  opacity: 0.9;
}

footer {
  padding: 24px 0;
  text-align: center;
  color: #777;
}

.future-section{
    position:relative;
    overflow:hidden;
    background:linear-gradient(90deg,#071a43 0%, #164b97 100%);
    padding:80px 0 40px;
    color:#fff;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
    position:relative;
    z-index:2;
}

.info-badge{
    display:inline-block;
    background:rgba(255,255,255,0.12);
    padding:14px 24px;
    border-radius:40px;
    font-size:16px;
    font-weight:700;
    margin-bottom:30px;
}

.heading-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    margin-bottom:40px;
}

.heading-content{
    max-width:900px;
}

.heading-content h1{
    font-size:72px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
}

.heading-content p{
    font-size:22px;
    line-height:1.8;
    max-width:900px;
}

.apply-box{
    text-align:center;
    min-width:360px;
}

.apply-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:330px;
    height:74px;
    background:#fff;
    color:#0f4ca3;
    border-radius:18px;
    text-decoration:none;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.apply-text{
    font-size:18px;
    color:#f0f0f0;
}

.notice-card{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:rgba(255,255,255,0.10);
    padding:22px;
    border-radius:22px;
    margin-bottom:20px;
    border:1px solid rgba(255,255,255,0.08);
    max-width:1120px;
}

.notice-number{
    min-width:44px;
    height:44px;
    border-radius:50%;
    background:#fff;
    color:#0f4ca3;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:22px;
}

.notice-card p{
    font-size:20px;
    line-height:1.8;
}

.footer-line{
    border-top:1px solid rgba(255,255,255,0.12);
    margin-top:40px;
    padding-top:25px;
    text-align:center;
    color:rgba(255,255,255,0.75);
    font-size:18px;
}

/* Background Circles */

.circle-top{
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
    top:-130px;
    right:-120px;
}

.circle-bottom{
    position:absolute;
    width:360px;
    height:360px;
    border-radius:50%;
    background:rgba(255,255,255,0.05);
    bottom:-180px;
    left:-140px;
}

/* Responsive */

@media(max-width:991px){

    .heading-row{
        flex-direction:column;
        align-items:flex-start;
    }

    .apply-box{
        width:100%;
        text-align:left;
    }

    .heading-content h1{
        font-size:52px;
    }

}

@media(max-width:767px){

    .future-section{
        padding:60px 0 30px;
    }

    .heading-content h1{
        font-size:40px;
    }

    .heading-content p{
        font-size:18px;
    }

    .apply-btn{
        width:100%;
        font-size:18px;
    }

    .notice-card{
        flex-direction:column;
    }

    .notice-card p{
        font-size:16px;
    }

}

@media(max-width:992px) {

  .hero-grid,
  .placement-grid,
  .gallery-grid,
  .video-grid,
  .collab-grid,
  .stats-grid,
  .logo-grid,
  .why-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px) {

  .hero-grid,
  .placement-grid,
  .gallery-grid,
  .video-grid,
  .collab-grid,
  .stats-grid,
  .logo-grid,
  .form-grid,
  .why-wrap {
    grid-template-columns: 1fr;
  }

  .highlight-bar {
    font-size: 18px;
  }

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

  .footer-cta {
    padding: 30px 20px;
  }

  .footer-cta h2 {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  .topbar {
    padding: 12px 40px;
  }

  .logo img {
    width: 42% !important;
    height: 1%;
  }

  .logo-text span {
    font-size: 12px;
  }

  .visit-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}

#contact .container {
    width: 80% !important;
}

.form-control {
    padding-bottom: 4px !important;
}
.dynamic_theme_block .merge_field_div .bs-dropdown-to-select-group .bs-dropdown-to-select {
    padding: 14px 14px 4px 9px !important;
}
.dynamic_theme_block .tab-pane .form-group {
    margin-bottom: 0px !important;
}
.dynamic_theme_block .npf_cpt_new img {
    margin-top: 2% !important;
}
.dynamic_theme_block .npf_cpt_new .CaptchaRefreshBtn:before {
    top: 9px !important;
}