* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}


/* ================== CAREER SECTION ================== */
.career-hero-desktop{
    position: relative;
    width: 100%;
    min-height: 100vh; /* allows full content */
    overflow: hidden;
}

/* IMAGE AS BACKGROUND */
.career-hero-bg{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: cover;
    z-index: 0;
}

/* CONTENT OVER IMAGE */
.career-hero-content{
    position: relative;
    z-index: 2;
    padding: 100px 0 50px;
}

/* TITLE */
.career-hero-title{
    font-family:'Inter',sans-serif;
    font-weight:500;
    font-size:60px;
    line-height:60px;
    letter-spacing:-2px;
    color:#ffffff;
    text-align:center;
    margin-bottom:40px;
}

/* TAG WRAPPER */
.career-hero-tags{
    width:55%;
    margin-left:25%;
}

/* ROW */
.career-row{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:20px;
}

/* PILLS */
.career-pill{
    font-family:'Inter', sans-serif;
    font-weight:500;
    font-size:18px;
    color:#AA1642;
    background:#FFEEF3;
    padding:6px 22px;
    border-radius:28px;
    white-space:nowrap;
}


/* ================== MOBILE ================== */
@media (max-width: 767px){

  .career-hero-desktop{
    min-height: auto;
  }

  /* IMAGE */
  .career-hero-bg{
    height: 100%;
  }

  /* CONTENT */
  .career-hero-content{
    padding: 30px 0 40px;
  }

  /* TITLE */
  .career-hero-title{
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -1px;
    margin-bottom: 20px;
  }

  /* TAG WRAPPER */
  .career-hero-tags{
    width: 100%;
    margin: 0;
    padding: 0 15px;
  }

  /* ROW */
  .career-row{
    gap: 10px;
    margin-bottom: 12px;
  }

  /* PILLS */
  .career-pill{
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
  }
}

/*================Program Highlights===============*/
.ph-section{
max-width:1200px;
margin:80px auto;
text-align:center;
}

.ph-title{
text-align: center;
color: #aa1642;
font-family: 'Inter', sans-serif;
font-weight: 500;
font-size: 45px;
line-height: 68.6px;
letter-spacing: -2.5px;
margin-bottom: 80px;
}

.ph-grid{
display:grid;
grid-template-columns:repeat(4,230px);
gap:25px;
justify-content:center;
}

.ph-card{
position:relative;
padding:40px 25px;
border-radius:30px;
border:1px solid #AA1642;
background:#FFE6DE;
height:250px;
display:flex;
align-items:center;
justify-content:center;
text-align:left;
transition:0.3s;
z-index:2;
}

.ph-card.white{
background:#ffffff;
}

.ph-card p{
color:#AA1642;
font-family:'Inter', sans-serif;
font-weight:500;
font-size:16px;
line-height:1.4;
font-weight:500;
margin:0;
}

.ph-icon{
position:absolute;
top:15px;
right:18px;
}

.ph-icon img{
width:40px;
height:40px;
object-fit:contain;
display:block;
}


@media (max-width: 767px){
    .ph-grid{
    grid-template-columns: repeat(2, 1fr);
  }
@media (max-width: 767px){

  /* SECTION */
  .ph-section{
    margin: 40px 15px;
  }

  /* TITLE */
  .ph-title{
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -1px;
    margin-bottom: 30px;
  }

  /* GRID */
  .ph-grid{
    grid-template-columns: 1fr;   /* 🔥 single column (remove duplicate) */
    gap: 15px;
  }

  /* CARD */
  .ph-card{
    width: 100%;
    height: auto;
    padding: 16px;
    border-radius: 18px;

    display: flex;               /* 🔥 for left icon */
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  /* ICON LEFT */
  .ph-icon{
    position: static;           /* 🔥 remove absolute */
    flex-shrink: 0;
  }

  .ph-icon img{
    width: 32px;
    height: 32px;
  }

  /* TEXT */
  .ph-card p{
    font-size: 14px;
    line-height: 20px;
    margin: 0;
  }

}
}
/*==============end ph-section============= */

/* PROGRAM SELECTOR */
.mit-program-grid{
display:flex;
justify-content:center;
gap:20px;
margin-bottom:30px;
}

.mit-program-card{
background:transparent;
border:1px solid #fff;
border-radius:60px;
padding:10px 25px;
display:flex;
align-items:center;
gap:20px;
cursor:pointer;
transition:0.3s;
color:#fff;
}

.mit-program-card.active{
background:#fff;
color:#aa1642;
}

.mit-program-icon{
width:65px;
height:65px;
border-radius:50%;
overflow:hidden;
}

.mit-program-icon img{
width:100%;
height:100%;
object-fit:cover;
}

/* PROGRAM DETAILS */

.mit-program-details{
max-width:1100px;
margin:auto;
}

.program-box{
display:none;
}

.program-box.active{
display:flex;
}

.program-box{
display:flex;
background:#fff;
padding:0;
border-radius:30px 30px 30px 30px;
align-items:center;
overflow:hidden;
margin-bottom:25px;
gap:20px;   /* image aur text ke beech gap */
}

/* IMAGE WRAPPER */

.program-img-wrapper{
position:relative;
width:350px;
height:553px;
overflow:hidden;
border-radius:31px;
flex-shrink:0;
line-height:0;   /* extra gap remove */
}

.program-img{
width:100%;
height:100%;
object-fit:cover;
display:block;   /* bottom gap remove */
}

/* BLACK OVERLAY */

.program-img-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:20px;
background:linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
text-align:center;
}

/* BBA TEXT */

.course-main{
font-family:'Inter',sans-serif;
font-weight:700;
font-size:70px;
letter-spacing:6px;
color:#fff;
margin:0;
line-height:170px;
}

/* SMALL TEXT */

.course-sub{
font-family:'Inter',sans-serif;
font-size:18px;
color:#fff;
margin-top:-60px;
line-height:50px;
}

/* CONTENT */

.program-content{
flex:1;
padding:30px;   /* text ka padding badh gaya */
color:black;
font-family:'Inter',sans-serif;
font-size:16px;
}

/* TAGS */

.tags{
margin-top:10px;
}

.tags span{
background:#FFEEF3;
color:#AA1642;
padding:6px 12px;
border-radius:28px;
font-size:14px;
margin:4px;
display:inline-block;
}

/* CARD TEXT COLOR */

.mit-program-card{
color:#fff;
}

.mit-program-card .mit-program-text h4,
.mit-program-card .mit-program-text p{
color:inherit;
margin:0;
}

.mit-program-card.active{
color:#aa1642;
}

/* ICON COLOR */

.mit-program-card .mit-program-icon img{
filter: grayscale(100%) brightness(200%);
transition:0.3s;
}

.mit-program-card.active .mit-program-icon img{
filter:none;
}
mit-program-card .mit-program-text h4, .mit-program-card .mit-program-text p { color: inherit; /* inherit the card color */ margin: 0; } .mit-program-card.active { color: #aa1642; /* text color when card is active */ } /* Default (Inactive cards) */ .mit-program-card .mit-program-icon img{ filter: grayscale(100%) brightness(200%); transition: 0.3s; } /* Active card image normal color */ .mit-program-card.active .mit-program-icon img{ filter: none; }

@font-face { font-display: swap; }
@media (max-width: 767px) {

    /* Enquire hide */
    .enquire-btn {
        display: none;
    }

    /* Header center */
    .header-flex {
        justify-content: center;
    }

    .header-left img {
        width: 279px;
        height: 68.17px;
        margin-left: -100px;
    }

    .header-left {
        margin-top: 30px;
    }

    /* ONLY ICONS тАУ RIGHT SIDE VERTICAL */
    .header-right {
        display: flex;
        position: fixed;
        left: 2px;
        top: 78%;
        flex-direction: column;
        gap: 12px;
        z-index: 99999;
    }
}
@media (min-width: 768px) {

    .mit-header {
        position: sticky;
        top: 0;
    }

    .header-left img {
        width: 200px;
        height: auto;
    }

    /* Desktop me normal row */
    .header-right {
        position: static;
        flex-direction: row;
    }
}

@media(max-width: 991px){
    .notebook-bg::after{
        display: none;
    }
}
/* Large screens: more padding */
@media(min-width: 1200px) {
    .notebook-bg {
        padding-left: 0px;
        padding-right: 0px;
    }
}

/* =======================
   MOBILE VIEW FIX
======================= */
@media (max-width: 767px) {

    /* =========================
       SECTION SIDE GAP + CENTER
    ========================== */
    .container-fluid.notebook-bg {
        position: relative;
        padding-left: 12px;
        padding-right: 12px;
        margin-left: auto;
        margin-right: auto;
    }

    /* =========================
       NOTEBOOK LINES тАУ 10 uniform horizontal lines
    ========================== */
    .notebook-bg::before {
        content: "";
        position: absolute;
        top: 20px;       /* top gap */
        left: 0;
        right: 0;
        height: 630px;   /* 10 lines ├Ч 26px spacing */
        background: linear-gradient( to bottom, rgba(128, 128, 128, 0.3) 1px, transparent 0 ) 0 0 / 100% 40px repeat-y;
        z-index: -1;     
        pointer-events: none;
    }
    .second-bg::before {
    content: "";
    position: absolute;
    left: -140px;
    top: 250px;        /* adjust as needed */
    width: 300px;
    height: 35%;
    background: rgba(255, 255, 255, 1);
    border-radius: 0 60% 60% 0;
    z-index: -1;        /* stays behind the section content */
}
    
    /* =========================
       BLUE CIRCLE (CORNER) тАУ shifted down
    ========================== */
    .notebook-bg {
    position: relative;
    overflow: hidden;   /* ЁЯФе ye main fix hai */
}
    .notebook-bg::after {
        display: block !important;
        content: "";
        position: absolute;
        right: -60px;
        top: 470px;
        width: 260px;
        height: 260px;
        background: #207DCA;  /* blue circle */
        border-radius: 50%;
        z-index: 0;      
    }

    /* =========================
       HERO CARD (CENTER) тАУ BLUE BACKGROUND + PADDING
    ========================== */
    .admission-hero {
    margin-top: -33px;        
    margin-left: 5px;       
    margin-right: 5px;      
    padding: 20px 20px;      
    background-image: url('new-landing-images/hero_mobile_bg.png');
    background-size: cover;        /* full cover */
    background-position: center;   /* center image */
    background-repeat: no-repeat;
    border-radius: 49.5px;     
    z-index: 1;              
    position: relative;
     min-height: 600px;
   
}

    /* =========================
       GIRL IMAGE ON TOP
    ========================== */
    .hero-student {
        position: relative;
        display: block;
        max-width: 200px;
        margin: 0 auto -35px;
        right: auto;
        bottom: auto;
        z-index: 2;             /* hero card рдЪреНрдпрд╛ рд╡рд░ */
    }

    /* =========================
       TEXT
    ========================== */
    .hero-title {
        font-size: 21px;
        line-height: 1.3;
        color: #fff;            
        text-align: center;
    }

    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-sub {
        font-size: 16px;
        margin-top: 15px;
        color: #fff;            
        text-align: center;
    }

    /* =========================
       BUTTONS тАУ CENTERED
    ========================== */
   .hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: nowrap; 
}

.btn-apply,
.btn-brochure {
    width: auto;
    padding: 8px 14px;   
    font-size: 13px;     
    border-radius: 8px;  
    margin: 0;
    white-space: nowrap;
}


    /* =========================
       REMOVE FORM FROM HERO
    ========================== */
    .admission-hero .col-lg-5 {
        display: none;
    }
    /* =========================
       FORM BELOW HERO
    ========================== */
    .mobile-form-wrapper {
        margin-top: 25px;
        min-height:320px;
        padding-left: 25px;
        padding-right: 25px;
        position: relative;
        z-index: 10; /* upar aane ke liye */
    }

    .mobile-form-wrapper .form-card {
        max-width: 100%;
        border: 1px solid rgba(139, 21, 56, 1);
        margin: 0 auto;
        border-radius: 39px;
        position: relative;
        z-index: -5;
        
        
    }

}

/*new mobile css*/

@media (max-width: 767px) {
    .hero-title,
    .hero-sub,
    .hero-buttons {
        display: none;
    }
}
/* Default: hide on desktop */
.mobile-only {
    display: none;
}

/* Mobile view only */
@media (max-width: 767px) {
    .mobile-only {
        display: block;
        font-family: 'Inter', sans-serif;
        font-weight: 700; /* Bold */
        font-size: 25.5px;
        line-height: 35.4px;
        letter-spacing: -0.41px;
        text-align: center;
        margin: 0 auto;
    }
    .no-break {
    white-space: nowrap;
    margin-left:-30px;
  }
  .careers{
      margin-left:-25px;
  }
  
}
/* Default: hide on desktop */
.mobile-hero-sub {
    display: none;
}

/* Mobile view only */
@media (max-width: 767px) {
    .mobile-hero-sub {
        display: block;
        font-family: 'Inter', sans-serif;
        font-weight: 700; /* Bold */
        font-size: 18px;
        line-height: 30px;
        letter-spacing: -0.91px;
        text-align: center;
        margin: 12px auto 0;
        margin-left:-28px;
    }
}
/* Default: hide on desktop */
.mobile-hero-buttons {
    display: none;
}

/* Mobile view only */
@media (max-width: 767px) {
    .mobile-hero-buttons {
        display: flex;
        justify-content: center;
        gap: 10px; /* dono buttons ke beech gap */
        margin: 16px; /* text se thoda gap */
    }

    .mobile-hero-buttons .btn-apply,
    .mobile-hero-buttons .btn-brochure {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 12px;   /* thoda bada font for mobile */
        padding: 15px 20px;
        border: none;
        border-radius: 9.44px;
        cursor: pointer;
        transition: transform 0.3s ease, background-color 0.3s ease;
        
    }

    .mobile-hero-buttons .btn-apply {
        background-color: rgba(170, 22, 66, 1); /* primary color */
        color: #fff;
        margin-left:-20px;
    }

    .mobile-hero-buttons .btn-brochure {
        background-color: rgba(255, 255, 255, 1); /* secondary color */
        color: rgba(28, 57, 142, 1);
    }

    /* Hover effect */
    .mobile-hero-buttons .btn-apply:hover,
    .mobile-hero-buttons .btn-brochure:hover {
        transform: scale(1.05);
    }
    .form-title {
        font-family: 'Inter', sans-serif; /* same font as hero */
        font-weight: 700;                 /* Bold */
        font-size: 28px;                  /* bigger font on mobile */
        line-height: 32px;
        text-align: center;
        padding: 0 12px;                  /* optional mobile padding */
    }
}



.info-strip{
  position: relative;
  margin-top: -58px;
  padding-top: 12px;
  /* padding-left: 100px;
  padding-right: 20px; */
   display: flex;
  justify-content:center;
  align-items: center;
}

.info-container {
  max-width: 1200px;
  margin-left: clamp(-20px, -2vw, -8px);  /* ЁЯСИ auto adjust */
  margin-right: 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(4px, 1vw, 12px);
}


.info-item {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;   /* ЁЯСИ logo & text perfectly centered */
}


.info-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 0.10px;
  background: rgba(191, 191, 191, 1);
}

/* icon wrapper (stable size) */
.info-item {
  flex: 1;
  text-align: center;
  padding: 10px;
  position: relative;
}

.info-item img {
  height: 48px;              /* ЁЯСИ SAME visual height for all */
  width: auto;               /* ЁЯСИ proportional width */
  object-fit: contain;

  margin-bottom: 10px;       /* ЁЯСИ proper gap between image & text */

  filter: grayscale(100%) brightness(1) contrast(1.1);
  transition: filter 0.3s ease;
}


.info-item p {
  font-family: 'Inter', sans-serif;
  font-size: 12.7px;
  font-weight: 500;
  line-height: 14.83px;
  letter-spacing: -0.23px;
  color: #555;
  text-align: center;

  max-width: 150px;          /* ЁЯСИ neat text block */
}


@media (max-width: 767px) {
    .info-strip {
        display: none;
    }
}
/* Default: hide on desktop */
.mobile-image-line {
    display: none;
}

/* Default: hide on desktop */
.mobile-awards {
    display: none;
}

/* Default: hide on desktop */
.mobile-awards {
    display: none;
}

/* Mobile view only */
/* Mobile view only */
@media (max-width: 767px) {
    .mobile-awards {
        display: block;
        margin: 0;
        padding: 0 16px; /* equal padding both sides */
        box-sizing: border-box;
        padding-left: 30px;
        padding-right: 40px;
    }

    /* Line images full width */
    .mobile-award-line {
       display: block;
    width: 100vw; /* viewport width */
    margin: 12px 0; 
    height: auto;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    }

    /* Award + text side by side */
    .award-item-with-text {
        display: flex;
        align-items: center;  /* vertically center text with logo */
        gap: 35px;            /* more gap between logo and text */
        margin: 16px 0;
    }

    .award-item-with-text img {
        width: 50px;          /* slightly bigger logo */
        height: auto;
        border-radius: 4px;   /* optional */
        display: block;
        flex-shrink: 0; 
        margin-left:30px;
    }

    .award-item-with-text .affiliation-text {
        font-family: 'Inter', sans-serif;
        font-weight: 500;           
        font-style: normal;
        font-size: 14.99px;        
        line-height: 22.49px;      
        letter-spacing: 0px;
        color: rgba(0, 0, 0, 1);
        display: inline-block;
        word-break: break-word; /* prevent overflow */
    }
}




.line {
    position: relative;
    z-index: 0;
}

.line::before {
    content: "";
    position: absolute;
    top: -50px;   /* Desktop position */
    left: 0;
    right: 0;
    height: 110px;
    background:
        linear-gradient(
            to bottom,
            rgba(128,128,128,0.3) 1px,
            transparent 0
        ) 0 0/100% 26px repeat-y;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .line::before {
    content: "";
    position: absolute;
    top: 8px;    /* Desktop position */
    left: 0;
    right: 0;
    height: 110px;
    background: linear-gradient( to bottom, rgba(128, 128, 128, 0.3) 1px, transparent 0 ) 0 0 / 100% 40px repeat-y;
    z-index: -1;
    pointer-events: none;
}
    
}


/*================ SECTION===================
=============================================*/
.mit-programs{
  background:#aa1642;
  color:#fff;
  padding:35px 0 25px;
  position:relative;
  margin-top: -41px;
}

/* horizontal line texture */
.mit-programs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(138, 21, 56, 0.6) 0px,   /* #8a1538 line, darkened with 0.6 opacity */
    rgba(138, 21, 56, 0.6) 2px,   /* line thickness 2px */
    transparent 2px,               /* gap starts after line */
    transparent 24px               /* total repeat height = line + gap (2+22=24px) */
  );
  z-index: 1;
  pointer-events: none;
}


/* content upar rahe */
.mit-programs > *{
  position:relative;
  z-index:2;
}

.mit-title{
    font-family: 'Inter', sans-serif;
    text-align:center;
    font-size:45px;
    font-weight: 500;           /* Medium */
    line-height: 1.15;          /* proportional */
    letter-spacing: -1.8px;     /* refined for this size */
    text-align: center;
    
}
.mit-subtitle{
    font-family: 'Inter', sans-serif;
    font-size: 15px; 
    text-align:center;
    margin-bottom:35px;
    font-weight: 600;           /* Semi Bold */
  line-height: 1.45;
  letter-spacing: 0.8px;
  text-align: center;
  text-transform: uppercase;
    
}

/* GRID */
.mit-program-grid{
  display:grid;
  grid-template-columns:repeat(3,auto);
  justify-content:center;
  column-gap:12px;
  row-gap:35px;
  position:relative;
}

.mit-program-card{
  border-radius:79.15px;
  padding:15px;
  display:flex;
  align-items:center;
  gap:40px;
  border: 1px solid #FFEEF3;
  transition:.25s ease;
  position:relative;
  overflow:hidden;
  min-width:180px;  
  height:75px;
}
.mit-program-text {
    margin-top: 0px;
    margin-left: 10px;
}
.mit-program-text h4{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
  margin:0;
  font-size:22px;
  transition:.25s;
}

.mit-program-text p
{
    font-family: 'Inter', sans-serif;
    font-size:12px;
    font-weight: 400;
    color:#666;
    margin:2px 0;
}


.mit-program-icon {
   position: static;   /* 🔥 FIX */
  width: 50px;
  height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.mit-program-card:hover .mit-eligibility-btn {
  background: rgba(170, 22, 66, 1);
  color: #fff;
}

.mit-program-card:hover .mit-program-icon img {
  filter: grayscale(0%) brightness(1) contrast(1);
}

.mit-program-icon img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
  filter: grayscale(100%) brightness(1) contrast(1.1);
  transition: filter .3s ease;
}

.mit-program-card:hover .mit-program-icon img{
  filter: grayscale(0%) brightness(1) contrast(1);
}


/* HEADER */
.box-header{
  display:flex;
  align-items:baseline;
  gap:6px;
  margin-bottom:16px;
}
.box-header h3{margin:0;font-size:18px;font-weight:700;}
.box-header span{font-size:11px;opacity:.9;}

/* TITLES */
.box-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;      /* Semi Bold */
  font-size: 14px;
  line-height: 17.39px;
  letter-spacing: 0px;
  margin: 12px 0 8px;
}



/* LIST */
.box-list {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 13px;
  line-height: 17.39px;
  letter-spacing: 0px;
  padding-left: 18px;
  margin: 0;
}


/* OR DIVIDER */
.or-divider{
  display:flex;
  align-items:center;
  gap:8px;
  margin:14px 0;
}
.or-divider span{
  flex:1;
  height:1px;
  background:rgba(0,0,0,.5);
}
.or-divider p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;      /* Medium */
  font-size: 13px;
  line-height: 17.39px;
  letter-spacing: 0px;
  margin: 0;
  color:rgba(0, 0, 0, 1);
}


@media(max-width:992px){
  .mit-program-grid{grid-template-columns:repeat(2,auto);}
}
@media(max-width:576px){
  /* .mit-program-grid{grid-template-columns:auto;} */
}
/*============= mobile responsiveness program section================= */
@media (max-width: 767px) {

  /* SECTION PADDING */
  .mit-programs{
    padding: 30px 15px 60px;
  }

  /* TITLE */
  .mit-title{
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -1px;
    margin-bottom: 15px;
  }

  /* GRID FIX */
  .mit-program-grid{
    /* grid-template-columns: 1fr; */
    row-gap: 12px;
  }

  /* CARD FIX */
  .mit-program-card{
    width: 100%;
    height: auto;
    padding: 12px 15px;
    gap: 15px;
    border-radius: 50px;
  }

  /* TEXT FIX */
  .mit-program-text{
    margin: 0;
  }

  .mit-program-text h4{
    font-size: 20px;
    line-height: 24px;
    color: #fff;
  }

  .mit-program-text p{
    font-size: 11px;
    line-height: 14px;
    color: #eee;
  }

  /* ICON FIX */
  .mit-program-icon{
    width: 50px;
    height: 50px;
    right: 10px;
  }

  /* PROGRAM DETAILS STACK */
  .mit-program-details{
    margin-top: 20px;
  }

  .program-box{
    flex-direction: column;
    /* border-radius: 25px; */
   
     /* border: 8px solid transparent;   
    border-radius: 25px; */
    overflow: hidden;
  }

  /* IMAGE FIX */
  .program-img-wrapper{
    width: 100%;
    height: 220px;
  }

  .program-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* REMOVE OVERLAY ISSUES */
  .program-img-overlay{
    /* bottom: 15px;
    left: 15px; */
  }

  .course-main{
    font-size: 24px;
  }

  .course-sub{
    font-size: 12px;
  }

  /* CONTENT FIX */
  .program-content{
    padding: 15px;
  }

  .program-content p{
    font-size: 13px;
    line-height: 20px;
  }

  /* TAGS FIX */
  .tags{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .tags span{
    font-size: 11px;
    padding: 6px 10px;
  }

  /* REMOVE BAD NEGATIVE SPACE */
  .mit-eligibility-box-mobile{
    margin-top: 10px;
  }
    .program-box{
    display: flex;
    flex-direction: column;   /* 🔥 THIS FIXES YOUR ISSUE */
  }

  .program-img-wrapper{
    width: 100%;
  }

  .program-content{
    width: 100%;
    padding: 15px;
    background: #fff; /* so content visible */
  }
  .program-content{
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.program-img-wrapper{
  margin-bottom: 10px;
}
}

/*============= End mobile responsiveness program section================= */
/*new mobile css*/

@media (max-width: 767px) {
    .mit-title {
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-size: 35px;
        line-height: 38.43px;
        letter-spacing: -1.4px;
        text-align: center;
        margin: 24px auto 12px;   /* top | bottom gap */
    }

    .mit-subtitle {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 12px;
        line-height: 16.01px;
        letter-spacing: 0.44px;
        text-align: center;
        text-transform: uppercase;
        margin: 0 auto 20px;      /* gap below subtitle */
    }
}


/* Copy of UG styles but renamed for PG */
.mit-pg-programs{
  background:#aa1642;
  color:#fff;
  padding:35px 0 120px;
  position:relative;
  margin-top: -5px;
}

.mit-pg-programs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(138, 21, 56, 0.6) 0px,
    rgba(138, 21, 56, 0.6) 2px,
    transparent 2px,
    transparent 24px
  );
  z-index: 1;
  pointer-events: none;
}

.mit-pg-programs > *{
  position:relative;
  z-index:1;
}

.mit-pg-program-grid{
  display:grid;
  grid-template-columns:repeat(3,auto);
  justify-content:center;
  column-gap:12px;
  row-gap:35px;
  position:relative;
}
.mit-pg-program-text {
    margin-left: 20px;
    margin-top: 0px;
}
.mit-pg-program-card{
  background: #fff;
    color: #000;
    border-radius: 79.15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 40px;
    border: 1px solid #000000;
    transition: .25s ease;
    position: relative;
    overflow: hidden;
    min-width: 348px;
    height:105px;
}

.mit-pg-program-text h4{
  font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin: 0;
    font-size: 22px;
    transition: .25s;
}

.mit-pg-program-text p
{
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin: 2px 0;
    
}

.mit-pg-eligibility-btn{
  font-family: 'Inter', sans-serif;
  background:rgba(178, 178, 178, 1);
  padding:4px 14px;
  border-radius:12.61px;
  font-size:11px;
  cursor:pointer;
  margin-top:0px;
  display:inline-block;
  color:white;
  height:22px;
}
.mit-pg-program-icon{
  position: absolute;
    right: 5px;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    overflow: hidden;
}

.mit-pg-program-icon img{
  width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%) brightness(1) contrast(1.1);
    transition: filter .3s ease;
}

.mit-pg-program-card:hover .mit-pg-program-icon img{
  filter: grayscale(0%) brightness(1) contrast(1);
}

.mit-pg-program-card:hover h4,
.mit-pg-program-card:hover p {
  color: rgba(170, 22, 66, 1);
}


.mit-pg-program-card:hover .mit-pg-eligibility-btn {
  background: rgba(170, 22, 66, 1);
  color: #fff;
}

.mit-pg-program-card:hover .mit-pg-program-icon img {
  filter: grayscale(0%) brightness(1) contrast(1);
}

.mit-pg-eligibility-box{
  position:absolute;
  width:350px;
  padding:26px 24px;
  border-radius:38px;
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(40px);
  color:#000;
  opacity:0;
  visibility:hidden;
  transform:translateY(-20px);
  transition:.25s ease;
  pointer-events:auto;
  z-index:20000;
}
.mit-pg-eligibility-box.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

@media(max-width:992px){
  .mit-pg-program-grid{grid-template-columns:repeat(2,auto);}
}
@media(max-width:576px){
  .mit-pg-program-grid{grid-template-columns:auto;}
}



    /* ===== MOBILE ELIGIBILITY BOX ===== */
@media (max-width: 767px) {
    .mit-programs{
        padding-bottom: 75px;
        padding-left: 30px;
        padding-right: 30px;
    }
        
    .mit-program-card {
    /* min-height: 105px;       */
    align-items: center;
    margin-bottom: 22px;
    z-index:2;
    border: 1px solid rgba(255, 255, 255, 1);
     display:flex;
  align-items:center;
  justify-content:space-between; /* 🔥 important */
  gap:10px;
  }

  .mit-program-text h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color:rgba(170, 22, 66, 1);
  font-size: 26px;
  line-height: 44.59px;
  letter-spacing: -0.97px;
  margin: 0;
}
.mit-program-text p {
  font-family: 'Inter', sans-serif;
  font-weight: 500; 
  color:rgba(170, 22, 66, 1);/* Medium */
  font-size: 12px;
  line-height: 13px;
  letter-spacing: 0px;
  margin: 0;
}
.mit-eligibility-btn {
  width: 110.79px;
  height: 20.85px;
  line-height: 18.85px;      /* vertical center text */
  background: rgba(170, 22, 66, 1);
  border-radius: 9.42px;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #fff;
  text-align: center;
  padding: 0;                /* IMPORTANT */
  display: inline-block;
  margin-top: 6px;
}
.mit-program-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 24px;
  margin-top:-15px;
}

.mit-eligibility-box-mobile {
width: 100%;
max-height: 0;
overflow: hidden;
background: rgba(255, 210, 223, 0.17);
backdrop-filter: blur(40px);
border-radius: 51px;
padding: 0 24px;
margin-top: -100px; 
margin-bottom: 30px;
transition: max-height .45s ease, padding .35s ease;
color: #000;
}
.mit-eligibility-box-mobile.open {
    max-height: 2000px;
    padding: 26px 24px;
}
.mit-programs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( to bottom, rgba(114, 10, 41, 1) 1px, transparent 0 ) 0 0 / 100% 40px repeat-y;
  z-index: 1;
  pointer-events: none;
}

 .mit-program-grid{
    margin:10px;
    row-gap: 2px;   /* pehle 35px tha */
  }

  .mit-eligibility-box-mobile h3 {
    margin-top: 75px;

    font-family: 'Inter', sans-serif;
    font-weight: 600; /* Semi Bold */
    font-size: 15.26px;
    line-height: 14.74px;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 1);
}

    .mit-eligibility-box-mobile ul {
    padding-left: 18px;
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 11.87px;
    line-height: 14.74px;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 1);
    }
/* OR DIVIDER */
.or-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0;
  list-style: none;
  padding: 0;
  
}

.or-divider span {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 1);
}

.or-divider p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;      /* Medium */
  font-style: normal;   /* italic disable */
  font-size: 11.02px;
  line-height: 14.74px;
  letter-spacing: 0px;
  margin: 0;
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
}
.admission-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;          /* Semi Bold */
  font-size: 15.68px;
  line-height: 15.15px;
  letter-spacing: 0px;
  padding-left: 5px;
  position: relative;
  top: -50px;
}
.admission-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  padding-left: 18px;
  font-style: italic;
  font-size: 11.87px;
  line-height: 14.74px;
  letter-spacing: 0px;
  position: relative;
  top: -45px;
  color: rgba(255, 255, 255, 1);
}
  .eligibility-footer {
    text-align: center;
    font-size: 17px;
    cursor: pointer;
    margin-top:-22px;
  }
  
}


/* ===== Scoped Section Only ===== */
.entrance-section {
  padding: 60px 20px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.entrance-title {
  text-align: center;
  color: #aa1642;
  font-family: 'Inter', sans-serif; /* Font added */
  font-weight: 500;                 /* Medium weight */
  font-size: 45px;                /* Updated size */
  line-height: 68.6px;              /* Updated line height */
  letter-spacing: -2.5px;           /* Added letter spacing */
  margin-bottom: 6px;
}


.entrance-subtitle {
  font-family: 'Inter', sans-serif;
  color: #aa1642;
    font-size: 15px;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.8px;
    text-align: center;
    text-transform: uppercase;
}

/* ===== Cards Wrapper ===== */
.entrance-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* ===== Card Base ===== */
.entrance-card {
  position: relative;
  width: 690px;
  background: #fff;
  border-radius: 42px;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  z-index:2;
}

/* Border */
.entrance-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #222;
  border-radius: 26px;
  pointer-events: none;
}

/* Cut top border */
.entrance-card::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 28px;
  width: 330px;
  height: 26px;
  /*background: #fff;*/
  z-index: 0;
}

/* ===== Header ===== */
.entrance-card-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 25px 12px;
}

.entrance-badge {
  font-family: 'Inter', sans-serif;
  background: #ff6a2a;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 9.16px;
  font-weight: 600;
}

.entrance-card-header h4 {
  font-family: 'Inter', sans-serif;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

/* Divider */
.entrance-divider {
  height: 1.5px;
  background: rgba(255, 157, 123, 1);
  margin: 0 25px;
}
h4.date {
   margin-left: 210px;
}
/* ===== Body ===== */
.entrance-card-body {
  padding: 16px 22px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  flex: 1;
}

/* Vertical divider */
.entrance-card-body > :first-child {
  padding-right: 16px;
  border-right: 1px solid #e3e3e3;
}

.entrance-card-body > :last-child {
  padding-left: 16px;
}

.entrance-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.entrance-list li {
font-family: 'Inter', sans-serif;
font-weight: 400;
  padding: 10px 0;
  border-bottom: 1px solid #e3e3e3;
}

.entrance-list li:last-child {
  border-bottom: none;
}

.entrance-text {
  font-size: 13px;
  line-height: 1.5;
}

/* ===== Footer ===== */
.entrance-card-footer {
  color:rgba(0, 0, 0, 1);
  text-align: center;
  padding: 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-top: 0.6px solid #222;
}
.entrance-card-footer:hover{
    background: rgba(245, 73, 0, 1);
    color:rgba(255, 255, 255, 1);
    border-radius: 0 0 26px 26px;
}

/* ===== Orange Card ===== */
.entrance-card.orange::before {
  border-color: #222;
}

.entrance-card.orange .entrance-card-footer {
  background: rgba(255, 255, 255, 1);
  color: rgba(0, 0, 0, 1);
  border-top: 0.6px solid #222;
  border-radius: 0 0 26px 26px;
}

.entrance-card.orange .entrance-card-footer:hover{
    background: rgba(245, 73, 0, 1);
    color:rgba(255, 255, 255, 1);
    border-radius: 0 0 26px 26px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {

  /* Existing paired layout */
  .entrance-card-body.paired {
    grid-template-columns: 1fr;
  }

  .course {
    font-weight: 500;
    padding-bottom: 4px;
  }

  .mode {
    padding-top: 0;
    color: #666;
    font-size: 12px;
  }

  /* ===== Mobile: FULL CARD BORDER ===== */
  .entrance-card::before {
    border-radius:42px 
  }
  .entrance-badge {
    font-family: 'Inter', sans-serif;
    background: #ff6a2a;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 9.16px;
    font-weight: 600;
}
.entrance-card-header h4 {
    font-family: 'Inter', sans-serif;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}
h4.date {
    margin-left: 55px;
}
  /* Remove cut-top effect only on mobile */
  .entrance-card::after {
    display: none;
  }

  /* ===== Mobile: SAME ORANGE BUTTON FOR ALL ===== */
 .entrance-card-footer {
  background: rgba(245, 73, 0, 1);
  color: #fff;

  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;

  border-radius: 0 0 42px 42px;
}
  .entrance-subtitle {
    display: none;
  }
  .entrance-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32.55px;
  line-height: 38.43px;
  letter-spacing: -1.4px;
  text-align: center;
  color: rgba(170, 22, 66, 1);
  margin-bottom: 32px;
}
.entrance-card.orange .entrance-card-footer {
    background: rgba(245, 73, 0, 1);
    color: rgba(255, 255, 255, 1);
     border-top: none;
     border-radius: 0 0 42px 42px; 
}

}


  @media (max-width: 768px) {
  .mobile-sticky-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;

    background-image: url(new-landing-images/button/sticky-footer.png);
    background-repeat: no-repeat;     /* тЭМ repeat band */
    background-size: 100% 100%;       /* тЬЕ full width & height fit */
    background-position: center;

    color: #ffffff;
    border: none;
    border-radius: 0;

    /* Typography */
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 19.1px;
    line-height: 29.71px;
    letter-spacing: -0.47px;
    text-align: center;

    z-index: 10;
    box-shadow: 0 -6px 15px rgba(0, 0, 0, 0.25);
    cursor: pointer;
  }

  .mobile-sticky-btn span {
    margin-left: 8px;
    font-size: 18px;
  }
}


/* Desktop hide */
@media (min-width: 769px) {
  .mobile-sticky-btn {
    display: none;
  }
}



.faq-wrapper .faq-item {
    border: 1px solid rgba(148, 148, 148, 1);
    border-radius: 8px;
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-question {
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 600; /* SemiBold */
    line-height: 20px;
    letter-spacing: -0.03em; /* -3% */
    background: #fff;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #ffffff;
    border-radius: 8px 8px 0 0;
}


.faq-answer {
    padding: 40px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #ff5f1f, #b1123a);
    color: #fff;
    display: none;
    margin-top: 6px;
    margin-bottom: 14px;
    border-radius: 8px;   /* ЁЯСИ sabhi taraf same */
}

/* Arrow at top-right corner */
.faq-question .fa {
    position: absolute;
    top: 10px;
    right: 18px;
    color: #ddd;
}


.faq-item.active .faq-answer {
    display: block;
}

/* RIGHT FORM */
.admission-form-card {
    background: #fff;
    border-radius: 22px;
    border: 1px solid #222;
    padding: 18px 14px;
    /* max-width: 380px;
    margin-left: auto; */
       width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.admission-form-card h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* NoPaperForms inside look */
.admission-form-card input,
.admission-form-card select {
    width: 100%;
    height: 40px;
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 0 12px;
    font-size: 13px;
    margin-bottom: 10px;
}

.admission-form-card input:focus,
.admission-form-card select:focus {
    outline: none;
    border-color: #8a1538;
}

/* Submit */
.admission-form-card button,
.admission-form-card .npf-submit {
    background: #8a1538;
    color: #fff;
    border-radius: 6px;
    border: none;
}
/* Default hide */
.faq-mobile-wrap {
    display: none;
}

/* ================= MOBILE ONLY ================= */
@media (max-width: 768px) {

    .faq-mobile-wrap {
        display: block;
        position: relative;
        height: 100px;
        margin: 10px 0 10px;
        text-align: center;
        
    }

    .line-fc-mobile::before {
    content: "";
    position: absolute;
    top: -20px;       /* upar se gap, adjust as needed */
    left: 0;
    right: 0;
    height: 150px;   /* 10 lines ├Ч (line thickness + gap) = 10*(1+25)=260px */
    background: linear-gradient( to bottom, rgba(128, 128, 128, 0.3) 1px, transparent 0 ) 0 0 / 100% 40px repeat-y;
    z-index: -1;   
    pointer-events: none;
}

    /* Title floats ABOVE lines (no cut) */
    .faq-mobile-title {
    position: relative;
    z-index: 2;
    transform: translateY(-50%);
    display: inline-block;
    margin-top:50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;          /* Medium */
    font-size: 35px;
    line-height: 38.43px;
    letter-spacing: -1.4px;
    text-align: center;

    color: #b1123d;
    background: transparent; /* ЁЯСИ no line cutting */
}
.faq-question {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;          /* SemiBold */
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.03em;   /* -3% */
}
.faq-answer {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;        /* Regular */
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0;
}
.faq-question .fa {
    margin-top: 10px;   /* ЁЯСИ text aur icon ke beech gap */
}
}
@media (max-width: 767px) {

    /* Form card center + niche */
    .admission-form-card {
        margin: 50px auto 0;   /* ЁЯСИ thoda niche + center */
        text-align: center;
        border-radius: 30px;
        
    }

    /* Admission Open title styling */
    .admission-form-card h3 {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 28px;
        line-height: 32px;
        text-align: center;
        padding: 0 12px;
        margin-bottom: 16px;
    }
    .faq-wrapper{
        padding-left: 10px;
        padding-right: 10px;
    }
}
.faq-answer {
    position: relative;   /* ЁЯСИ anchor for arrow */
}

.faq-close-arrow {
    position: absolute;
    top: 40px;           /* answer ke andar upar */
    right: 16px;         /* right side */
    font-size: 17px;
    cursor: pointer;
    color: #fff;
}

.faq-answer-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.faq-answer-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    color: #fff;
}



.mit-footer {
    background: url(new-landing-images/footer/Rectangle%20214.png) no-repeat center center;
    background-size: cover;          /* ЁЯСИ full width & height */
    width: 100%;
    
    color: #fff;
    padding: 35px 0 25px;
    position: relative;
    overflow: hidden;
}


/* horizontal line texture */
.mit-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        rgba(138, 22, 57, 0.35),   /* #8A1639 with opacity */
        rgba(138, 22, 57, 0.35),
        transparent 1px,
        transparent 22px
    );
    pointer-events: none;
}

/* MAIN WRAPPER */
.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 320px auto;
    column-gap: 40px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* LEFT */
.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo-text strong {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.logo-text span {
    display: block;
    font-size: 14px;
    margin-top: 4px;
    font-weight: 500;
}

.copyright {
    margin-top: 60px;
    font-family: 'TASA Orbiter', sans-serif;
    font-size: 16px;
    font-weight: 600; /* SemiBold */
    line-height: 35.4px;
    letter-spacing: -0.03em; /* -3% */
    opacity: 0.9;
    color:rgba(255, 255, 255, 1);
}


/* RIGHT */
.footer-right {
    padding-top: 6px;
}

.address {
    font-family: 'Inter', sans-serif; 
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 22px;
    color:rgba(255, 255, 255, 1);
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pill {
    background: rgba(140, 18, 54, 1);
    padding: 10px 22px;
    border-radius: 30px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500; /* Medium */
    line-height: 20px;
    letter-spacing: 0.04em; /* 4% */
    width: fit-content;
    white-space: nowrap;
    color:rgba(255, 164, 192, 1);
}

  /* Ensure notebook-bg creates proper stacking context */
.line-eed {
    position: relative;  
    z-index: 0;  /* content ke upar lines nahi aayengi */
}

/* Notebook style: exactly 10 uniform horizontal lines */
.line-eed::before {
    content: "";
    position: absolute;
    top: -410px;       /* upar se gap, adjust as needed */
    left: 0;
    right: 0;
    height: 300px;   
    background:
        linear-gradient(to bottom, rgba(128,128,128,0.3) 1px, transparent 0) 0 0/100% 26px repeat-y;
    z-index: -1;   
    pointer-events: none;
} 

  /* Ensure notebook-bg creates proper stacking context */
.line-ph {
    position: relative;  
    z-index: 0;  /* content ke upar lines nahi aayengi */
}

/* Notebook style: exactly 10 uniform horizontal lines */
.line-ph::before {
    content: "";
    position: absolute;
    top: -170px;       /* upar se gap, adjust as needed */
    left: 0;
    right: 0;
    height: 200px;   
    background:
        linear-gradient(to bottom, rgba(128,128,128,0.3) 1px, transparent 0) 0 0/100% 26px repeat-y;
    z-index: -1;   
    pointer-events: none;
} 

   /* Ensure notebook-bg creates proper stacking context */
.line-fc {
    position: relative;  
    z-index: 0;  /* content ke upar lines nahi aayengi */
}

/* Notebook style: exactly 10 uniform horizontal lines */
.line-fc::before {
    content: "";
    position: absolute;
    top: 20px;       /* upar se gap, adjust as needed */
    left: 0;
    right: 0;
    height: 80px;   
    background:
        linear-gradient(to bottom, rgba(128,128,128,0.3) 1px, transparent 0) 0 0/100% 26px repeat-y;
    z-index: -1;   
    pointer-events: none;
} 
@media (max-width: 767px) {
    .line-fc::before {
        display: none;
    }
}

/* Section styling */
.students-section {
    padding: 0px 20px 100px;
    position: relative;
    background: #fff;
    width: 100%; /* full-width container */
}

/* Background decoration */
.students-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 74px;
    width: 100%;
    height: 50.50%;
    background: #fff3df;
    transform: translateY(-4%);
    z-index: -2;
}

/* Container for cards in one row */
.students-cards-container {
   display: flex;
    gap: 20px;                 /* cards ke beech thoda kam space */
    justify-content: center;    /* center the row */
    flex-wrap: nowrap;          /* no wrap: ek line me */
    overflow-x: auto;           /* screen chhoti ho to horizontal scroll */
    padding-bottom: 20px;
    width: 100%;                /* fluid container */
    align-items: stretch; 
    
}
/* Individual card */
.student-card {
    /*background: linear-gradient(135deg, rgba(255, 76, 0, 1), rgba(170, 22, 66));*/
    /*border-radius: 46.38px;*/
    /*padding: 60px 30px;*/
    /*color: #fff;*/
    /*flex: 0 0 20%;*/
    /*min-width: 250px;*/
    /*height:100%;*/
    /*box-sizing: border-box;*/

    /*display: flex;*/
    /*flex-direction: column;  */
    /*justify-content: center; */
    /*align-items: center;    */
    
     background: linear-gradient(135deg, rgba(255, 76, 0, 1), rgba(170, 22, 66));
    border-radius: 46.38px;
    padding: 60px 30px;
    color: #fff;
   /*flex: 1; */
    flex: 0 0 300px;
    min-width: 320px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    /*height: 100%;   */
    
    
    
    
}

/* Card text */
.student-text {
    /*font-family: 'Inter', sans-serif;*/
    /*font-size: 16px;*/
    /*font-weight: 400;*/
    /*line-height: 1.7;*/
    /*color: #fff;*/
    /*overflow: hidden;*/
    /*padding:10px;*/
    
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #fff;
    padding: 10px;

    flex-grow: 1;   /* ye text ko stretch karega */
    
    
   
    
    
}
.student-divider {
    /*height: 1px;*/
    /*background-color: #FFFFFF;*/
    /*width: 280px;*/
    /*margin: 20px 0;*/
    /*border-radius: 2px;*/
    
    
     height: 1px;
    background-color: #FFFFFF;
    width: 100%;     /* better responsive */
    margin: 20px 0;
}

.student-info {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    margin-right:60px;
     margin-top: auto;
}
/* Section title */
.students-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 45px;
    text-align: center;
    color: #aa1642;
    margin-bottom: 60px;
}

/* Decorative line */
.line-ss {
    position: relative;
    z-index: 0;
}

.line-ss::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 380px;
    background:
        linear-gradient(to bottom, rgba(128,128,128,0.3) 1px, transparent 0)
        0 0 / 100% 26px repeat-y;
    z-index: -1;
    pointer-events: none;
}

/* ============================= */
/* PLACEMENT & PACKAGES SECTION */
/* ============================= */

.pp-section {
    font-family: "Segoe UI", sans-serif;
    background: #ffffff;
    padding: 60px 20px;
}

/* Heading */
.pp-title {
    text-align: center;
    color: #aa1642;
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif; /* Font added */
      font-weight: 500;                 /* Medium weight */
      font-size: 45px;           
}

/* ================= STATS ================= */

.pp-stats {
    max-width: 1200px; 
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.pp-card {
    border: 1.8px solid #999;
    border-radius: 45px;
    padding: 50px 50px;
    text-align: center;
    max-width: 350px;
}

.pp-card i {
    font-size: 35px;
    color: #000;
    margin-bottom: 15px;
}

.pp-number {
    font-family: 'Inter', sans-serif; /* Font added */
    font-weight: 700;  
     font-size: 45px;  
    /* Gradient text */
    background: linear-gradient(135deg, #F54900, #AA1642);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.pp-label {
    font-family: 'Inter', sans-serif; 
    font-size: 17px;
    margin-top: 0px;
    font-weight:500;
}

/* ================= CONTENT ================= */

.pp-content {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Vertical Divider */
.pp-divider {
    width: 1px;
    background: #333;
}

/* Left List */
.pp-list ul {
    padding-left: 20px;
    margin: 0;
}

.pp-list li {
     font-family: 'Inter', sans-serif; /* Font added */
  font-weight: 500;                 /* Medium weight */
    font-size: 15px;
    margin-bottom: 14px;
    line-height: 1.5;
    font-weight:500;
}

.pp-list li span {
    color: #b1123d;
    font-weight: 600;
}

/* Right Partners */
.pp-partners h3 {
    font-family: 'Inter', sans-serif; /* Font added */
    font-weight: 500;                 /* Medium weight */
    font-size: 18px;
    margin-bottom: 25px;
}

.pp-logos {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.pp-logo {
    width: 90px;
    height: 90px;
    border: 1px solid rgba(200, 200, 200, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-logo img {
    max-width: 63%;
}
.pp-list ul {
    padding-left: 0;      /* default ul padding remove */
    margin: 0;
}

.pp-list li {
    list-style: none;     /* default bullet remove */
    position: relative;
    padding: 8px 0 8px 22px;  /* тЬЕ padding kam + left space for circle */
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid #ddd;
}

/* Last line ka border remove */
.pp-list li:last-child {
    border-bottom: none;
}

/* Custom circle bullet */
.pp-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;            /* text ke center ke aas-paas */
    width: 8px;
    height: 8px;
    background: #b1123d;  /* тЬЕ required color */
    border-radius: 50%;
}

/* Highlighted text */
.pp-list li span {
    color: #b1123d;
    font-weight: 600;
}


/* Last line ke niche border hataane ke liye */
.pp-list li:last-child {
    border-bottom: none;
}

.pp-list li span {
    color: #b1123d;
    font-weight: 600;
}

  /* Ensure notebook-bg creates proper stacking context */
.line-pc {
    position: relative;  
    z-index: 0;  /* content ke upar lines nahi aayengi */
}

/* Notebook style: exactly 10 uniform horizontal lines */
.line-pc::before {
    content: "";
    position: absolute;
    top: 20px;       /* upar se gap, adjust as needed */
    left: 0;
    right: 0;
    height: 285px;   /* 10 lines ├Ч (line thickness + gap) = 10*(1+25)=260px */
    background:
        linear-gradient(to bottom, rgba(128,128,128,0.3) 1px, transparent 0) 0 0/100% 26px repeat-y;
    z-index: -1;   
    pointer-events: none;
}
.pp-scroll-indicator {
    display: none; /* default hide */
}
/* ================= MOBILE RESPONSIVE SLIDER & MARQUEE ================= */
@media (max-width: 768px) {

    .pp-section {
        padding: 30px 15px;
    }

    /* ---------------- PP-STATS SLIDER ---------------- */
    .pp-stats {
        display: flex;
        overflow-x: auto;       /* horizontal scroll */
        scroll-snap-type: x mandatory; /* snap effect */
        gap: 15px;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .pp-card {
    flex: 0 0 45%;
    max-width: 45%;
    scroll-snap-align: start;

    display: flex;                 /* ЁЯСИ content center ke liye */
    flex-direction: column;
    justify-content: center;       /* vertical center */
    align-items: center;           /* horizontal center */

    padding: 12px 8px;             /* ЁЯСИ upar-niche equal gap */
    border-radius: 34.71px;
    box-sizing: border-box;
}

    /* Remove grid and max-width overrides */
    .pp-stats {
        grid-template-columns: unset;
    }

    /* ---------------- PP-PARTNERS MARQUEE ---------------- */
   /* PARTNERS LOGOS тАУ ONE LINE SCROLL */
    .pp-logos {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    padding-bottom: 10px;
}

.pp-logo {
    flex: 0 0 22vw;        /* ЁЯСИ size control */
    width: 22vw;
    height: 22vw;         /* ЁЯСИ SAME as width = perfect circle */
    max-width: 2000px;      /* safety for big screens */
    max-height: 2000px;

    border-radius: 50%;   /* тЬЕ full round */
}



.pp-number {
    font-family: 'Inter', sans-serif; /* Font added */
    font-weight: 700;  
     font-size: 30px;  
    /* Gradient text */
    background: linear-gradient(135deg, #F54900, #AA1642);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
    /* scrollbar hide (optional) */
    .pp-logos::-webkit-scrollbar {
        display: none;
    }
.line-pc::before {
    content: "";
    position: absolute;
    top: 20px;       /* upar se gap, adjust as needed */
    left: 0;
    right: 0;
    height: 285px;   /* 10 lines ├Ч (line thickness + gap) = 10*(1+25)=260px */
    background: linear-gradient( to bottom, rgba(128, 128, 128, 0.3) 1px, transparent 0 ) 0 0 / 100% 40px repeat-y;
    z-index: -1;   
    pointer-events: none;
}
    /* ---------------- PP-CONTENT LEFT LIST ---------------- */
    .pp-content {
        display: block;         /* stack left list below sliders */
        gap: 20px;
    }

    .pp-list li {
    font-family: 'Inter', sans-serif;
    font-weight: 500;          /* Medium */
    font-size: 15px;
    letter-spacing: -0.62px;

    padding-left: 20px;
    padding-top: 0px;
    padding-bottom: 6px;
}


    .pp-list li::before {
        width: 7px;
        height: 7px;
        top: 12px;
    }

    /* Partners header smaller */
    .pp-partners h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .pp-scroll-indicator {
        display: block;
        width: 70px;
        height: 6px;
        background: #e0e0e0;
        border-radius: 10px;
        margin: 12px auto 30px;
        position: relative;
        overflow: hidden;
    }

    .pp-scroll-indicator span {
        position: absolute;
        left: 0;
        top: 0;
        width: 40px;
        height: 100%;
        background: #AA1642;
        border-radius: 10px;
        transition: left 0.25s ease; /* smooth shift */
    }
}

/* ===== Desktop default ===== */
.pp-title {
    display: block;
}

.pp-title-mobile {
    display: none;
}

/* ===== Mobile only ===== */
@media (max-width: 767px) {

    /* Desktop title hide */
    .pp-title {
        display: none;
    }

    /* Mobile title show */
    .pp-title-mobile {
        display: block;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-size: 35px;
        letter-spacing: -1.4px;
        text-align: center;
        color:rgba(170, 22, 66, 1);
        margin-top: 70px;
        margin-bottom: 45px;
    }

    .pp-title-mobile span {
        display: block;
        line-height: 18px;
    }
    .pp-title-mobile .line1 {
        margin-top: 22px; /* gap control */
    }
    .pp-title-mobile .line2 {
        margin-top: 22px; /* gap control */
    }
    .pp-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;          /* Medium */
    font-size: 16.27px;
    line-height: 37.21px;
    letter-spacing: -0.54px;
    text-align: center;
}
 .pp-partners h3 {
        font-family: 'Inter', sans-serif;
        font-weight: 500;          /* Medium */
        font-size: 20px;
        line-height: 68.6px;
        letter-spacing: -1px;
    }
    .pp-content {
    display: flex;
}


}
@media (max-width: 767px) {
    .pp-content {
        flex-direction: column;   /* stack vertically */
    }

    .pp-partners {
        order: 1;   /* ЁЯСИ upar */
    }

    .pp-list {
        order: 2;   /* ЁЯСИ niche */
    }
    .pp-partners {
        margin-top: -40px;   /* ЁЯСИ upar le jaata hai */
    }
}

/* ================= CONTENT ================= */

.pp-content {
    position: relative;
    
}


/* ================= PARTNERS COLUMN ================= */

.pp-partners {
    position: relative;
    overflow: hidden;      /* ЁЯСИ MOST IMPORTANT */
}

/* ================= LOGO MARQUEE ================= */

/* ================= LOGO SIZE CONTROL ================= */
.pp-logos {
    display: flex;
    gap: 18px;
    position: relative;
    z-index: 1;

    flex-wrap: nowrap;     /* logos ek line me */
    white-space: nowrap;  /* extra safety */
}
.pp-logo img {
    max-width: 90%;        /* image circle ke andar fit */
    max-height: 90%;
    object-fit: contain;
}

.pp-logo {
    flex-shrink: 0;
}

@keyframes logo-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-60%);
    }
}

/* hover pause (optional) */
.pp-logos:hover {
    animation-play-state: paused;
}

/* default (desktop) */
.pp-logos {
    animation: logo-marquee 14s linear infinite;
}

/* mobile */
@media (max-width: 767px) {
    .pp-logos {
        animation-duration: 20s; /* ЁЯСИ slower scroll */
    }
}




/* MOBILE FOOTER */
.mit-footer-mobile {
    background: url("new-landing-images/footer/footer-mobile.png") no-repeat center center;
    background-size: cover;     /* IMPORTANT */
    color: #fff;
    padding: 30px 20px 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

  
.mit-footer-mobile::before{
    content: "";
    position: absolute;
    top: 220px;       /* upar se gap, adjust as needed */
    left: 0;
    right: 0;
    height: 400px;   /* 10 lines ├Ч (line thickness + gap) = 10*(1+25)=260px */
    background: linear-gradient( to bottom, rgba(114, 10, 41, 1) 1px, transparent 0 ) 0 0 / 100% 40px repeat-y;
    z-index: 1;   
    pointer-events: none;
}

.footer-mobile-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
    align-items: center;   /* тнР THIS */
    margin-top:140px;
}


/* logo center */
.footer-mobile-logo img {
    width: 170px;
}

/* address */
.footer-mobile-address {
    font-family: 'Inter', sans-serif;
    font-weight: 300;            /* Light */
    font-style: normal;

    font-size: 12px;
    line-height: 14.4px;
    letter-spacing: -0.02em;    /* -2% */
    color:rgba(255, 255, 255, 1);
    text-align: center;         /* Horizontal center */
}


/* pills same */
.footer-mobile-pill {
    background: rgba(140, 18, 54, 1);
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    width: fit-content;
    color: rgba(255, 164, 192, 1);
    margin-top:12px;
}

.footer-mobile-pill a {
    color: rgba(255, 164, 192, 1);
    text-decoration: none;
}

/* copyright */
.footer-mobile-copyright {
    margin-top: 10px;
    margin-bottom: 200px;   /* тнР yahin se niche ka gap */
    font-family: 'TASA Orbiter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    margin-top:-2px;
}



.third-shape {
    position: relative; /* make parent a stacking context */
    height: 190px; /* adjust height as needed */
    overflow: visible; /* allow pseudo-element to show outside if needed */
}

.third-shape::before {
    content: "";
    position: absolute;
    left: -140px;
    top: -0px;       /* adjust this to move shape up or down */
    width: 240px;
    height: 115%;    /* shape covers full height of section */
    background:  #207DCA; /* your shape color */
    border-radius: 50%;
    z-index: 1;      /* stays behind parent content and background */
}
@media (max-width: 767px) {
  .third-shape {
    display: none !important;
  }
}


/* ============================= */
/* MIT ACSC тАУ ISOLATED DESIGN */
/* ============================= */

.mit-section {
    font-family: "Segoe UI", sans-serif;
    background: #ffffff;
    padding: 0;
}

/* ================= IMAGE ================= */

.mit-screen {
    position: relative;
    background: linear-gradient(180deg,#eaf4ff,#b9dcff);
    overflow: hidden;
}

.mit-hero-img {
    width: 100%;
    display: block;
}

/* ================= TEXT OVER IMAGE ================= */

.mit-hero-text {
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 18px; */
    width: 100%;
    z-index: 5;
    text-align: center;
   
}

.mit-hero-text h1 {
    font-family: 'Inter', sans-serif;
    margin: 0;
    font-size: 45px;
    font-weight: 500;
    color: #b1123b;
    letter-spacing: 1px;
    white-space: nowrap;
}

.mit-hero-text span {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #b1123b;
    white-space: nowrap;
    margin:10px;
}

/* ================= HIGHLIGHTS ================= */

.mit-highlights {
    background: url("new-landing-images/clg-bg.png") center center no-repeat;
    background-size: cover;     /* ЁЯФе full area cover */
    color: #ffffff;
    padding: 50px 20px;
    width: 100%;
}


.mit-highlights-title {
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-size: 15px;
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Highlight Grid */
.mit-highlight-list {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

/* Highlight Item */
.mit-highlight {
    padding: 10px 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Vertical Divider */
.mit-highlight:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 0.10px;
    background: #6A0828;
}

/* ICON WRAPPER */
.mit-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ICON IMAGE тАУ VISUAL NORMALIZATION */
.mit-icon img {
    width: auto;
    height: 70%;          /* ЁЯФе height based normalization */
    max-width: 100%;
    object-fit: contain;
    display: block;
}


/* Text */
.mit-text {
    font-size: 14.4px;
    line-height: 22px;
    letter-spacing: -0.26px;
    font-weight:400;
}


/* Mobile image hidden by default */
.mit-hero-img-mobile {
    display: none;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .mit-hero-img {
        display: none;
    }

    .mit-hero-img-mobile {
        display: block;
        width: 100%;
        height: auto;
    }

    

    .mit-hero-text {
        /* top: 20px; */
        flex-wrap: wrap;
        padding: 0 15px;
    }

    .mit-hero-text h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;              /* Medium */
    font-size: 35px;
    line-height: 38.43px;
    letter-spacing: -1.4px;
    text-align: center;
    color:rgba(170, 22, 66, 1);/* Horizontal alignment */
}


   .mit-hero-text span {
    font-family: 'Inter', sans-serif;
    font-weight: 600;              /* Semi Bold */
    font-size: 12px;
    line-height: 16.01px;
    letter-spacing: 0.44px;
    text-align: center;            /* Horizontal alignment */
    text-transform: uppercase;     /* Case */
    display: block;                /* center alignment effective ho */
    color:rgba(170, 22, 66, 1);/* Horizontal alignment */
}


}

/* Mobile view only тАУ NEW SECTION */
@media (max-width: 767px) {
    .mobile-awards-new {
        display: block;
        margin: 0;
        padding: 0 16px;
        box-sizing: border-box;
        padding-left: 30px;
        padding-right: 40px;
        padding-bottom: 50px; 
        /* тЬЕ Background added */
        background-image: url("https://mitacsc.ac.in/new-landing-images/mobile-view backgorund.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .mit-highlights-title {
        text-align: center;
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 18px;
        line-height: 26px;
        color: rgba(255, 255, 255, 1);

        margin-bottom: 20px;
    }
    .mobile-award-line-new {
        display: block;
        width: 100vw;
        margin: 12px 0;
        height: auto;
        background-color: rgba(132, 9, 46, 1);
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .award-item-with-text-new {
        display: flex;
        align-items: center;
        gap: 35px;
        margin: 20px 0;
    }

    .award-item-with-text-new img {
        width: 50px;
        height: auto;
        border-radius: 4px;
        display: block;
        flex-shrink: 0;
        margin-left: 30px;
    }

    .award-item-with-text-new .affiliation-text-new {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14.99px;
    line-height: 22.49px;
    color: rgba(255, 255, 255, 1); /* тЬЕ White text */
    display: inline-block;
    word-break: break-word;
}

}

/* Default: show on desktop */
.mit-highlights {
    display: block;
}

/* Mobile only: hide */
@media (max-width: 768px) {
    .mit-highlights {
        display: none !important;
    }
}
/* Default: hide on desktop */
.mobile-awards-new {
    display: none;
}

/* Mobile view only: show */
@media (max-width: 768px) {
    .mobile-awards-new {
        display: block;
    }
}