* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #111;
  overflow-x: hidden;
  background: #f9fafb;
  padding:0;     
}

.up-topbar {
  background: #5ECA86;
  color: white;
  font-size: 16px;
  padding: 9px 0;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1020;
}

.up-topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info span {
  white-space: nowrap;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #f9da39
;
}


.up-header {
  position: fixed;
  top: 9;
  left: 0;
  width: 100%;
  height: 75px;            
  z-index: 1010;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  transition: all 0.35s;
  margin-top: 2rem;


}

.up-header.scrolled {
  background: white;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.up-nav { 
   max-width: 1400px;
  margin: 0 auto;
  height: 70px;             
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  
}

.up-logo{  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;  


}

.ahdem-logo{
  max-width: 200px;  
  height: auto;
  display: block;     
  margin: 0;          
  padding: 0;         
  object-fit: contain;
  margin-top: 20px;
  
}




.up-logo span { color: #5ECA86
; }

/* DESKTOP MENU */
.desktop-menu {
  display: none;
}

.desktop-menu a {
  font-size: 15px;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  transition: color 0.3s;
}

.desktop-menu a:hover {
  color: #f9da39
;
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.login {
  font-size: 15px;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  transition: color 0.3s;
  
}

.login:hover {
  color: #f9da39
;
}




.apply-btn {
  background: #5ECA86;
  color: white;
  border: none;
  padding: 10px 34px;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s;
  text-decoration: none;
}


.apply-btn-link{
 font-size: 15px;
  font-weight: 500;
  color:white;
  text-decoration: none;
  transition: color 0.3s; 
}


.apply-btn:hover { 
  background: #f9da39
; 
  transform: translateY(-3px); 
}



/* HAMBURGER */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 3.5px;
  background: #111;
  border-radius: 2px;
  transition: all 0.4s ease;
}


/* Hamburger styling for toggle */
.hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #5ECA86; 
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger -> X */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu active state */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999;
  transition: right 0.3s ease;

  
}

.mobile-menu.active {
  right: 0;
}


/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.77,0,0.175,1);
  display: flex;
  align-items: center;
  justify-content: center;

  
}

.mobile-menu.active {
  transform: translateY(0);
}

.menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  font-size: 3rem;
  color:#e63946;
  cursor: pointer;
  line-height: 1;
  font-weight: 300;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  text-align: center;
  padding: 40px;
  
}




.mobile-menu-inner a {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  text-decoration: none;
  transition: all 0.3s ease;

  
  
}

.mobile-menu-inner a:hover {
  color: #e63946;
  transform: scale(1.08);
}

/* HERO */
.up-hero {
  position: relative;
  background: url(/IMG1/real.jpg) center/cover no-repeat;
  background-attachment: scroll;
  transform: translateZ(0);
  will-change: transform;
  
}

/* PROGRAMS */
.up-programs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 7rem;
  
}

.program-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: white;
  background-color:#f373c5;
  font-weight: 800;
  transition: all 0.3s;
  cursor: pointer;
}



.program-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.program-text {
  line-height: 1.25;
}

.up-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28) 70%, rgba(0, 0, 0, 0.28) 100%);
}

.up-hero-content {
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
  color: white;
  padding: 140px 24px 80px;
  max-width: 920px;
}

.up-subtitle {
  margin-top: 1rem;
  font-size: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  font-weight: 1000;
  margin-bottom: 12px;
}

.up-hero h1 {
  font-size:  20px;
  font-weight: 200;
  line-height: 1.2;
  margin-bottom: 30px;
}







.nyu-career-section {
  margin-top:0;
  width: 100%;
  padding: 80px 20px;
  background: #ffffff;
}

.nyu-career-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
  align-items: center;
}

/* LEFT */
.nyu-career-text {
  flex: 1;
}

.nyu-career-title {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  color: #0b1f3a;
  margin-bottom: 20px;
}

.nyu-career-description {
  font-size: 16px;
  line-height: 1.7;
  color: #5f6c7b;
  margin-bottom: 30px;
}

.nyu-career-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nyu-career-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #1f2933;
}

.nyu-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f373c5;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* RIGHT */
.nyu-career-media {
  flex: 1;
  display: flex;
  gap: 16px;
}

/* MAIN IMAGE */
.nyu-main-image {
  flex: 1;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.nyu-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nyu-play-button {
  width: 60px;
  height: 60px;
  background: #f373c5;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.yt-button{
    margin-top:2rem;
    margin-left:0.9rem;
   

}

/* SIDE IMAGES */
.nyu-side-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 40%;
}

.nyu-side-image {
  border-radius: 8px;
  overflow: hidden;
}

.nyu-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}





/* ===== STATS SECTION ===== */
.mc-stats-section {
  position: relative;
  width: 100%;
  background:#5ECA86;
  padding: 130px 20px 90px;
  overflow: hidden;
}

/* Curved top + blue arcs */
.mc-bg-curves {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 240px;
  z-index: 1;
}

/* Gold ring */
.mc-gold-ring {
  position: absolute;
  top: 150px;
  left: 130px;
  width: 48px;
  height: 48px;
  border: 4px solid #f9da39
;
  border-radius: 50%;
  z-index: 2;
}

/* Dotted pattern */
.mc-dots-pattern {
  position: absolute;
  right: 110px;
  top: 170px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(#f9da39
 2px, transparent 2px);
  background-size: 14px 14px;
  z-index: 2;
}

/* Stats layout */
.mc-stats-wrapper {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

/* Individual stat */
.mc-stat-card {
  width: 100%;
}

.mc-stat-icon {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Numbers */
.mc-stat-number {
  font-size: 40px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

/* Labels */
.mc-stat-label {
  font-size: 16px;
  color:white;
  font-weight: 500;
}




.upstudy-tuition-section {
  padding: 80px 24px;
  background-color: #ffffff;
  font-family: "Georgia", serif;
}

.upstudy-tuition-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* Left Intro */
.upstudy-tuition-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.upstudy-tuition-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #f373c5;
  margin-bottom: 16px;
}

.upstudy-tuition-heading {
  font-size: 42px;
  line-height: 1.15;
  color: #0b2545;
  margin-bottom: 24px;
}

.upstudy-tuition-description {
  font-size: 15px;
  line-height: 1.7;
  color: #6b6b6b;
  margin-bottom: 32px;
  max-width: 420px;
}

.upstudy-tuition-button {
  display: inline-block;
  background-color: #f373c5;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  width: fit-content;
}

/* Cards */
.upstudy-tuition-card {
  padding: 36px 32px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.upstudy-card-undergrad {
  background-color: #f373c5;
}

.upstudy-card-postgrad {
  background-color: #5ECA86
;
}

.upstudy-card-title {
  font-size: 22px;
  margin-bottom: 24px;
}

.upstudy-card-subtitle {
  font-size: 16px;
  margin-bottom: 12px;
  text-decoration: underline;
}

.upstudy-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.upstudy-card-list li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.upstudy-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
}





/*EDU SECTION */
.edu-hero-section {
  width: 100%;
  overflow: hidden;
  font-family: "Segoe UI", Arial, sans-serif;
  
}

/* GRID */
.edu-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  min-height: 600px;
}

/* LEFT SIDE */
.edu-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

/* CARDS */
.edu-card {
  padding: 32px;
  display: flex;
  align-items: flex-start;
}

.edu-card--blue {
  background-color:#5ECA86;
  color: #ffffff;
}

.edu-card--red {
  background-color: #f373c5;
  color: #ffffff;
}

.edu-card-content {
  max-width: 90%;
}

.edu-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.edu-card-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.edu-card-link {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

/* ICON */
.edu-icon {
  display: inline-block;
  font-size: 22px;
  margin-bottom: 12px;
}


.edu-image {
  background-color: #e5e5e5;
  background-size: cover;
  background-position: center;
  min-height: 240px;
}

.edu-image--graduate {
  grid-column: 2 / 3;
}

.edu-image--students {
  grid-column: 1 / 2;
}

/* RIGHT SIDE */
.edu-right {
  position: relative;
  background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), /* semi-transparent black gradient */
    url(/IMG1/@PhotoFixerBot_photo_2026-02-11_06-12-11.jpg) center/cover no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 60px;
}

/* OVERLAY CONTENT */
.edu-overlay {
  color: #ffffff;
  max-width: 520px;
}

.edu-hero-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
}

.edu-cta-btn {
  display: inline-block;
  background-color: #f373c5;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
}


/* Reset & safety */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #0b1f3b;
}

/* Section */
.ln-section {
  width: 100%;
  padding: 80px 16px;
  background-color: #ffffff;
}

/* Container */
.ln-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.ln-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

/* Grid */
.ln-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.ln-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}


.ln-image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #e6e9ee;
  border-radius: 8px;
  overflow: hidden;
}

/* Card content */
.ln-card-content {
  padding-top: 20px;
}

/* Meta row */
.ln-meta {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #7a869a;
  margin-bottom: 10px;
}

.ln-category {
  color: #7a869a;
}

.ln-dot {
  width: 6px;
  height: 6px;
  background-color: #f373c5;
  border-radius: 50%;
  margin: 0 10px;
}

.ln-date {
  color: #7a869a;
}

/* Title */
.ln-title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 16px;
  color: #0b1f3b;
}

/* Read more */
.ln-read-more {
  font-size: 13px;
  font-weight: 700;
  color: #f373c5;
  text-decoration: none;
  letter-spacing: 0.6px;
}

/* Hover (subtle) */
.ln-read-more:hover {
  text-decoration: underline;
}


.upstudy-footer {
  background-color: #5ECA86;
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  width: 100%;
  overflow: hidden;
}

.upstudy-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.upstudy-footer__brand {
  max-width: 360px;
}

.upstudy-footer__logo {
  width: 150px;
  height: 40px;
  background: transparent;
  margin-bottom: 18px;
}

.upstudy-footer__description {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
  color: white;
}

.upstudy-footer__contact {
  display: flex;
  align-items: center;
  gap: 14px;
}


.st{
margin-top: 1rem;
}

.upstudy-footer__phone-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.upstudy-footer__phone-text span {
  font-size: 12px;
  color: white;
}

.upstudy-footer__phone-text strong {
  display: block;
  font-size: 14px;
  color: #ffffff;
}

.upstudy-footer__column {
  min-width: 0;
}

.upstudy-footer__heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 22px;
  color: #ffffff;
}

.upstudy-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.upstudy-footer__list li {
  margin-bottom: 14px;
}

.upstudy-footer__list a {
  text-decoration: none;
  font-size: 14px;
  color: white;
  transition: color 0.2s ease;
}

.upstudy-footer__list a:hover {
  color: #ffffff;
}

.upstudy-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.upstudy-footer__copyright {
  font-size: 13px;
  color: white;
}

.upstudy-footer__socials {
  display: flex;
  gap: 12px;
}

.upstudy-footer__social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s ease;
}

.upstudy-footer__social:hover {
  background: rgba(255, 255, 255, 0.12);
}



.grad-img{
  height: 100%;
  width:100%;
  object-fit: cover;
}




/* ────────────────────────────────────────────────
   Css Media Querries
───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ln-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  

  .ln-heading {
    font-size: 34px;
  }


  .nyu-career-container {
    gap: 40px;
  }

  .nyu-career-title {
    font-size: 38px;
  }


}


@media (max-width: 922px) {
  .edu-hero-grid {
    grid-template-columns: 1fr;
  }

  

  .edu-left {
    grid-template-columns: 1fr;
  }

  .edu-image {
    min-height: 200px;
  }

  .edu-right {
    padding: 40px 24px;
  }

  .mc-stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 20px;
  }
}



@media (min-width: 992px) {
  .hamburger,
  .mobile-menu,
  .menu-close { display: none; }

  .desktop-menu { display: flex; gap: 36px; margin-left: -300px; }

  .nav-right { display: flex; }

  .up-hero {
    height: 100vh;
    min-height: 920px;
    max-height: 1100px;
    display: flex;
    align-items: center;
    padding-bottom: 160px;
    margin-top: 0;                    
  }

  .up-hero-content {
    padding: 0 40px 0 110px;
    position: relative;
    max-width: 620px;
    
  }

  .up-hero-content::before {
    content: "";
    position: absolute;
    z-index: 5;
    left: 70px;
    top: 10px;
    bottom: 100px;
    width: 5px;
    background: #f9da39;
    border-radius: 4px;
  }

  .up-programs {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 1240px;
    background: #f373c5;
    flex-direction: row;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  }

  .program-item {
    flex: 1;
    padding: 50px 42px;
    text-align: center;
    font-size: 2rem;
    border-right: 1px solid rgba(255,255,255,0.22);
    justify-content: center;
  }

  .program-item:last-child { border-right: none; }

  .program-item:hover { 
    background: rgba(0,0,0,0.18); 
    transform: translateY(-8px);
  }
}


/* ────────────────────────────────────────────────
   MOBILE STYLES (991px and below)
───────────────────────────────────────────────── */
@media (max-width: 991px) {
  .up-topbar {
    display: none;
  }


  .up-nav {
    height: 65px; 
  }


  

  .up-header {
    top: 0;
    bottom: auto; 

  }

  body {
    padding-top: 78px;           
  }

  .up-hero {
    margin-top: 0;
    min-height: unset;
    height: auto !important;
    padding-bottom: 0 !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .up-overlay {
    display: none !important;
  }

  .up-hero-content {
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 44px 20px;
    margin: 24px 16px 0;
    border-radius: 20px;
    text-align: center;
    max-width: none;
    margin-bottom: 40px;
    
  }

  .desktop-menu,
  .nav-right {
    display: none;
  }

  .up-programs {
    margin-top: auto;
    background: transparent;
    padding: 0 16px 20px;
    width: 100%;
  }

  .program-item {
    margin-bottom: 20px;
    background: #f373c5
;
    color: white;
    padding: 40px 25px;
    text-align: left;
    font-size: 1.8rem;
    line-height: 1.1;
    border-radius: 16px;
    gap: 24px;
    justify-content: flex-start;
  }

  .program-icon img {
    width: 80px;
    height: 80px;
  }
}



@media (max-width: 900px) {
  
  
  .upstudy-footer__container {
    grid-template-columns: 1fr 1fr;
  }

  .upstudy-footer__brand {
    grid-column: span 2;
  }


   .upstudy-tuition-container {
    grid-template-columns: 1fr;
  }

  .upstudy-tuition-heading {
    font-size: 34px;
  }

  .upstudy-tuition-card {
    padding: 32px 24px;
  }




}


@media (max-width: 768px) {

  
  .nyu-career-container {
    flex-direction: column;
  }

  .nyu-career-media {
    width: 100%;
  }

  .nyu-side-images {
    width: 35%;
  }

}




@media (max-width: 640px) {


  
  .ln-grid {
    grid-template-columns: 1fr;
  }

  .ln-heading {
    font-size: 28px;
    margin-bottom: 32px;
  }
}




@media (max-width: 600px) {

  
  .mc-stats-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mc-gold-ring {
    top: 115px;
    left: 40px;
  }

  .mc-dots-pattern {
    right: 30px;
    top: 210px;
  }

  .mc-stat-number {
    font-size: 34px;
  }

  .mc-stat-label {
    font-size: 15px;
  }

  .upstudy-footer__container {
    grid-template-columns: 1fr;
    padding: 50px 20px 30px;
  }

  .upstudy-footer__brand {
    grid-column: auto;
  }

  .upstudy-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}



@media (max-width: 576px) {

  
  .edu-card {
    padding: 24px;
  }

  .edu-hero-title {
    font-size: 26px;
  }
}


/* MOBILE — IMAGES STACKED  VERTICALLY */
@media (max-width: 480px) {

  

  .nyu-career-section {
    padding: 60px 16px;
  }

  .nyu-career-title {
    font-size: 30px;
  }

  .nyu-career-media {
    flex-direction: column;
  }

  .nyu-side-images {
    flex-direction: column;
    width: 100%;
  }

  .nyu-main-image,
  .nyu-side-image {
    width: 100%;
  }



  .up-hero h1 { font-size: 1rem; }
  .up-subtitle{ font-size: 30px;}
  .apply-btn { padding: 14px 36px; font-size: 1.05rem; }
  .program-item { padding: 35px 20px; font-size: 1.65rem; }
  .program-icon img { width: 70px; height: 70px; }
  .up-programs { padding-bottom: 16px; }
  .nyu-career-title{font-size: 25px;}
 

  




.up-hero {
  position: relative;
  background: url(/IMG1/@PhotoFixerBot_20-44-44_UTC.jpg) center/cover no-repeat;
  background-attachment: scroll;
  transform: translateZ(0);
  will-change: transform;
  margin-top: 4.9rem;
  
  
}



.up-header {
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 75px;        
  z-index: 1010;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  transition: all 0.35s;
  margin-top:0;


}

.up-header.scrolled {
  background: white;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.up-nav { 
   max-width: 1400px;
  margin: 0 auto;
  height: 70px;              
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  
}

.up-logo{  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;   
  


}

.ahdem-logo{
  max-width: 170px;   
  height: auto;
  display: block;     
  margin: 0;          
  padding: 0;        
  object-fit: contain;
  margin-top: 21.5px;
  position: relative;
  right: 15px;
  
  
}



body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #111;
  overflow-x: hidden;
  background: #f9fafb;
  padding:0;     
}

}











 

/* ────────────────────────────────────────────────
   Fade-in + slow slide-up animation on scroll 
───────────────────────────────────────────────── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 480px) {
  .nyu-career-container {
    gap: 20px;
  }
}


 