* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fefcf8;
  color: #1e2a3e;
  overflow-x: hidden;
  width: 100%;
}

h1,
h2,
h3,
h4,
.stitle,
.slide-h,
.jtitle {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* Tricolor top stripe */
.tricolor {
  height: 5px;
  background: linear-gradient(90deg, #FF9933 0%, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808 66%, #138808 100%);
}

/* Topbar */
.topbar {
  background: #0a1c2f;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  padding: 8px 0;
}

.topbar a {
  color: #f5e6d3;
  text-decoration: none;
  transition: 0.2s;
}

.topbar a:hover {
  color: #ffb347;
}

.adm-pill {
  background: #ffcd7e;
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #0a1c2f;
}

/* Header */
.site-header {
  padding: 18px 0;
  background: white;
  border-bottom: 1px solid #eee6dc;
}

.inst-name {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f2b3d;
}

.inst-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: #7e6b4e;
  letter-spacing: 0.3px;
}

.btn-hdr-o {
  border: 1.5px solid #0f2b3d;
  background: transparent;
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: #0f2b3d;
  transition: 0.25s;
}

.btn-hdr-o:hover {
  background: #0f2b3d;
  color: white;
}

.btn-hdr-f {
  background: #b5651e;
  color: white;
  padding: 8px 24px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  border: none;
  transition: 0.25s;
}

.btn-hdr-f:hover {
  background: #8e4b15;
  transform: translateY(-2px);
}

/* NAVBAR modern with icons */
.main-nav {
  background: #ffffff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid #f0e4d4;
  position: sticky;
  top: 0;
  z-index: 99;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.2rem;
  flex-wrap: wrap;
}

.nav-item {
  position: relative;
}

.nav-lnk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #1e2f3f;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-lnk i {
  font-size: 0.9rem;
  color: #b5651e;
}

.nav-lnk:hover {
  color: #b5651e;
  background: #fef7ef;
  border-radius: 30px;
}

.nav-drop {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 100;
  border: 1px solid #f0e2d2;
}

.nav-item:hover .nav-drop {
  opacity: 1;
  visibility: visible;
}

.nav-drop li {
  list-style: none;
}

.nav-drop a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.8rem;
  color: #2d3e50;
  text-decoration: none;
}

.nav-drop a i {
  font-size: 0.8rem;
  color: #b5651e;
  width: 20px;
}

.nav-drop a:hover {
  background: #fdf5ec;
  color: #b5651e;
}

.nav-toggler {
  background: #0f2b3d;
  border: none;
  color: white;
  padding: 8px 14px;
  border-radius: 12px;
}

/* MOBILE NAV */
.mob-nav {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background: white;
  z-index: 2000;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  padding: 20px;
  overflow-y: auto;
}

.mob-nav.open {
  left: 0;
}

.mob-hd {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.mob-close {
  background: none;
  border: none;
  font-size: 1.4rem;
}

.mob-a,
.mob-tog {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 12px 0;
  border: none;
  color: #1e2f3f;
  text-decoration: none;
  background: none;
  font-weight: 500;
  border-bottom: 1px solid #eee;
}

.mob-a i,
.mob-tog i {
  width: 24px;
  color: #b5651e;
}

.mob-sub {
  /* padding-left: 36px; */
  display: none;
  flex-direction: column;
  gap: 8px;
  background: #f5f7fa;
}

.mob-sub.open {
  display: flex;
}
.mob-sub a{
  display: block;
  padding: 9px 34px;
  font-size: 0.83rem;
  color: #2d3e50;
  text-decoration: none;
  border-bottom: 1px dashed #ffb347;
}

/* Hero */
.hero-slide {
  min-height: 520px;
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0a1c2fcc 0%, #0a1c2faa 50%, transparent 100%);
}

.hs1 {
  background-image: url("../damsImages/banner/banner-11copy.jpg");
}

.hs2 {
  background-image: url("../damsImages/banner/banner-4.jpg");
}

.hs3 {
  background-image: url("../damsImages/banner/banner-2.jpg");
}

.slide-body {
  position: relative;
  z-index: 2;
  color: white;
  padding: 40px 0;
}

.slide-kicker {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #b5651ecc;
  display: inline-block;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.slide-h {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.slide-h span {
  color: #ffcd7e;
}

.slide-rule {
  width: 70px;
  height: 4px;
  background: #ffb347;
  margin: 20px 0;
}

.slide-p {
  font-size: 1rem;
  max-width: 550px;
  opacity: 0.9;
}

.btn-hp,
.btn-hg {
  padding: 10px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  display: inline-block;
}

.btn-hp {
  background: #b5651e;
  color: white;
  border: none;
}

.btn-hp:hover {
  background: #8e4b15;
  color: white;
}

.btn-hg {
  background: transparent;
  border: 1.5px solid white;
  color: white;
}

.btn-hg:hover {
  background: white;
  color: #0f2b3d;
}

/* stats */
.stats-strip {
  background: #0f2b3d;
  color: white;
  padding: 35px 0;
}

.snum {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Playfair Display';
}

.slbl {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.sc {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.row.g-0 .col-6:last-child .sc {
  border-right: none;
}

/* Breadcrumb */
.bc-bar {
  background: #fcf7f0;
  padding: 12px 0;
  font-size: 0.8rem;
}

.bc-bar a {
  color: #7a5a3a;
  text-decoration: none;
}

.bc-cur {
  color: #b5651e;
  font-weight: 600;
}

/* sections */
.sec-pad {
  padding: 70px 0;
}

.sec-pad-sm {
  padding: 50px 0;
}

.bg-white {
  background: white;
}

.bg-inst {
  background: #fef8f0;
}

.slabel {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b5651e;
  font-weight: 600;
}

.stitle {
  font-size: 2.3rem;
  font-weight: 800;
  color: #1e2f3f;
  margin-bottom: 1rem;
}

.srule {
  width: 70px;
  height: 3px;
  background: #ffb347;
  margin: 18px 0 24px;
}

.blist {
  list-style: none;
  padding-left: 0;
}

.blist li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blist i {
  color: #b5651e;
  font-size: 1.1rem;
}

/* HOD */
.hod-wrap {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.hod-body {
  padding: 30px;
}

.hod-q {
  font-size: 1.2rem;
  font-style: italic;
  border-left: 4px solid #b5651e;
  padding-left: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}

.hod-stats {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.hs-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #b5651e;
}

/* Advantages Cards */
.adv-card {
  background: white;
  border-radius: 28px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
  border: 1px solid #f0e4d4;
  height: 100%;
}

.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
  border-color: #ffddb0;
}

.adv-icon {
  font-size: 2.8rem;
  color: #b5651e;
  margin-bottom: 1.2rem;
}

.adv-title {
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: 28px;
  padding: 1.8rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0e4d4;
  height: 100%;
}

.testi-quote {
  font-size: 1rem;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1rem;
  color: #2c3e44;
}

.testi-name {
  font-weight: 800;
  margin-bottom: 0;
}

.testi-program {
  font-size: 0.7rem;
  color: #b5651e;
}

.star-rating {
  color: #ffb347;
  margin-bottom: 12px;
}

/* Professional Recruiter Section with Company Images */
.recruiter-section {
  background: #0f2b3d;
  padding: 60px 0;
  overflow-x: hidden;
}

.recruiter-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.recruiter-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  transition: all 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.recruiter-item i {
  font-size: 1.2rem;
  color: #ffcd7e;
}

.recruiter-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* CTA Section - Elegant */
.cta-elegant {
  background: linear-gradient(135deg, #0a1c2f 0%, #123456 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.cta-elegant::before {
  content: "MBA";
  font-size: 8rem;
  font-weight: 800;
  opacity: 0.03;
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-family: 'Playfair Display';
  pointer-events: none;
}

.btn-cta-primary {
  background: #ffb347;
  color: #0a1c2f;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
}

.btn-cta-primary:hover {
  background: #ffcd7e;
  color: #0a1c2f;
  transform: scale(1.02);
}

.btn-cta-outline-light {
  border: 2px solid #ffb347;
  background: transparent;
  padding: 12px 30px;
  border-radius: 50px;
  color: #ffb347;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}

.btn-cta-outline-light:hover {
  background: #ffb347;
  color: #0a1c2f;
}

/* Footer - Professional Refined */
.footer {
  background: #07111f;
  color: rgba(255, 255, 255, 0.55);
  padding: 55px 0 20px;
}

.flogo-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.flogo-name span {
  color: #ffcd7e;
}

.fabout {
  font-size: 0.8rem;
  line-height: 1.65;
  margin: 15px 0 20px;
}

.fsoc-a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  transition: 0.2s;
  text-decoration: none;
}

.fsoc-a:hover {
  background: #b5651e;
  color: white;
}

.fctitle {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  border-bottom: 2px solid #ffcd7e;
  display: inline-block;
  padding-bottom: 6px;
}

.fcol ul {
  list-style: none;
  padding-left: 0;
}

.fcol ul li {
  margin-bottom: 8px;
}

.fcol ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}

.fcol ul li a::before {
  content: "›";
  color: #ffcd7e;
}

.fcol ul li a:hover {
  color: white;
  padding-left: 4px;
}

.fci {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.fci i {
  color: #ffcd7e;
  font-size: 0.75rem;
  margin-top: 3px;
  width: 16px;
}

.fci a,
.fci span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  text-decoration: none;
}

.fci a:hover {
  color: white;
}

.fbot {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  font-size: 0.7rem;
}

.fbot a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  margin-right: 20px;
}

.fbot a:hover {
  color: #ffcd7e;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .slide-h {
    font-size: 2rem;
  }

  .stitle {
    font-size: 1.8rem;
  }

  .stats-strip .snum {
    font-size: 1.5rem;
  }

  .sec-pad {
    padding: 50px 0;
  }

  .container-xl {
    padding-left: 20px;
    padding-right: 20px;
  }

  .recruiter-item {
    padding: 8px 20px;
    font-size: 0.75rem;
  }
}

.object-fit-cover {
  object-fit: cover;
}

.rounded-4 {
  border-radius: 1rem;
}
/* Sidebar Sticky - Professional Theme */
.sidebar-sticky {
    position: sticky;
    top: 100px;
    z-index: 98;
}

@media (max-width: 991.98px) {
    .sidebar-sticky {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }
}

/* Sidebar Card */
.sidebar-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f0e4d4;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.sidebar-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Card Header */
.sidebar-card-header {
    background: #0f2b3d;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #ffb347;
}

.sidebar-card-header i {
    font-size: 1rem;
    color: #ffcd7e;
}

.sidebar-card-header span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

/* Navigation List */
.sidebar-nav-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.sidebar-nav-item {
    border-bottom: 1px solid #f0e4d4;
}

.sidebar-nav-item:last-child {
    border-bottom: none;
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    text-decoration: none;
    color: #4a5568;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.sidebar-nav-link i:first-child {
    width: 20px;
    font-size: 0.85rem;
    color: #b5651e;
}

.sidebar-nav-link span {
    flex: 1;
}

.sidebar-nav-link .link-arrow {
    font-size: 0.7rem;
    color: #cbd5e0;
    opacity: 0;
    transition: all 0.25s ease;
}

.sidebar-nav-link:hover {
    background: #fef7ef;
    color: #b5651e;
    padding-left: 26px;
}

.sidebar-nav-link:hover .link-arrow {
    opacity: 1;
    color: #b5651e;
    transform: translateX(3px);
}

/* Brochure Card */
.brochure-card {
    text-align: center;
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
}

.brochure-icon {
    width: 60px;
    height: 60px;
    background: #b5651e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 12px;
}

.brochure-icon i {
    font-size: 1.6rem;
    color: white;
}

.brochure-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f2b3d;
    margin-bottom: 6px;
}

.brochure-text {
    font-size: 0.75rem;
    color: #7e8c9e;
    padding: 0 20px;
    margin-bottom: 16px;
}

.btn-brochure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #b5651e;
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.25s;
}

.btn-brochure:hover {
    background: #8e4b15;
    transform: translateY(-2px);
}