:root {
    --mnr-blue: #035ba6;
    --mnr-orange: #f38020;
}
h1, h2,h3,h4,h5{
     font-family: 'Inter', sans-serif !important;
     letter-spacing: -2px;
}
p{
    font-family: 'Inter', sans-serif !important;
}
/* Ensure the section fills the screen */
.hero-section {
    height: 92vh !important;
    overflow: hidden; /* Keeps everything contained */
    border-bottom: 10px solid #f15a24;
}
/* body {
  user-select: none;
  caret-color: transparent;
} */
.btn-dark{
    border-radius: 0%;
}
.btn{
  font-family: 'Antonio', sans-serif;
}
/* Background strictly on the left */
.bg-image-side {
   background: linear-gradient(rgb(0 0 0 / 4%), rgb(3 91 166 / 82%)), url(./images/nanner.jpeg) no-repeat center center;
    background-size: cover;
    height: 100%;
    border-right: none !important;
}

/* Solid blue on the right */
.form-side {
    background-color: var(--mnr-blue);
    height: 100%;
    z-index: 1;
    position: relative;
}
.hero-title{
    LETTER-SPACING: -3PX;
    FONT-SIZE: 3.8REM;
}
/* The giant background text */
.bg-watermark {
    position: absolute;
    right: -30%; 
    top: 50%;
    transform: translateY(-50%) rotate(-90deg); 
    font-size: 19rem; 
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 0;
    white-space: nowrap; 
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -21px; 
}

/* Your Blue Contact Card */
.contact-card {
    z-index: 2;
    width: 100%;
    max-width: 367px;
    background: #ffffff !important; /* Kept the blue background */
    border: none !important; /* Ensures no white 'tab' border appears */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    
}

/* Your specific offset container */
.another {
    background: #035ba68f; /* Kept the semi-transparent overlay */
    position: relative;
    left: -35%; /* Kept the shift you wanted */
    padding: 30px; 
    display: flex;
    justify-content: center;  
    align-items: center;
     width: 380px;
    /* Clean edge fix */
    box-shadow: -5px 0 15px rgba(0,0,0,0.1); 
}

/* Form text color fix for blue background */
.contact-card h4, 
.contact-card .form-check-label, 
.contact-card .invalid-feedback {
    color: #ffffff !important;
}

.btn-orange {
    background-color: var(--mnr-orange);
    color: white;
    border: none;
}

/* Mobile Fix */
@media (max-width: 991px) {
    .another {
        left: -37px; /* Reset shift on mobile so the form is visible */
        background: transparent;
    }
}
@media (max-width: 576px) {

  .hero-section {
    height: auto !important;
    min-height: 100vh;
  }

  .bg-image-side {
    padding: 40px 20px !important;
    align-items: flex-start !important;
  }

  .logo-wrapper img {
    width: 180px !important;
    bottom: 0 !important;
    margin-bottom: 20px;
  }

  .hero-title {
            font-size: 56px !important;
        text-align: left;
        letter-spacing: -4px;
        line-height: 32px;
  }

  .hero-title span {
    font-size: 34px;
    letter-spacing: -2px;
  }

  .form-side {
    padding: 30px 15px;
  }

  .contact-card {
    width: 100%;
    padding: 20px !important;
  }

  .bg-watermark {
   font-size: 16rem;
        top: relative;
        /* opacity: 0.05; */
        left: 142px;
        /* left: -8px; */
        top: 72%;
  }

}



.admission-strip {   /* change to fixed if you want always visible */
  bottom: 0;
  width: 100%;
  background-color: #1069db;
  z-index: 9999;
  overflow: hidden;
   position: fixed;
}

.admission-track {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.admission-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.admission-content span {
  font-family: 'Antonio', sans-serif;
    font-size: 29px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 16px;
}
.admission-content .divider {
  color: rgba(255, 255, 255, 0.4);
}

/* Smooth infinite scroll */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* ==========================programs======================== */
/* Styling for the Engineering Section */
.programs-section {
    font-family: 'Montserrat', sans-serif;
}
.about-text{
    letter-spacing: -5px;
    font-size: 3.5rem;
    font-weight: normal;
}
.text-primary {
    color: #1069db !important;
}

.btn-orange {
    background-color: #f78727;
    color: white;
    border-radius: 0;
    border: none;
    transition: 0.3s;
}

.btn-orange:hover {
    background-color: #d14a1a;
    color: white;
}

/* Card Image Box */
.program-card .image-box {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.program-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* The Blue Labels at the bottom of images */
.program-label {
    background-color: #035ba6;
    color: white;
    padding: 10px 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.program-label .abbr {
    /* font-weight: 900; */
    font-size: 1.4rem;
    font-family: 'Antonio', sans-serif;
    padding-right: 12px;
    border-right: 1px solid rgba(255,255,255,0.5); /* The separator line */
    margin-right: 12px;
}

.program-label .full-name {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .program-label .abbr {
        font-size: 1.1rem;
    }
    .program-label .full-name {
        font-size: 0.65rem;
    }
}


/* ======================collaborations ============================== */
/* =========================
   Collaboration Section
========================= */

.collaboration-section {
      display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 110px;
    background: #ffffff;
    overflow: hidden;
}

.collab-left {
  flex: 0 0 36%;
}

.collab-left h2 {
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  color: #1069db;
  line-height: 1.2;
}


/* =========================
   Swiper / Logos
========================= */

.collab-right {
  flex: 1;
  overflow: hidden;
}

.swiper {
  width: 100%;
}

.logo-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-slide img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  border: 1px solid #ffd6b5;
  border-radius: 10px;
  background: #ffffff;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.logo-slide img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* =========================
   Responsive
========================= */
@media (max-width: 576px) {

  .collaboration-section {
    flex-direction: column;
    padding: 30px 15px;
    gap: 25px;
    text-align: center;
  }

  .collab-left {
    flex: 100%;
  }

  .collab-left h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .collab-left h2 span {
    display: block;
    margin-top: 6px;
  }

  .collab-right {
    width: 100%;
  }

  .swiper {
    width: 100%;
  }

  .logo-slide img {
    height: 50px;
    width: auto;
    padding: 10px 12px;
  }
  

}
@media (max-width: 576px) {
    .logo-slide img {
        height: 100px !important;
    }
}

/* ==========================another ============================= */
/* SECTION BACKGROUND */
.career-tracks-section {
  background: linear-gradient(135deg, #f58020, #ff9d3f);
  overflow: hidden;
}

/* SVG overlay above bg */
.bg-svg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.25;
  pointer-events: none;
}

/* keep content above svg */
.career-tracks-section .container {
  position: relative;
  z-index: 2;
}

/* TRACK CARDS */
.track-card {
  background: #ffffff;
  border-radius: 4px;
  padding: 30px;
  position: relative;
  height: 100%;
}

.track-card p {
  color: #035ba6;
  margin-top: 10px;
}

/* big titles */
.track-title {
  font-size: 30px;
  font-weight: 500;
  color: #035ba6;
  font-family: 'Antonio', sans-serif !important;
  text-transform: uppercase;
      letter-spacing: -1px;
}


/* icon watermark */
.track-icon {
    position: relative;
    right: -140px;
    width: 76px;
    filter: opacity(0.5);
}

/* responsive */
@media (max-width: 991px) {
  .track-title {
    font-size: 40px;
  }
}
/* ===========================another =============================== */
/* SECTION */
.deadline-section {
  /* min-height: 420px; */
  height: 40vh;
  overflow: hidden;
}

/* Background image */
.deadline-bg {
  position: absolute;
  inset: 0;
  background: url("./images//footer1.png") center/cover no-repeat;
  z-index: 0;
}

/* Dark overlay for readability */
.deadline-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* Text */
.deadline-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
}

.deadline-section p {
  font-size: 18px;
  opacity: 0.95;
}

/* CTA BAR */
.deadline-cta {
  background: #1069db;
  border: 4px solid #1069db;
}

/* Countdown boxes */
.count-box span {
  background: #ffffff;
  color: #1069db;
  font-size: 48px;
  font-weight: 800;
  padding: 10px 16px;
  line-height: 1;
  border-right: 2px solid #e5e5e5;
  font-family: 'Antonio', sans-serif;
}

/* Weeks text */
.weeks-text {
  color: #ffffff;
  font-size: 40px;
  font-weight: 400;
  font-family: 'Antonio', sans-serif;
}

/* Apply button */
.apply-btn {
    background: #ff9d3f;
    color: #ffffff;
    /* padding: 14px 28px; */
    font-size: 27px;
    border-radius: 0;
    letter-spacing: -2px;
}

.apply-btn:hover {
  background: #f58020;
  color: #ffffff;
}
.about-subtext{
color: #ff6a00; font-size: 19px; margin-top: -45px;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .deadline-section h2 {
    font-size: 28px;
  }
.about-subtext{
  color: #ff6a00; font-size: 19px; margin-top: 30px;
}
  .count-box span {
    font-size: 36px;
  }
.arrow {
  display: none;
}
  .weeks-text {
    font-size: 20px;
  }
  .highlight-title {
  font-size: 46px !important;
  font-weight: 300;
  color: #1069db;
}
}

/* ======================another====================== */
/* SECTION */
.highlights-section {
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

/* LEFT */
.highlight-title {
  font-size: 56px;
  font-weight: 300;
  color: #1069db;
}

.highlight-title span {
  font-weight: 700;
}

.highlight-text {
  color: #1069db;
  font-size: 16px;
  margin-top: 20px;
  max-width: 380px;
}

/* SLIDER */
.highlight-slider {
  width: 100%;
  overflow: hidden;
}

.highlight-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease-in-out;
  
}

/* CARD */
/* .highlight-card {
  min-width: 260px;
  height: 280px;
  background: linear-gradient(135deg, #1069db, #4fa3f7);
  color: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
} */

.highlight-card h1 {
      font-size: 56px;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: -5px;
}

.highlight-card p {
  font-size: 20px;
  line-height: 1.3;
}

/* CTA */
.highlight-cta {
  background: linear-gradient(135deg, #0a2c5f, #2e86de);
  padding: 40px;
}

.highlight-cta h3 {
  color: #ffffff;
  font-size: 37px;
  font-weight: 300;
}

.highlight-cta h3 span {
  margin-left: 100px;
}
.highlight-container{
max-width: 1420px;
}
.btn-apply {
    background: #ff9d3f;
    color: #ffffff;
    /* padding: 14px 30px; */
    /* font-weight: 700; */
    font-size: 25px;
    border-radius: 0;
}

.btn-apply:hover {
  background: #f58020;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  
  .highlight-cta {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.highlight-slider {
  overflow: hidden;
}

.highlight-track {
  display: flex;
  gap: 30px;
  will-change: transform;
}

/* ==================footer===================== */
/* FOOTER */
.mnr-footer {
  background-color: #0b5fa5; /* deep blue */
  position: relative;
  margin-bottom: 30px;
}

/* Orange strip */
.footer-top-bar {
  height: 8px;
  background-color: #ff8c1a;
}

/* Logo */
.footer-logo {
  max-width: 305px;
}

/* Text */
.footer-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.95;
}

/* Links */
.footer-link {
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

/* Copyright */
.footer-copy {
  font-size: 18px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-text {
    font-size: 14px;
  }

  .footer-copy {
    font-size: 16px;
  }
  .highlight-cta h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 300;
}
.highlight-cta h3 span{
    margin-left: 0px;
}
}
@media (max-width: 1296px) {
    .track-icon {
    position: relative;
    right: -100px;
    width: 99px;
}
}

@media (max-width : 768px) {
  .deadline-section {
    height: 75vh;
  }

  .deadline-section p{
    text-align: center !important;
  }
}