/* css/style.css */

:root {
  --primary-color: #EA495D;
  --secondary-color: #6A6A6A;
  --white-color: #FFFFFF;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", serif;
  overflow-x: hidden;
}

/* =========================
   Banner Section
========================= */

.banner-section {
  position: relative;
  background: url("images/bg-1.webp") center center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.banner-section .container {
  z-index: 2;
}

.logo img {
  max-width: 150px;
}

.banner-image img {
  max-width: 100%;
}

.banner-content h1 {
  color: var(--white-color);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.banner-content h1 span {
  color: var(--primary-color);
}

.banner-content p {
  color: #dddddd;
  font-size: 18px;
  max-width: 550px;
  margin-bottom: 0;
}

/* =========================
   Form Box
========================= */

/* =========================
   Form Design Like Screenshot
========================= */

.form-box {
  background: #f3f3f5;
  padding: 18px;
  border-radius: 0;
  box-shadow: none;
  max-width: 380px;
  margin: auto;
}

.form-box h3 {
  color: #EA495D;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px !important;
  font-family: "Montserrat", serif;
}

.form-box form {
  font-family: "Roboto", sans-serif;
}

/* Tabs */

.form-tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 12px;
  padding-left: 8px;
}

.form-tabs a {
  color: #000;
  font-size: 16px;
  text-decoration: underline;
  font-weight: 500;
}

.form-tabs a.active {
  color: #000;
}

/* Spacing */

.form-box .mb-3 {
  margin-bottom: 6px !important;
}

/* Input Style */

.form-control,
.form-select {
  height: 36px;
  min-height: 36px;
  border-radius: 0;
  border: 1px solid #d8d8d8;
  padding: 5px 10px;
  font-size: 13px;
  background: #fff;
  color: #000;
  box-shadow: none !important;
}

.form-control::placeholder {
  color: #000;
  font-size: 13px;
}

.form-control:focus,
.form-select:focus {
  border-color: #EA495D;
  box-shadow: none !important;
}

/* Country Code */

.country-code {
  max-width: 78px;
  border-right: 0;
  font-size: 13px;
}

.input-group .form-control {
  border-left: 0;
}

/* Two Column */

.form-row {
  display: flex;
  gap: 6px;
}

.form-row .mb-3 {
  width: 50%;
}

/* Checkbox */

.form-check {
  margin-top: 8px;
  margin-bottom: 10px !important;
  display: flex;
  align-items: flex-start;
}

.form-check-input {
  width: 13px;
  height: 13px;
  border-radius: 0;
  margin-top: 3px;
}

.form-check-label {
  font-size: 11px;
  line-height: 1.4;
  color: #000;
  padding-left: 6px;
}

/* Button */

.submit-btn {
  background: #EA1E63;
  border: none;
  color: #fff;
  height: 38px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.3s ease;
  box-shadow: none;
}

.submit-btn:hover {
  background: #d71858;
}

/* Bottom Link */

.resend-link {
  text-align: center;
  margin-top: 12px;
}

.resend-link a {
  color: #EA1E63;
  font-size: 11px;
  text-decoration: underline;
  text-transform: uppercase;
  font-weight: 500;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 786px) {

  /* Banner */

  .banner-section {
    min-height: auto;
    padding: 60px 0;
  }

  .banner-content {
    text-align: center;
    margin-bottom: 35px;
  }

  .logo {
    text-align: center;
  }

  .logo img {
    max-width: 120px;
  }

  .banner-image {
    text-align: center;
    margin-bottom: 25px;
  }

  .banner-image img {
    max-width: 85%;
  }

  .banner-content h1 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .banner-content p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
  }

  /* Form */

  .form-box {
    max-width: 100%;
    padding: 16px;
    margin-top: 20px;
  }

  .form-box h3 {
    font-size: 20px;
    margin-bottom: 12px !important;
  }

  /* Tabs */

  .form-tabs {
    gap: 18px;
    margin-bottom: 10px;
    padding-left: 0;
    justify-content: center;
  }

  .form-tabs a {
    font-size: 14px;
  }

  /* Inputs */

  .form-control,
  .form-select {
    height: 40px;
    min-height: 40px;
    font-size: 13px;
  }

  .form-control::placeholder {
    font-size: 13px;
  }

  /* Country Code */

  .country-code {
    max-width: 72px;
    font-size: 12px;
  }

  /* Two Column Fields */

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-row .mb-3 {
    width: 100%;
  }

  /* Checkbox */

  .form-check-label {
    font-size: 10px;
    line-height: 1.5;
  }

  /* Button */

  .submit-btn {
    height: 42px;
    font-size: 14px;
  }

  /* Bottom Link */

  .resend-link {
    margin-top: 10px;
  }

  .resend-link a {
    font-size: 10px;
  }

}








/* =========================
   About Section
========================= */

.about-section {
  background: url("images/back.webp") center center/cover no-repeat;
  padding: 20px 0;
  position: relative;
}

.about-image {
  width: 100%;
}

.about-image img {
  width: 100%;
  display: block;
}

/* Responsive */

@media (max-width: 767px) {

  .about-section {
    padding: 40px 0;
  }

}




/* =========================
   PROGRAMMES SECTION
========================= */

.program-section {
  background: #a8a8a8;
  padding: 60px 0;
}

/* Heading */

.program-title {
  position: relative;
  margin-bottom: 40px;
}

.program-title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #6e6e6e;
}

.program-title h2 {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: #EA5A63;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 12px 28px;
  margin: 0;
  font-family: "Montserrat", serif;
}

.program-title h2::after {
  content: "";
  position: absolute;
  top: 0;
  right: -22px;
  border-top: 50px solid #EA5A63;
  border-right: 22px solid transparent;
}

/* Tabs */

.program-tabs {
  margin-bottom: 25px !important;
}

.program-tabs .nav-link {
  background: #fff;
  color: #111;
  border: none;
  border-radius: 10px 10px 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  padding: 14px 18px;
  margin-right: 2px;
  position: relative;
}

.program-tabs .nav-link.active {
  background: #EA5A63;
  color: #fff;
}

.program-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 12px solid #EA5A63;
}

/* Accordion */

.program-accordion {
  margin-bottom: 12px;
}

.program-card {
  background: #f3f3f3;
}

.program-btn {
  width: 100%;
  border: none;
  background: #f3f3f3;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0b2c60;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}

.program-btn i {
  font-size: 16px;
  transition: 0.3s ease;
}

.program-btn.active i {
  transform: rotate(180deg);
}

/* Body */

.program-body {
  display: none;
  background: #dcdcdc;
  padding: 15px 22px;
}

/* List */

.program-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px dotted #777;
  color: #222;
  font-size: 16px;
}

.program-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.program-dot {
  width: 7px;
  height: 7px;
  background: #EA5A63;
  flex-shrink: 0;
}

.apply-btn {
  background: #EA5A63;
  color: #fff;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  min-width: 74px;
  text-align: center;
  transition: 0.3s ease;
}

.apply-btn:hover {
  background: #d94a57;
  color: #fff;
}


/* Responsive */

@media (max-width: 767px) {

  .program-section {
    padding: 45px 0;
  }

  .program-title h2 {
    font-size: 20px;
    padding: 10px 20px;
  }

  .program-title h2::after {
    border-top: 44px solid #EA5A63;
  }

  .program-tabs .nav-link {
    font-size: 14px;
    padding: 10px 12px;
  }

  .program-btn {
    font-size: 14px;
    padding: 14px 16px;
  }

  .program-list li {
    flex-wrap: wrap;
    font-size: 14px;
  }

}






/* =========================
   HOW TO APPLY SECTION
========================= */

.apply-section {
  background: url("images/how-to-apply.webp");

  /* Focus on left side */
  background-position: left center;

  background-size: cover;
  background-repeat: no-repeat;

  padding: 70px 0;
  position: relative;
}

/* Heading */

.apply-heading {
  position: relative;
  margin-bottom: 50px;
}

.apply-heading::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: rgba(70, 70, 70, 0.6);
}

.apply-heading h2 {
  position: relative;
  z-index: 2;

  display: inline-block;

  background: #ffffff;
  color: #EA495D;

  font-size: 24px;
  font-weight: 700;

  padding: 12px 30px;

  margin: 0;

  font-family: "Montserrat", serif;
}

.apply-heading h2::after {
  content: "";
  position: absolute;
  top: 0;
  right: -18px;

  width: 18px;
  height: 100%;

  background: #5d5d5d;

  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* Steps */

.apply-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* Number Box */

.step-number {
  width: 54px;
  height: 58px;

  background: #6a6a6a;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  font-size: 22px;
  font-weight: 700;

  flex-shrink: 0;

  font-family: "Montserrat", serif;
}

/* Text */

.apply-step h4 {
  color: #fff;

  font-size: 18px;
  font-weight: 700;

  line-height: 1.35;

  margin: 0;
  padding-top: 18px;

  text-transform: uppercase;
}

/* Bottom Note */

.apply-note {
  margin-top: 70px;
}

.apply-note p {
  color: #fff;

  font-size: 16px;
  line-height: 1.7;

  margin: 0;

  max-width: 1050px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .apply-step h4 {
    font-size: 16px;
  }

}

@media (max-width: 767px) {

  .apply-section {
    padding: 50px 0;
  }

  .apply-heading {
    margin-bottom: 35px;
  }

  .apply-heading h2 {
    font-size: 20px;
    padding: 10px 22px;
  }

  .apply-heading h2::after {
    border-top: 44px solid #5d5d5d;
  }

  .apply-step {
    gap: 12px;
  }

  .step-number {
    width: 48px;
    height: 52px;
    font-size: 20px;
  }

  .apply-step h4 {
    font-size: 15px;
    padding-top: 14px;
  }

  .apply-note {
    margin-top: 40px;
  }

  .apply-note p {
    font-size: 14px;
    line-height: 1.6;
  }

}










/* =========================
   INTERNATIONAL EXPOSURE
========================= */

.exposure-section {
  background: #b3b3b3;
  padding: 70px 0;
  position: relative;
}

/* Heading */

.exposure-heading {
  max-width: 1100px;
  margin: 0 auto 40px;
}

.exposure-heading h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: "Montserrat", serif;
}

.exposure-heading p {
  color: #fff;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Image */

.exposure-image {
  margin-bottom: 15px;
}

.exposure-image img {
  max-width: 600px;
  width: 100%;
}

/* Videos */

.exposure-videos {
  margin-top: 10px;
}

/* =========================
   VIDEO BOX
========================= */

.video-box {
  overflow: hidden;
  border-radius: 6px;
  background: #000;
  position: relative;

  box-shadow: 0 10px 25px rgba(0,0,0,0.18);

  transition: 0.4s ease;
}

.video-box:hover {
  transform: translateY(-4px);
}

/* YouTube iframe */

.video-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Remove white spacing */

.video-box.ratio {
  --bs-aspect-ratio: 56.25%;
}

/* Responsive iframe feel */

.video-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  pointer-events: none;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .exposure-heading h2 {
    font-size: 38px;
  }

  .exposure-heading p {
    font-size: 17px;
    line-height: 1.7;
  }

}

@media (max-width: 767px) {

  .exposure-section {
    padding: 50px 0;
  }

  .exposure-heading {
    margin-bottom: 30px;
  }

  .exposure-heading h2 {
    font-size: 28px;
  }

  .exposure-heading p {
    font-size: 15px;
    line-height: 1.7;
  }

  .exposure-image {
    margin-bottom: 30px;
  }

  .video-box {
    border-radius: 5px;
  }

}







/* =========================
   RECRUITERS SECTION
========================= */

.recruiters-section {
  background: white;
  padding: 70px 0;
  position: relative;
}

/* Heading */

.recruiters-heading {
  margin-bottom: 45px;
}

.recruiters-heading h2 {
  position: relative;

  display: inline-block;

  background: #EA495D;
  color: #fff;

  font-size: 24px;
  font-weight: 700;

  padding: 12px 28px;

  margin: 0;

  font-family: "Montserrat", serif;
}

.recruiters-heading h2::after {
  content: "";
  position: absolute;
  top: 0;
  right: -18px;

  width: 18px;
  height: 100%;

  background: #6A6A6A;

  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* Recruiters Image */

.recruiters-image {
  margin-bottom: 60px;
}

.recruiters-image img {
  max-width: 1100px;
  width: 100%;
}

/* Placement Box */

.placement-box {
  background: #E65763;
  padding: 15px 40px;
}

/* Left Title */

.placement-title h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;

  font-family: "Montserrat", serif;
}

/* Stats */

.placement-item {
  text-align: center;
}

.placement-item h4 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;

  font-family: "Montserrat", serif;
}

.placement-item p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 786px) {

  .recruiters-section {
    padding: 50px 0;
  }

  /* Heading */

  .recruiters-heading {
    margin-bottom: 30px;
    text-align: center;
  }

  .recruiters-heading h2 {
    font-size: 20px;
    padding: 10px 22px;
  }

  .recruiters-heading h2::after {
    border-top: 44px solid #6A6A6A;
  }

  /* Recruiters Image */

  .recruiters-image {
    margin-bottom: 35px;
  }

  .recruiters-image img {
    max-width: 100%;
  }

  /* Placement Box */

  .placement-box {
    padding: 30px 20px;
  }

  /* Left Title */

  .placement-title {
    text-align: center;
    margin-bottom: 25px;
  }

  .placement-title h3 {
    font-size: 24px;
    line-height: 1.3;
  }

  /* Stats */

  .placement-item {
    margin-bottom: 28px;
  }

  .placement-item:last-child {
    margin-bottom: 0;
  }

  .placement-item h4 {
    font-size: 38px;
    margin-bottom: 8px;
  }

  .placement-item p {
    font-size: 14px;
    line-height: 1.5;
  }

}





/* =========================
   LIFE AT CAMPUS SECTION
========================= */

.campus-section {
  background: url("images/back.webp") center center/cover no-repeat;
  padding: 60px 0 70px;
  position: relative;
}

/* Heading */

.campus-heading {
  margin-bottom: 35px;
}

.campus-heading h2 {
  position: relative;

  display: inline-block;

  background: #f3f3f3;
  color: #EA495D;

  font-size: 24px;
  font-weight: 700;

  padding: 12px 30px;

  margin: 0;

  font-family: "Montserrat", serif;
}

.campus-heading h2::after {
  content: "";
  position: absolute;
  top: 0;
  right: -18px;

  width: 18px;
  height: 100%;

  background: #6A6A6A;

  clip-path: polygon(0 0, 100% 100%, 0 100%);
}


/* Image */

.campus-image img {
  width: 100%;
  max-width: 1015px;
  display: inline-block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {


}

@media (max-width: 767px) {

  .campus-section {
    padding: 45px 0 55px;
  }

  .campus-heading {
    margin-bottom: 25px;
  }

  .campus-heading h2 {
    font-size: 20px;
    padding: 10px 22px;
  }

  .campus-heading h2::after {
    border-top: 44px solid #6A6A6A;
  }

 

}








/* =========================
   AMENITIES SECTION
========================= */

.amenities-section {
  background: #8f8f8f;
  padding: 60px 0 80px;
}

/* Heading */

.amenities-heading {
  margin-bottom: 45px;
}

.amenities-heading h2 {
  position: relative;

  display: inline-block;

  background: #EA495D;
  color: #fff;

  font-size: 24px;
  font-weight: 700;

  padding: 12px 30px;

  margin: 0;

  font-family: "Montserrat", serif;
}

.amenities-heading h2::after {
  content: "";
  position: absolute;
  top: 0;
  right: -18px;

  width: 18px;
  height: 100%;

  background: #6A6A6A;

  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* Facility Box */

.facility-box h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;

  font-family: "Montserrat", serif;
}

/* Image */

.facility-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;

  display: block;
}

/* =========================
   FOOTER
========================= */

.footer-section {
  background: #1f1f1f;
  padding: 22px 0;
  text-align: center;
}

.footer-section p {
  color: #fff;
  font-size: 16px;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .facility-box h4 {
    font-size: 16px;
  }

}

@media (max-width: 767px) {

  .amenities-section {
    padding: 45px 0 55px;
  }

  .amenities-heading {
    margin-bottom: 35px;
  }

  .amenities-heading h2 {
    font-size: 20px;
    padding: 10px 22px;
  }

  .amenities-heading h2::after {
    border-top: 44px solid #6A6A6A;
  }

  .facility-box img {
    height: auto;
  }

  .footer-section p {
    font-size: 14px;
  }

}