*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  /* font-family:'Poppins',sans-serif; */
  font-family:'Open Sans',sans-serif !important;
  background:#fff;
}

/* CUSTOM CONTAINER */

.container{
  width:100%;
  max-width:1280px;
  padding-left:20px;
  padding-right:20px;
  margin:0 auto;
}

/* LARGE DESKTOP */

@media(min-width:1400px){

  .container{
    max-width:1280px;
  }

}

/* LAPTOP */

@media(max-width:1199px){

  .container{
    max-width:1140px;
    padding-left:18px;
    padding-right:18px;
  }

}

/* TABLET */

@media(max-width:991px){

  .container{
    max-width:960px;
    padding-left:16px;
    padding-right:16px;
  }

}

/* MOBILE */

@media(max-width:767px){

  .container{
    max-width:100%;
    padding-left:14px;
    padding-right:14px;
  }

}

/* HERO */

.admission-hero{
  padding:20px;
  background:#fff;
}

/* NAVBAR */

.hero-navbar{
  max-width:1400px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:10px;
}

.logo img{
  height:40px;
}

/* MENU */

.nav-menu{
  display:flex;
  gap:35px;
  list-style:none;
}

.nav-menu li a{
  text-decoration:none;
  color:#111;
  font-size:15px;
  font-weight:500;
}

/* BUTTON */

.nav-btn{
  background:#a11121;
  color:#fff;
  text-decoration:none;
  padding:10px 24px;
  border-radius:12px;
  font-size:16px;
  font-weight:600;
}

/* HERO BOX */

.hero-box{
  position:relative;
  max-width:1450px;
  margin:auto;
  border-radius:12px;
  overflow:hidden;
  background:url('banner.webp') center center/cover no-repeat;
  min-height:780px;
}

/* OVERLAY */

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.38);
}

/* WRAPPER */

.hero-wrapper{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:780px;
  padding:30px 60px;
}

/* CONTENT */

.hero-content{
  width:52%;
  color:#fff;
  padding-top:20px;
}

.hero-badge{
  display:inline-block;
  background:#b30f24;
  color:#fff;
  padding:6px 24px;
  border-radius:40px;
  font-size:14px;
  font-weight:600;
  margin-bottom:20px;
}

.hero-content h1{
  font-size:50px;
  line-height:1.08;
  font-weight:700;
  margin-bottom:20px;
}

.hero-content p{
  font-size:18px;
  line-height:1.8;
  color:#f4f4f4;
  max-width:760px;
  margin-bottom:20px;
}

/* BUTTONS */

.hero-buttons{
  display:flex;
  gap:22px;
}

.primary-btn,
.secondary-btn{
  text-decoration:none;
  padding:8px 20px;
  border-radius:12px;
  font-size:16px;
  font-weight:600;
  transition:0.3s;
}

.primary-btn{
  background:#b30f24;
  color:#fff;
}

.secondary-btn{
    border:1.5px solid rgba(255,255,255,0.4);
    color:#fff;
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    box-shadow:0 4px 20px rgba(0,0,0,0.12);
}

/* FORM */

.hero-form{
  width:380px;
}

.admission-form{
  background:#fff;
  border-radius:12px;
  padding:34px 28px;
  box-shadow:0 10px 35px rgba(0,0,0,0.18);
}

.admission-form h3{
  text-align:center;
  font-size:20px;
  line-height:1.5;
  font-weight:700;
  color:#111;
}

.title-line{
  width:45px;
  height:3px;
  background:#b30f24;
  margin:14px auto 24px;
  border-radius:12px;
}

/* INPUTS */
/* INPUTS */

.form-control,
.form-select{
  width:100%;
  height:42px;
  border:1px solid #dcdcdc;
  border-radius: 12px;
  padding:0 14px;
  font-size:13px;
  outline:none;
  background:#fff;
  box-shadow:none !important;
}

.form-control:focus,
.form-select:focus{
  border-color:#b30f24;
}

/* SPACING */

.mb-2{
  margin-bottom:10px;
}

/* PHONE */

.phone-group{
  display:flex;
  gap:10px;
}

.country-code{
  width:68px;
  height:42px;
  border:1px solid #dcdcdc;
  border-radius:12px;
  padding:0 8px;
  font-size:13px;
  outline:none;
}

/* CAPTCHA */

.captcha-wrapper{
    display:flex;
    gap:10px;
    align-items:center;
}

.captcha-box{
    min-width:120px;
    height:48px;
    background:#f3f3f3;
    border:1px solid #ddd;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    letter-spacing:3px;
    color:#333;
    user-select:none;
}

.captcha-refresh{
    /* width:20px; */
    /* height:20px; */
    border:none;
    background:transparent;
    color:#0d3c78;
    font-size:22px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
    box-shadow:none;
}

.captcha-refresh:hover{
    background:transparent;
    color:#0e2049;
}

/* TERMS */

.checkbox-wrap{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin:12px 0;
}

.checkbox-wrap input{
  margin-top:3px;
}

.checkbox-wrap label{
  font-size:12px;
  color:#444;
  line-height:1.5;
}

.checkbox-wrap a{
  color:#b30f24;
  text-decoration:none;
}

/* SUBMIT */

.submit-btn{
  width:100%;
  height:44px;
  border:none;
  border-radius:12px;
  background:#142b63;
  color:#fff;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.submit-btn:hover{
  background:#0e2049;
}


/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width:991px){

  /* HERO */

  .admission-hero{
    padding:15px;
  }

  /* NAVBAR */

  .hero-navbar{
    padding-bottom:14px;
  }

  .logo img{
    height:34px;
  }

  .nav-btn{
    padding:9px 20px;
    font-size:14px;
  }

  /* HERO BOX */

  .hero-box{
    min-height:auto;
    border-radius:14px;
  }

  /* WRAPPER */

  .hero-wrapper{
    flex-direction:column;
    justify-content:center;
    gap:40px;
    min-height:auto;
    padding:50px 35px;
  }

  /* CONTENT */

  .hero-content{
    width:100%;
    text-align:center;
    padding-top:0;
  }

  .hero-content h1{
    font-size:42px;
    line-height:1.2;
  }

  .hero-content p{
    font-size:16px;
    line-height:1.7;
    margin:auto auto 22px;
  }

  /* BUTTONS */

  .hero-buttons{
    justify-content:center;
  }

  /* FORM */

  .hero-form{
    width:100%;
    max-width:420px;
  }

}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:767px){

  /* HERO */

  .admission-hero{
    padding:10px;
  }

  /* NAVBAR */

  .hero-navbar{
    padding-bottom:12px;
  }

  .logo img{
    height:30px;
  }

  .nav-btn{
    padding:8px 16px;
    font-size:13px;
    border-radius:10px;
  }

  /* HERO BOX */

  .hero-box{
    border-radius:12px;
  }

  /* WRAPPER */

  .hero-wrapper{
    padding:35px 18px;
    gap:30px;
  }

  /* CONTENT */

  .hero-content{
    width:100%;
  }

  .hero-badge{
    font-size:11px;
    padding:6px 16px;
    margin-bottom:16px;
  }

  .hero-content h1{
    font-size:30px;
    line-height:1.25;
    margin-bottom:16px;
  }

  .hero-content p{
    font-size:14px;
    line-height:1.7;
    margin-bottom:18px;
  }

  /* BUTTONS */

  .hero-buttons{
    display:flex;
    flex-direction:row;
    gap:10px;
    width:100%;
  }

  .primary-btn,
  .secondary-btn{
    width:50%;
    text-align:center;
    padding:11px 10px;
    font-size:13px;
    border-radius:10px;
  }

  /* FORM */

  .hero-form{
    width:100%;
    max-width:100%;
  }

  .admission-form{
    padding:22px 18px;
    border-radius:14px;
  }

  .admission-form h3{
    font-size:18px;
    line-height:1.4;
  }

  .title-line{
    margin:12px auto 18px;
  }

  /* INPUT */

  .form-control,
  .form-select,
  .country-code{
    height:40px;
    font-size:12px;
    border-radius:10px;
  }

  /* PHONE */

  .phone-group{
    gap:8px;
  }

  .country-code{
    width:65px;
  }

  /* CAPTCHA */

  .captcha-wrapper{
    gap:8px;
  }

  .captcha-box{
    height:40px;
    font-size:15px;
    border-radius:10px;
  }

  /* TERMS */

  .checkbox-wrap{
    margin:10px 0;
  }

  .checkbox-wrap label{
    font-size:11px;
    line-height:1.5;
  }

  /* SUBMIT */

  .submit-btn{
    height:42px;
    font-size:13px;
    border-radius:10px;
  }

}




/* STATS SECTION */

.stats-section{
  padding:20px 0;
  /* background:#f7f7f7; */
}

/* BOX */

.stat-box{
  text-align:center;
  position:relative;
}

/* NUMBER */

.stat-box h2{
  display:inline-block;
  font-size:40px;
  font-weight:700;
  color:#8d1c2f;
  margin:0;
  line-height:1;
  font-family:'Playfair Display',serif;
}

/* PLUS */

.stat-box span{
  display:inline-block;
  font-size:30px;
  font-weight:700;
  color:#8d1c2f;
  line-height:1;
  margin-left:2px;
}

/* TEXT */

.stat-box p{
  margin-top:8px;
  font-size:24px;
  color:#1a305c;
  font-weight:500;
  text-align: center;
}

/* =========================
   MOBILE 2 ROW 3 COLUMN
========================= */

@media(max-width:767px){

  .stats-section{
    padding:10p 0;
  }

  /* ROW */

  .stats-section .row{
    row-gap:-18px;
  }

  /* COLUMN */

  .stats-section .col-lg,
  .stats-section .col-md-4,
  .stats-section .col-6{
    width:33.33%;
    flex:0 0 33.33%;
    max-width:33.33%;
    padding-left:8px;
    padding-right:8px;
  }

  /* BOX */

  .stat-box{
    /* padding:10px 4px; */
    text-align:center;
  }

  /* NUMBER */

  .stat-box h2{
    font-size:24px;
    line-height:1;
  }

  /* PLUS */

  .stat-box span{
    font-size:18px;
  }

  /* TEXT */

  .stat-box p{
    font-size:14px;
    line-height:1.4;
    margin-top:6px;
  }

}






.academic-program-section{
  padding:60px 0;
  background:#f7f8fc;
}

.academic-heading{
  text-align:center;
  max-width:760px;
  margin:auto auto 35px;
}

.academic-heading span{
  display:inline-block;
  color:#a11121;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:10px;
}

.academic-heading h2{
  font-size:40px;
  font-weight:700;
  color:#0f2147;
  margin-bottom:12px;
}

.academic-line{
  width:70px;
  height:3px;
  background:#d8a125;
  margin:0 auto 18px;
  border-radius:10px;
}

.academic-heading p{
  font-size:15px;
  line-height:1.8;
  color:#5b6475;
}

.academic-campus-tabs{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-bottom:28px;
  flex-wrap:wrap;
}

.academic-campus-btn{
  border:none;
  background:#e8ebf2;
  color:#23395d;
  padding:12px 28px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.academic-campus-btn.active{
  background:#0d3c78;
  color:#fff;
}

.academic-campus-content{
  display:none;
}

.academic-campus-content.active{
  display:block;
}

.academic-box{
  background:#fff;
  border-radius:24px;
  padding:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.academic-program-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:30px;
}

.academic-program-btn{
  border:none;
  background:#f2f3f7;
  color:#1f2b45;
  padding:11px 18px;
  border-radius:12px;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.academic-program-btn.active{
  background:#0d3c78;
  color:#fff;
}

.academic-program-content{
  display:none;
}

.academic-program-content.active{
  display:block;
}

.academic-column h3{
  font-size:30px;
  font-weight:700;
  color:#0d3c78;
  margin-bottom:20px;
}

.academic-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.academic-card{
  background:#fff;
  border:1px solid #ececec;
  border-radius:16px;
  padding:22px;
  font-size:15px;
  font-weight:600;
  line-height:1.6;
  box-shadow:0 4px 12px rgba(0,0,0,0.03);
  transition:0.3s;
}

.academic-card:hover{
  transform:translateY(-4px);
  border-color:#0d3c78;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:991px){

  .academic-program-section{
    padding:50px 0;
  }

  /* TITLE */

  .academic-heading{
    max-width:100%;
    margin-bottom:28px;
    padding:0 10px;
  }

  .academic-heading h2{
    font-size:32px;
    line-height:1.3;
  }

  .academic-heading p{
    font-size:14px;
    line-height:1.7;
  }

  /* CAMPUS BUTTONS */

  .academic-campus-tabs{
    gap:10px;
    margin-bottom:24px;
  }

  .academic-campus-btn{
    padding:10px 22px;
    font-size:13px;
  }

  /* BOX */

  .academic-box{
    padding:20px;
    border-radius:18px;
  }

  /* PROGRAM TABS */

  .academic-program-tabs{
    gap:8px;
    margin-bottom:24px;
  }

  .academic-program-btn{
    padding:10px 14px;
    font-size:13px;
    border-radius:10px;
  }

  /* TITLE */

  .academic-column h3{
    font-size:24px;
    margin-bottom:16px;
  }

  /* GRID */

  .academic-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  /* CARD */

  .academic-card{
    padding:18px;
    font-size:14px;
    border-radius:14px;
  }

}


/* =========================
   MOBILE
========================= */

@media(max-width:767px){

  .academic-program-section{
    padding:40px 0;
  }

  /* TITLE */

  .academic-heading{
    margin-bottom:24px;
  }

  .academic-heading span{
    font-size:11px;
    margin-bottom:8px;
  }

  .academic-heading h2{
    font-size:26px;
    margin-bottom:10px;
  }

  .academic-line{
    width:55px;
    margin-bottom:14px;
  }

  .academic-heading p{
    font-size:13px;
    line-height:1.7;
  }

  /* CAMPUS BUTTONS */

  .academic-campus-tabs{
    flex-direction:column;
    align-items:center;
    gap:10px;
  }

  .academic-campus-btn{
    width:100%;
    max-width:260px;
    font-size:13px;
    padding:11px 20px;
  }

  /* BOX */

  .academic-box{
    padding:16px;
    border-radius:16px;
  }

  /* PROGRAM TABS */

  .academic-program-tabs{
    overflow-x:auto;
    flex-wrap:nowrap;
    padding-bottom:6px;
    scrollbar-width:none;
  }

  .academic-program-tabs::-webkit-scrollbar{
    display:none;
  }

  .academic-program-btn{
    white-space:nowrap;
    flex-shrink:0;
    font-size:12px;
    padding:9px 14px;
  }

  /* COLUMN */

  .academic-column h3{
    font-size:20px;
    margin-bottom:14px;
  }

  /* CARD */

  .academic-card{
    padding:16px;
    font-size:13px;
    line-height:1.6;
    border-radius:12px;
  }

}







/* CAMPUSES SECTION */

.campuses-section{
  padding:50px 0;
  /* background:#f7f7f7; */
}

/* TITLE */

.section-title{
  text-align:center;
  margin-bottom:30px;
}

.section-title span{
  display:inline-block;
  color:#b10f23;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:10px;
}

.section-title h2{
  font-size:36px;
  font-weight:700;
  color:#1a305c;
  margin:0;
  margin-bottom: 10px;
}

/* CAMPUS STRIP */

.campus-strip{
  /* background:#fff;
  border:1px solid #e8e8e8; */
  border-radius:14px;
  padding:20px 0;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:15px;
}

/* ITEM */

.campus-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:0 18px;
  position:relative;
}

/* DIVIDER */

.campus-item::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:45px;
  background:#e5e5e5;
}

.campus-item:last-child::after{
  display:none;
}

/* ICON */

.campus-icon{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#f2f2f2;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#17356d;
  font-size:18px;
  flex-shrink:0;
}

/* TEXT */

.campus-content small{
  display:block;
  font-size:11px;
  font-weight:700;
  color:#9a9a9a;
  letter-spacing:1px;
  margin-bottom:3px;
}

.campus-content h4{
  font-size:17px;
  line-height:1.4;
  font-weight:600;
  color:#222;
  margin:0;
}

/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width:991px){

  .campuses-section{
    padding:45px 0;
  }

  /* TITLE */

  .section-title{
    margin-bottom:24px;
    padding:0 10px;
  }

  .section-title h2{
    font-size:30px;
    line-height:1.3;
  }

  /* STRIP */

  .campus-strip{
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    padding:10px 0;
  }

  /* ITEM */

  .campus-item{
    padding:14px;
    border:1px solid #ececec;
    border-radius:14px;
    background:#fff;
  }

  /* REMOVE DIVIDER */

  .campus-item::after{
    display:none;
  }

  /* ICON */

  .campus-icon{
    width:42px;
    height:42px;
    font-size:16px;
  }

  /* TEXT */

  .campus-content h4{
    font-size:15px;
  }

}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:767px){

  .campuses-section{
    padding:20px 0;
  }

  /* TITLE */

  .section-title{
    margin-bottom:20px;
  }

  .section-title span{
    font-size:11px;
    margin-bottom:8px;
  }

  .section-title h2{
    font-size:24px;
    line-height:1.4;
  }

  /* STRIP */

  .campus-strip{
    grid-template-columns:1fr;
    gap:12px;
  }

  /* ITEM */

  .campus-item{
    padding:14px 16px;
    gap:12px;
    border-radius:12px;
  }

  /* ICON */

  .campus-icon{
    width:40px;
    height:40px;
    font-size:15px;
  }

  /* TEXT */

  .campus-content small{
    font-size:10px;
  }

  .campus-content h4{
    font-size:14px;
    line-height:1.5;
  }

}





/* RECRUITERS SECTION */

.recruiters-section{
  padding:20px 0;
  /* background:#f8f9fc; */
}

/* TITLE */

.recruiters-title{
  text-align:center;
  max-width:850px;
  margin:0 auto 45px;
}

.small-text{
  display:inline-block;
  color:#b10f23;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:12px;
}

.recruiters-title h2{
  font-size:36px;
  line-height:1.2;
  font-weight:700;
  color:#1a305c;
  /* margin-bottom: 10px; */
}

.recruiters-title p{
  font-size:16px;
  line-height:1.8;
  color:#5b6475;
  /* margin:0; */
}

/* IMAGE BOX */

.recruiters-image{
  /* background:#fff; */
  overflow:hidden;
}

/* IMAGE */

.recruiters-image img{
  width:100%;
  display:block;
  border-radius:12px;
}

/* MOBILE */

@media(max-width:991px){

  .recruiters-section{
    padding:60px 0;
  }

  .recruiters-title h2{
    font-size:36px;
  }

}

@media(max-width:767px){

  .recruiters-section{
    padding:20px 0;
  }

  .recruiters-title{
    margin-bottom:30px;
  }

  .recruiters-title h2{
    font-size:28px;
  }

  .recruiters-title p{
    font-size:15px;
    line-height:1.7;
  }

  .recruiters-image{
    padding:12px;
    border-radius:16px;
  }
  .recruiters-image img{
    width:100%;
    max-width:950px;
    /* max-width:none; */
    border-radius:14px;
    display:block;
  }

}




/* FOOTER TOP */

.footer-top{
  background:#1a305c;
  border-top:2px solid #81202c;
  padding:14px 0;
}

/* WRAPPER */

.footer-top-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

/* SOCIAL */

.footer-social{
  display:flex;
  align-items:center;
  gap:30px;
}

.footer-social a{
  color:#fff;
  font-size:22px;
  transition:0.3s;
}

.footer-social a:hover{
  color:#81202c;
}

/* TEXT */

.footer-text p{
  margin:0;
  color:#fff;
  font-size:16px;
  font-weight:400;
}

.footer-text a{
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}

.footer-text a:hover{
  color:#b10f23;
}
/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width:991px){

  .footer-top{
    padding:16px 0;
  }

  /* WRAPPER */

  .footer-top-wrapper{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    gap:16px;
  }

  /* SOCIAL */

  .footer-social{
    gap:24px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .footer-social a{
    font-size:20px;
  }

  /* TEXT */

  .footer-text p{
    font-size:14px;
    line-height:1.7;
  }

}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:767px){

  .footer-top{
    padding:14px 0;
  }

  /* WRAPPER */

  .footer-top-wrapper{
    gap:12px;
  }

  /* SOCIAL */

  .footer-social{
    gap:18px;
  }

  .footer-social a{
    font-size:18px;
  }

  /* TEXT */

  .footer-text{
    width:100%;
  }

  .footer-text p{
    font-size:12px;
    line-height:1.8;
    padding:0 10px;
  }

}
