*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --blue:#1a56db;
  --blue-dark:#1240aa;
  --blue-light:#e8f0fe;
  --orange:#f05a28;
  --text:#1a1a2e;
  --muted:#5a6472;
  --border:#e2e8f0;
  --white:#fff;
  --bg:#f7f9fc;
  --radius:12px;
  --font-head:'Outfit', sans-serif;
  --font-body:'Plus Jakarta Sans', sans-serif;

}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);color:var(--text);background:var(--white);-webkit-font-smoothing:antialiased;line-height:1.6}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* ── UTILITIES ── */
.container{max-width:1140px;margin:0 auto;padding:0 20px}
.btn{display:inline-block;padding:13px 28px;border-radius:50px;font-family:var(--font-body);font-size:15px;font-weight:600;cursor:pointer;border:none;transition:all .2s ease;text-align:center}
.btn-primary{background:var(--orange);color:#fff}
.btn-primary:hover{background:#2b6eff;transform:translateY(-1px)}
.btn-outline{background:transparent;color:var(--blue);border:2px solid var(--blue)}
.btn-outline:hover{background:var(--blue);color:#fff}
.section-label{font-size:12px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--blue);margin-bottom:10px}
.section-title{font-family:var(--font-head);font-size:clamp(26px,4vw,40px);line-height:1.2;color:var(--text);margin-bottom:14px}
.section-sub{font-size:16px;color:var(--muted);max-width:560px;margin:0 auto 48px}
.text-center{text-align:center}
section{padding:72px 0}

/* ── NAV ── */
nav{position:sticky;top:0;z-index:100;background:rgba(0, 40, 92, 0.95);backdrop-filter:blur(8px);border-bottom:1px solid var(--border);padding:14px 0}
.nav-inner{display:flex;align-items:center;justify-content:space-between;gap:16px}
.logo{font-family:var(--font-head);font-size:22px;font-weight:700;color:var(--blue)}
.logo span{color:var(--orange)}
.nav-cta{display:flex;gap:10px;align-items:center}
@media(max-width:580px){.nav-cta .btn-outline{display:none}}



.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Partner logo */
.nav-partner-logo {
  height: 90px;
  width: auto;
  flex-shrink: 0; /* prevents squeezing */
}

/* Hide on mobile */
@media (max-width: 768px) {
  .nav-partner-logo {
    display: none;
  }
}

/* ── HERO ── */
/* ── HERO ── */
.hero{
  background: url('images/hero.webp') center/cover no-repeat;
  padding:80px 0 60px;
  overflow:hidden;
  position:relative;
}

/* DARK OVERLAY FOR READABILITY */
.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(13,34,87,0.85), rgba(26,86,219,0.7));
  z-index:0;
}

/* EXISTING LIGHT GLOW EFFECT */
.hero::after{
  content:'';
  position:absolute;
  top:-60px;
  right:-80px;
  width:480px;
  height:480px;
  border-radius:50%;
  background:rgba(255,255,255,.04);
  pointer-events:none;
}

/* KEEP CONTENT ABOVE OVERLAY */
.hero > *{
  position:relative;
  z-index:1;
}

/* GRID */
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}
@media(max-width:820px){
  .hero-grid{grid-template-columns:1fr}
}

/* BADGE */
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  border-radius:50px;
  padding:6px 16px;
  font-size:13px;
  color:rgba(255,255,255,.85);
  margin-bottom:20px;
}

/* HEADING */
.hero h1{
  font-family:var(--font-head);
  font-size:clamp(28px,4.5vw,48px);
  line-height:1.15;
  color:#fff;
  margin-bottom:14px;
}
.hero h1 span{color:#f9c95e}

/* SUBTEXT */
.hero-sub{
  font-size:16px;
  color:rgba(255,255,255,.78);
  margin-bottom:28px;
  max-width:460px;
}

/* PILLS */
.hero-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:32px;
}
.pill{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.18);
  border-radius:50px;
  padding:7px 16px;
  font-size:13px;
  color:rgba(255,255,255,.85);
}

/* ACCREDITATIONS */
.hero-accred{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:24px;
  flex-wrap:wrap;
}
.accred-badge{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.2);
  border-radius:8px;
  padding:7px 14px;
  font-size:12px;
  font-weight:600;
  color:#fff;
  letter-spacing:.04em;
}


.note-box {
  margin-top: 18px;
  padding: 12px 16px;
  border-left: 4px solid #f9c95e;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 14px;
  border-radius: 6px;
  max-width: 100%;
  width: fit-content;
  backdrop-filter: blur(4px);
}

/* TEXT */
.note-box strong {
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .note-box {
    font-size: 13px;
    padding: 10px 14px;
    line-height: 1.5;
    width: 100%;        /* full width for small screens */
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .note-box {
    font-size: 12.5px;
    padding: 9px 12px;
  }
}
/* ── LEAD FORM ── */
.form-card{background:#fff;border-radius:var(--radius);padding:32px 28px;box-shadow:0 20px 60px rgba(0,0,0,.18)}
.form-card h3{font-family:var(--font-head);font-size:20px;color:var(--text);margin-bottom:6px}
.form-card p{font-size:13px;color:var(--muted);margin-bottom:22px}
.form-group{margin-bottom:14px}
.form-group input,
.form-group select{width:100%;padding:12px 14px;border:1.5px solid var(--border);border-radius:8px;font-family:var(--font-body);font-size:14px;color:var(--text);background:#fff;outline:none;transition:border .2s}
.form-group input::placeholder{color:#aab}
.form-group input:focus,
.form-group select:focus{border-color:var(--blue)}
.form-group select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6472' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;padding-right:36px}
.form-submit{width:100%;padding:14px;border:none;border-radius:8px;background:var(--orange);color:#fff;font-family:var(--font-body);font-size:15px;font-weight:600;cursor:pointer;transition:background .2s}
.form-submit:hover{background:#d44b1d}
.form-note{font-size:11px;color:var(--muted);text-align:center;margin-top:10px}

/* ── HIGHLIGHTS BAR ── */
.highlights{background:var(--bg);padding:40px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.highlights-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:28px}
.highlight-item{display:flex;align-items:flex-start;gap:14px}
.hi-icon{width:44px;height:44px;border-radius:10px;background:var(--blue-light);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.hi-icon svg{width:22px;height:22px;stroke:var(--blue);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.hi-text p{font-size:13px;font-weight:600;color:var(--text);margin-bottom:2px}
.hi-text span{font-size:12px;color:var(--muted)}

/* ── WHY CHOOSE ── */
.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:22px}
.why-card{background:var(--white);border:1.5px solid var(--border);border-radius:var(--radius);padding:26px 22px;transition:border-color .2s,box-shadow .2s}
.why-card:hover{border-color:var(--blue);box-shadow:0 8px 32px rgba(26,86,219,.1)}
.wc-num{font-family:var(--font-head);font-size:36px;color:var(--blue-light);line-height:1;margin-bottom:12px;-webkit-text-stroke:1px var(--blue)}
.why-card h4{font-size:15px;font-weight:600;color:var(--text);margin-bottom:8px}
.why-card p{font-size:13px;color:var(--muted);line-height:1.65}

/* ── BSC SPECIALIZATION SECTION ── */
.bsc-specs {
  padding: 80px 0;
  background: #f5f6f8;
}




.stats {
  padding: 50px 16px;
  background: #72abff;
}

.stats-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: #1e1bb3;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
}

.stat-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.stat-card h3 {
  font-size: 32px;
  margin: 10px 0;
  font-weight: 700;
}

.stat-card p {
  font-size: 14px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}



.why-dsu {
  padding: 60px 16px;
  background: #eef2f6;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin-bottom: 40px;
  font-weight: 700;
}

.section-title span {
  color: #1e63d5;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  padding: 30px 22px;
  border-radius: 16px;
  text-align: center;
}

.card h3 {
  font-size: 1.1rem;
  margin: 15px 0 10px;
  color: #1e63d5;
}

.card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

/* ICONS */
.icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 28px;
  color: #fff;
}

/* COLORS */
.blue { background: #2d7be5; }
.green { background: #3fa34d; }
.orange { background: #f59e0b; }
.purple { background: #8e44ad; }
.teal { background: #17a2b8; }
.red { background: #e74c3c; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}




.programs {
  padding: 60px 16px;
  background: #000;
}

.title {
  text-align: center;
  color: #fff;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin-bottom: 40px;
}

.program-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card {
  border-radius: 20px;
  overflow: hidden;
  background: #111;
}

.program-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.content {
  background: #eaeaea;
  padding: 18px;
  border-radius: 20px 20px 0 0;
  transform: translateY(-20px);
}

.content h3 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #222;
}

.btn {
  display: inline-block;
  font-size: 0.8rem;
  padding: 8px 14px;
  background: #1e63d5;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
}

/* Hover (lightweight) */
.program-card:hover img {
  transform: scale(1.05);
  transition: 0.4s ease;
}

/* Responsive */
@media (max-width: 900px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .program-grid {
    grid-template-columns: 1fr;
  }
}




.scholarship {
  background: #2c2a63;
  padding: 70px 16px;
  color: #fff;
}

.scholarship-wrap {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center; /* 🔥 KEY FIX */
}

/* LEFT */
.left {
  display: flex;
  align-items: center; /* vertical center */
}

.left-inner {
  max-width: 520px;
}

.left h2 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 1000; /* 🔥 extra bold */
  letter-spacing: -0.5px; /* makes it look tighter & stronger */
}

.arrow {
  color: #ffd500;
}

.sub {
  color: #ffd500;
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.note {
  font-size: 0.95rem;
  margin-bottom: 20px;
  opacity: 0.85;
  line-height: 1.6;
}

/* badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badges span {
  border: 1px solid rgba(255,255,255,0.6);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* RIGHT */
.right {
  background: rgba(255,255,255,0.06);
  padding: 24px;
  border-radius: 14px;
}

.right h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(90deg,#4fc3f7,#6c7ae0);
}

/* list alignment fix */
.list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
}

.item:last-child {
  border-bottom: none;
}

.year {
  font-weight: 600;
  min-width: 50px;
}

.info strong {
  display: block;
  color: #ffd500;
  font-size: 1rem;
}

.info span {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .scholarship-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .left {
    justify-content: center;
    text-align: center;
  }

  .badges {
    justify-content: center;
  }
}



/* SECTION */
.logos {
  padding: 60px 16px;
  background: #04183f;
  text-align: center;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.logos h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 30px;
  font-weight: 700;
  color: #1a1a1a;
}

/* GRID */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  align-items: center;
}

/* LOGOS */
.logo-grid img {
  max-height: 50px;
  width: auto;
  margin: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.logo-grid img:hover {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 500px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .logo-grid img {
    max-height: 40px;
  }
}



/* SECTION */
.hostel-gallery {
  padding: 60px 16px;
  background: linear-gradient(135deg, rgba(13,34,87,0.85), rgba(26,86,219,0.7));
  text-align: center;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.title {
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 30px;
}

/* GALLERY */
.gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

/* HIDE SCROLLBAR */
.gallery::-webkit-scrollbar {
  display: none;
}
.gallery {
  scrollbar-width: none;
}

/* CARD */
.card {
  flex: 0 0 260px;
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
}

/* IMAGE */
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  transition: transform 0.3s ease;
}

/* HOVER */
.card:hover img {
  transform: scale(1.05);
}

/* DESKTOP GRID OPTION */
@media (min-width: 900px) {
  .gallery {
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .card {
    flex: unset;
  }
}



/* GRID */
.bsc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* CARD */
.bsc-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bsc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* IMAGE */
.bsc-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CONTENT */
.bsc-content {
  padding: 20px;
  text-align: center;
}

.bsc-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.4;
}

/* BUTTON */
.bsc-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1a56db, #2563eb);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.bsc-btn:hover {
  background: linear-gradient(135deg, #1240aa, #1a56db);
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 600px) {
  .bsc-card img {
    height: 180px;
  }

  .bsc-content h3 {
    font-size: 16px;
  }
}

/* ── TESTIMONIALS ── */
.testi-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:22px}
.testi-card{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius);padding:28px 24px}
.testi-stars{color:#f59e0b;font-size:14px;letter-spacing:2px;margin-bottom:12px}
.testi-card blockquote{font-size:14px;color:var(--muted);line-height:1.7;margin-bottom:20px;font-style:italic}
.testi-author{display:flex;align-items:center;gap:12px}
.avatar{width:42px;height:42px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:15px;font-weight:700;color:#fff;flex-shrink:0}
.testi-author p{font-size:14px;font-weight:600;color:var(--text);margin-bottom:2px}
.testi-author span{font-size:12px;color:var(--muted)}

/* ── CTA SECTION ── */
.cta-section{background:linear-gradient(135deg,#0d2257 0%,#1a56db 100%);padding:80px 0;text-align:center}
.cta-section h2{font-family:var(--font-head);font-size:clamp(26px,4vw,40px);color:#fff;margin-bottom:14px}
.cta-section p{font-size:16px;color:rgba(255,255,255,.78);margin-bottom:36px}
.cta-form{display:flex;gap:12px;max-width:460px;margin:0 auto;flex-wrap:wrap;justify-content:center}
.cta-form input{flex:1;min-width:200px;padding:14px 18px;border:none;border-radius:50px;font-family:var(--font-body);font-size:14px;outline:none}
.cta-form button{padding:14px 28px;border:none;border-radius:50px;background:var(--orange);color:#fff;font-family:var(--font-body);font-size:15px;font-weight:600;cursor:pointer;transition:background .2s;white-space:nowrap}
.cta-form button:hover{background:#d44b1d}
.cta-guarantee{font-size:12px;color:rgba(255,255,255,.55);margin-top:14px}

/* ── FOOTER ── */
footer{background:#0d1f52;padding:40px 0;text-align:center}
footer p{font-size:13px;color:rgba(255,255,255,.45)}
footer a{color:rgba(255,255,255,.6);margin:0 10px}
footer a:hover{color:#fff}

/* ── SUCCESS MESSAGE ── */
.success-msg{display:none;background:#d1fae5;border:1.5px solid #6ee7b7;border-radius:8px;padding:14px;text-align:center;font-size:14px;font-weight:600;color:#065f46;margin-top:12px}

/* ── RESPONSIVE ── */
@media(max-width:600px){
  section{padding:52px 0}
  .hero{padding:56px 0 48px}
  .cta-form{flex-direction:column;align-items:stretch}
  .cta-form input,.cta-form button{min-width:100%;border-radius:10px}
  .why-grid{grid-template-columns:1fr}
}

.lsq-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.widget-wrapper {
  width: 100%;
  max-width: 420px; /* desktop width */
}

/* Make widget fully responsive */
.lsq-portal-widget {
  width: 100% !important;
  min-height: 500px;
}

/* MOBILE FIX */
@media (max-width: 600px) {
  .widget-wrapper {
    max-width: 100%;
  }

  .lsq-container {
    padding: 0 10px; /* small side spacing */
  }
}



/* ── SIMPLE ABOUT SECTION ── */
.about-dsu{
  background: var(--bg);
}

.about-simple{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-img img{
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  object-fit: cover;
}

.about-para{
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 10px;
  max-width: 520px;
  text-align: justify;
}

/* MOBILE */
@media(max-width:820px){
  .about-simple{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-img{
    order: -1;
  }

  .about-para{
    max-width: 100%;
  }
}


.about-school{
  background: #fff;
}

.about-school-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-school-img img{
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  object-fit: cover;
}

.about-para{
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 560px;
}

/* MOBILE */
@media(max-width:820px){
  .about-school-grid{
    grid-template-columns: 1fr;
  }

  .about-school-img{
    order: -1;
  }

  .about-para{
    max-width: 100%;
  }
}


/* ── HIGHLIGHT SECTION ── */
.highlight-specs{
  background: linear-gradient(135deg, #0d2257 0%, #1a56db 100%);
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}

.highlight-specs::after{
  content:'';
  position:absolute;
  top:-80px;
  right:-80px;
  width:400px;
  height:400px;
  background: rgba(255,255,255,0.05);
  border-radius:50%;
}

/* HEADER COLORS */
.spec-title{
  color:#fff;
}

.spec-sub{
  color:rgba(255,255,255,0.8);
}

/* GRID */
.bca-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
}

/* CARD */
.highlight-card{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
  transition:transform .3s ease, box-shadow .3s ease;
}

.highlight-card:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 25px 60px rgba(0,0,0,0.3);
}

/* IMAGE (BIGGER) */
.highlight-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:transform .4s ease;
}

.highlight-card:hover img{
  transform:scale(1.1);
}

/* OVERLAY */
.card-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
}

/* TITLE (BIGGER) */
.highlight-card h3{
  position:absolute;
  bottom:18px;
  left:18px;
  right:18px;
  color:#fff;
  font-size:17px;
  font-weight:700;
  line-height:1.4;
  text-shadow:0 4px 12px rgba(0,0,0,0.6);
  z-index:2;
}

/* CTA BUTTON */
.highlight-btn{
  background:#f05a28;
  color:#fff;
  padding:14px 32px;
  border-radius:50px;
  font-weight:600;
  transition:all .25s ease;
}

.highlight-btn:hover{
  background:#d44b1d;
  transform:translateY(-2px);
}

/* MOBILE */
@media(max-width:600px){
  .highlight-card img{
    height:180px;
  }

  .highlight-card h3{
    font-size:16px;
  }
}




/* ── ABOUT BSC SECTION ── */
.about-bsc {
  padding: 70px 0;
  background: #f7f9fc;
}

/* GRID */
.about-bsc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.about-bsc-img img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* CONTENT */
.about-bsc-content {
  max-width: 520px;
}

.about-bsc-content .section-title {
  margin-bottom: 18px;
}

.about-para {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* RESPONSIVE */
@media (max-width: 820px) {
  .about-bsc-grid {
    grid-template-columns: 1fr;
  }

  .about-bsc-content {
    max-width: 100%;
  }
}




/* ── ELIGIBILITY SECTION ── */
.eligibility-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d2257 0%, #1a56db 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle pattern */
.eligibility-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

/* CONTENT */
.eligibility-content {
  max-width: 750px;
  margin: 30px auto 0;
}

.eligibility-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* TITLE COLOR FIX */
.eligibility-section .section-title {
  color: #fff;
}

.eligibility-section .section-label {
  color: rgba(255,255,255,0.7);
}

/* BUTTON */
.eligibility-btn {
  margin-top: 20px;
}

/* MOBILE */
@media (max-width: 600px) {
  .eligibility-section {
    padding: 60px 0;
  }

  .eligibility-content p {
    font-size: 14px;
  }
}


/* ── PLACEMENTS SECTION ── */
.placements-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #0d2257 0%, #1a56db 100%);
  text-align: center;
}

/* CONTENT BOX */
.placement-box {
  max-width: 800px;
  margin: 40px auto 0;
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TEXT */
.placement-box p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
}

/* TITLE COLOR FIX */
.placements-section .section-title {
  color: #fff;
}

/* MOBILE */
@media (max-width: 600px) {
  .placement-box {
    padding: 20px;
  }

  .placement-box p {
    font-size: 14px;
  }
}


/* ── BCA WHY SECTION ── */
.bca-why {
  background: #438eff;
  padding: 80px 0;
}

.bca-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* CARD */
.bca-why-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px 22px;
  border: 1.5px solid var(--border);
  transition: all 0.25s ease;
  position: relative;
}

.bca-why-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 12px 40px rgba(26, 86, 219, 0.12);
}

/* ICON */
.bca-icon {
  font-size: 26px;
  margin-bottom: 14px;
}

/* TEXT */
.bca-why-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.bca-why-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* IMAGE CARD (CENTER) */
.highlight-card {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

.highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.overlay-text {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  z-index: 2;
}

/* MOBILE */
@media (max-width: 600px) {
  .bca-why {
    padding: 60px 0;
  }

  .highlight-card img {
    min-height: 200px;
  }
}


/* ── DSU ADVANTAGES GRID ── */
.dsu-advantages-alt {
  padding: 90px 0;
  background: linear-gradient(135deg, #0a1f4d 0%, #123a8c 50%, #1a56db 100%);
}

/* GRID */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* CARD */
.adv-item {
  background: #fff;
  padding: 28px 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

/* ICON */
.adv-item span {
  font-size: 28px;
  display: inline-block;
  margin-bottom: 14px;
}

/* TITLE */
.adv-item h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--blue);
}

/* TEXT */
.adv-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* HOVER */
.adv-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

/* MOBILE */
@media (max-width: 600px) {
  .dsu-advantages-alt {
    padding: 60px 0;
  }

  .adv-item {
    padding: 22px;
  }
}
/* RIGHT SIDE HIGHLIGHT */
.adv-highlight-box {
  background: linear-gradient(135deg, #1a56db, #0d2257);
  border-radius: 18px;
  padding: 30px 24px;
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 60px rgba(26, 86, 219, 0.25);
}

.adv-highlight-box h3 {
  font-family: var(--font-head);
  font-size: 22px;
  margin-bottom: 10px;
}

.adv-highlight-box p {
  font-size: 14px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.85);
}

.adv-highlight-box img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* BUTTON */
.adv-highlight-box .btn {
  background: var(--orange);
}

.adv-highlight-box .btn:hover {
  background: #d44b1d;
}

/* MOBILE */
@media (max-width: 600px) {
  .dsu-advantages-alt {
    padding: 60px 0;
  }
}

/* ── FOOTER ── */
.main-footer {
  background: #0d1f52;
  padding: 50px 0 30px;
  text-align: center;
}

.footer-title {
  font-family: var(--font-head);
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
}

.footer-address {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 20px;
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: var(--orange);
  margin: 20px auto;
  border-radius: 2px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}



.awards-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #0a1f4d 0%, #123a8c 50%, #1a56db 100%);
  position: relative;
  overflow: hidden;
}
/* GRID */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}

/* LOGO BOX */
.award-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  transition: all 0.25s ease;
}

/* IMAGE */
.award-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.awards-section .section-title {
  margin-bottom: 50px;
}

/* HOVER EFFECT */
.award-item:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(26, 86, 219, 0.1);
}

.award-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 600px) {
  .awards-section {
    padding: 50px 0;
  }

  .award-item {
    height: 80px;
    padding: 12px;
  }

  .award-item img {
    max-height: 50px;
  }
}


/* Hide by default (desktop) */
.mobile-only-award {
  display: none;
}

/* Show only on tablet + mobile */
@media (max-width: 1024px) {
  .mobile-only-award {
    display: flex;
  }
}


/* SECTION */
.gallery-section {
  padding: 70px 0;
  background: #fff;
}

/* WRAPPER */
.gallery-wrapper {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
  padding-bottom: 10px;
}

/* HIDE SCROLLBAR */
.gallery-wrapper::-webkit-scrollbar {
  display: none;
}
.gallery-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ITEM */
.gallery-item {
  flex: 0 0 auto;
  width: 260px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ACTIVE DRAG */
.gallery-wrapper:active {
  cursor: grabbing;
}

/* MOBILE */
@media (max-width: 600px) {
  .gallery-item {
    width: 200px;
    height: 140px;
  }
}

/* WRAPPER */
.bca-item {
  text-align: center;
}

/* BUTTON BELOW CARD */
.card-btn-below {
  margin-top: 14px;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 50px;
  background: var(--orange);
  color: #fff;
  display: inline-block;
}

/* HOVER */
.card-btn-below:hover {
  background: var(--orange);
  color: #fff;
}