:root{
  --maroon:#7a0c1e;
  --maroon-dark:#5a0815;
  --maroon-light:#9c1830;
  --gold:#f5a623;
  --text-dark:#2b2b2b;
  --text-muted:#6b6b6b;
  --border-soft:#ececec;
}

*{ box-sizing:border-box; }

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  padding:0;
  font-family:'Inter', 'Segoe UI', Arial, sans-serif;
  color:var(--text-dark);
  overflow-x:hidden;
}

a{ text-decoration:none; }

img{ max-width:100%; height:auto; }

a:focus-visible,
button:focus-visible{
  outline:2px solid var(--maroon);
  outline-offset:2px;
}

@media (prefers-reduced-motion: reduce){
  *{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    scroll-behavior:auto !important;
  }
}

.wrap{
  width:100%;
  max-width:1600px;
  margin:0 auto;
}

.title-underline{
  width:40px;
  height:3px;
  background:var(--maroon);
  margin:10px auto 0;
  border-radius:2px;
}
.about-section .title-underline{
  width:50px;
  margin:0 0 18px;
}
.courses-section .title-underline,
.news-section .title-underline,
.partners-section .title-underline{
  margin:10px auto 30px;
}

.main-header{
  background:#fff;
  padding:14px 0;
  box-shadow:0 2px 14px rgba(0,0,0,.06);
  position:relative;
  z-index:20;
}
.main-header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  row-gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand > div{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
@media (min-width:992px){
  .logo-emblem{
    height:84px;
    width:auto;
  }
}
.logo-emblem{
  width:88px;
  height:auto;
  flex-shrink:0;
  filter:drop-shadow(0 3px 6px rgba(0,0,0,.18));
  image-rendering:-webkit-optimize-contrast;
  image-rendering:crisp-edges;
}
.brand-title{
  font-family:'Playfair Display', 'Georgia', serif;
  color:var(--maroon);
  font-weight:800;
  font-size:1.55rem;
  line-height:1.22;
  margin:0;
  letter-spacing:.3px;
  text-transform:uppercase;
}
.brand-subtitle{
  font-family:'Playfair Display', 'Georgia', serif;
  color:var(--gold);
  background:none;
  font-size:1rem;
  font-weight:700;
  font-style:italic;
  margin-top:4px;
  letter-spacing:.4px;
}

.partners{
  align-items:center;
  gap:22px;
}
.partner-divider{
  width:1px;
  height:46px;
  background:var(--border-soft);
}
.partner-logo{
  height:54px;
  width:auto;
  display:block;
  margin:0 auto 4px;
}
.partner-caption{
  font-size:.66rem;
  text-align:center;
  color:var(--text-muted);
  margin:0;
  line-height:1.25;
  white-space:normal;
  max-width:150px;
  font-weight:500;
}
.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
  margin-left:auto;
}

.btn-apply{
  background:var(--maroon);
  color:#fff;
  font-weight:600;
  font-size:.92rem;
  padding:.7rem 1.7rem;
  border-radius:6px;
  border:none;
  white-space:nowrap;
  display:inline-flex;
  align-items:center;
  transition:all .25s ease;
  box-shadow:0 4px 12px rgba(122,12,30,.25);
}
.btn-apply:hover{
  background:var(--maroon-dark);
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(122,12,30,.35);
}
.btn-apply i{ transition:transform .25s ease; }
.btn-apply:hover i{ transform:translateX(4px); }

.menu-toggler{
  width:46px;
  height:46px;
  border-radius:10px;
  border:none;
  background:linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  cursor:pointer;
  box-shadow:0 4px 12px rgba(122,12,30,.28);
  transition:box-shadow .25s ease, transform .2s ease;
}
.menu-toggler:hover{
  box-shadow:0 6px 16px rgba(122,12,30,.4);
}
.menu-toggler:active{
  transform:scale(.94);
}
.menu-toggler .bar{
  width:22px;
  height:2.5px;
  background:#fff;
  border-radius:2px;
  transition:transform .3s ease, opacity .2s ease, width .3s ease;
}
.menu-toggler .bar:nth-child(1){ width:22px; }
.menu-toggler .bar:nth-child(2){ width:16px; align-self:flex-end; margin-right:10px; }
.menu-toggler .bar:nth-child(3){ width:22px; }

.menu-toggler.active .bar{ width:22px; margin:0; }
.menu-toggler.active .bar:nth-child(1){
  transform:translateY(7.5px) rotate(45deg);
}
.menu-toggler.active .bar:nth-child(2){
  opacity:0;
  transform:scaleX(0);
}
.menu-toggler.active .bar:nth-child(3){
  transform:translateY(-7.5px) rotate(-45deg);
}

.dropdown-submenu{
  position:relative;
}
.dropdown-submenu > .dropdown-item::after{
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  float:right;
  margin-left:10px;
}
.dropdown-submenu > .dropdown-menu{
  top:0;
  left:100%;
  margin-top:-8px;
  display:none;
}
.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu.show > .dropdown-menu{
  display:block;
}
@media (max-width:1199.98px){
  .dropdown-submenu > .dropdown-menu{
    left:auto;
    right:100%;
  }
}

.nav-bar{
  background:#fff;
  box-shadow: -3px -2px 6px 0px #7a0c1e;
}
.nav-bar .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.nav-bar .navbar-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
}
.nav-bar .nav-link{
  position:relative;
  color:var(--text-dark) !important;
  font-weight:500;
  font-size:.93rem;
  padding:.9rem 1.15rem !important;
  transition:color .2s ease;
}
.nav-bar .nav-link::after{
  content:"";
  position:absolute;
  left:1.15rem;
  right:1.15rem;
  bottom:6px;
  height:2px;
  background:var(--maroon);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .25s ease;
}
.nav-bar .nav-link.active,
.nav-bar .nav-link:hover{ color:var(--maroon) !important; }
.nav-bar .nav-link.active::after,
.nav-bar .nav-link:hover::after{ transform:scaleX(1); }
.nav-bar .nav-link.active{ font-weight:700; }

.academic-dropdown-menu{
  border:none;
  border-radius:10px;
  box-shadow:0 12px 30px rgba(122,12,30,.18);
  padding:8px;
  margin-top:10px;
  min-width:200px;
}
.academic-dropdown-menu .dropdown-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:.6rem .8rem;
  border-radius:6px;
  font-weight:500;
  font-size:.9rem;
  color:var(--text-dark);
}
.academic-dropdown-menu .dropdown-item i{
  color:var(--maroon);
  width:16px;
  text-align:center;
}
.academic-dropdown-menu .dropdown-item:hover,
.academic-dropdown-menu .dropdown-item:focus{
  background:#fbecef;
  color:var(--maroon);
}
.nav-bar .nav-item.dropdown .dropdown-toggle::after{
  vertical-align:middle;
}

.mobile-submenu-toggle{
  display:flex !important;
  align-items:center;
}
.mobile-submenu-list .mobile-submenu-toggle i:first-child{
  width:16px;
  margin-right:8px;
  text-align:center;
  color:var(--maroon);
  font-size:.85rem;
}
.submenu-arrow{
  transition:transform .2s ease;
  font-size:.75rem;
}
.mobile-submenu-toggle[aria-expanded="true"] .submenu-arrow{
  transform:rotate(180deg);
}
.mobile-submenu-list{
  list-style:none;
  margin:0;
  padding:0 0 8px 34px;
}
.mobile-submenu-list li{ border-top:none !important; }
.mobile-submenu-list a{
  display:flex;
  align-items:center;
  padding:9px 6px;
  font-size:.88rem;
  color:var(--text-muted);
}
.mobile-submenu-list a i{
  width:16px;
  margin-right:8px;
  text-align:center;
  color:var(--maroon);
  font-size:.82rem;
}
.mobile-submenu-list a:hover{
  color:var(--maroon);
}
.mobile-submenu-list a:hover i{
  color:var(--maroon-dark);
}
.mobile-submenu-list.ps-3{
  padding-left:1rem;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
  margin-left:auto;
}

.login-dropdown-menu{
  border:none;
  border-radius:10px;
  box-shadow:0 12px 30px rgba(122,12,30,.18);
  padding:8px;
  margin-top:10px;
  min-width:180px;
}
.login-dropdown-menu .dropdown-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:.6rem .8rem;
  border-radius:6px;
  font-weight:500;
  font-size:.9rem;
  color:var(--text-dark);
}
.login-dropdown-menu .dropdown-item i{
  color:var(--maroon);
  width:16px;
  text-align:center;
}
.login-dropdown-menu .dropdown-item:hover,
.login-dropdown-menu .dropdown-item:focus{
  background:#fbecef;
  color:var(--maroon);
}
.btn-apply.dropdown-toggle::after{ display:none; }

.mobile-auth-actions .btn-apply-outline{
  background:#fff;
  color:var(--maroon);
  border:1.5px solid var(--maroon);
  font-weight:600;
  font-size:.92rem;
  padding:.7rem 1.7rem;
  border-radius:6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:all .25s ease;
}
.mobile-auth-actions .btn-apply-outline:hover{
  background:var(--maroon);
  color:#fff;
}

.mobile-offcanvas{ width:300px; background:#fff; }
.mobile-offcanvas .offcanvas-header{
  background:var(--maroon);
  color:#fff;
  padding:18px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.offcanvas-brand{ display:flex; align-items:center; gap:10px; flex:1 1 auto; min-width:0; }
.offcanvas-brand img{ width:38px; height:auto; }
.offcanvas-brand p{ font-family:'Poppins', sans-serif; font-weight:700; font-size:.95rem; margin:0; }
.offcanvas-brand span{ font-size:.68rem; opacity:.85; }
.btn-close-custom{
  background:rgba(255,255,255,.15);
  border:none; color:#fff;
  width:32px; height:32px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s ease; flex-shrink:0; margin-left:auto;
}
.btn-close-custom:hover{ background:rgba(255,255,255,.3); }
.mobile-offcanvas .offcanvas-body{ padding:20px; }
.mobile-nav-list{ list-style:none; padding:0; margin:0 0 8px 0; }
.mobile-nav-list li + li{ border-top:1px solid var(--border-soft); }
.mobile-nav-list a{
  display:flex; align-items:center; gap:12px;
  padding:13px 6px; color:var(--text-dark);
  font-weight:500; font-size:.95rem;
  transition:color .2s ease, padding-left .2s ease;
}
.mobile-nav-list a i{ width:18px; text-align:center; color:var(--maroon); font-size:.9rem; }
.mobile-nav-list a:hover, .mobile-nav-list a.active{
  color:var(--maroon); padding-left:12px; font-weight:700;
}
.mobile-contact{
  margin-top:20px; padding-top:16px;
  border-top:1px solid var(--border-soft);
  font-size:.82rem; color:var(--text-muted);
}
.mobile-contact p{ display:flex; align-items:flex-start; gap:8px; margin-bottom:10px; line-height:1.4; }
.mobile-contact p i{ color:var(--maroon); margin-top:3px; }
.mobile-contact a{ color:var(--text-muted); }
.mobile-contact a:hover{ color:var(--maroon); }
.mobile-contact .social-icons a{
  display:inline-flex; align-items:center; justify-content:center;
  width:32px; height:32px; margin-right:8px; border-radius:50%;
  background:#f5f0f1; color:var(--maroon); transition:all .2s ease;
}
.mobile-contact .social-icons a:hover{ background:var(--maroon); color:#fff; }

@media (max-width:991.98px){
  .nav-bar .wrap{
    justify-content:space-between;
    padding:6px 4vw;
  }
  .header-actions{
    width:100%;
    justify-content:space-between;
    margin-left:0;
  }
}

@media (max-width:575.98px){
  .header-actions{ gap:8px; }
  .btn-apply.dropdown-toggle{
    padding:.55rem 1rem;
    font-size:.85rem;
  }
  .btn-apply.dropdown-toggle i{ margin-left:6px !important; }
  .dropdown-menu-end[data-bs-popper]{
      right: -87px;
    left: auto;
}
}

.letterhead-wrapper {
  background: #ffffff;
  max-width: 1200px;
  margin: auto;
  padding: 25px 30px;
}
.logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-col img {
  max-width: 160px;
  height: auto;
}
.text-col {
  text-align: center;
}
.line-top {
  color: #f77324;
  font-weight: 600;
  font-size: 1.20rem;
  letter-spacing: 0.3px;
}
.line-university {
  color:#f77324;
  font-weight: 800;
  font-size: 1.50rem;
  line-height: 1.15;
}
.line-subtitle {
  color: #db3a54d9;
  font-weight: 600;
  font-size: 1.20rem;
}
.line-collab {
  color: #db3a54d9;
  font-weight: 700;
  font-size: 1.20rem;
  line-height: 1.35;
}
.line-address {
  color: #f77324;
  font-weight: 700;
  font-size: 1.20rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .line-university { font-size: 1.3rem; }
  .line-collab, .line-address { font-size: 0.95rem; }
  .line-subtitle { font-size: 1rem; }
  .logo-col img { max-width: 100px; }
}

/* hero banner start */

.hero-wrapper{
  position:relative;
  overflow:hidden;
  background:#fff;
}

/* ===== SLIDER — FULL IMAGE, NO CROP ===== */
.hero-bg{
  position:relative;
  width:100%;
  overflow:hidden;
  min-height:560px;
  max-height:820px;
  display:flex;
  align-items:center;
  background:#111; /* fallback fill color behind uncropped images */
}

.hero-slides{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1.2s ease-in-out;
  overflow:hidden;
}

.hero-slide.active{
  opacity:1;
}

/* blurred, zoomed copy of the same image fills the empty space
   behind the full uncropped image so there's no plain letterbox bar */
.hero-slide-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  filter:blur(15px) brightness(0.55);
  transform:scale(1.15); /* hides blur edge artifacts */
}

/* the actual full, uncropped, HD image */
.hero-slide-img{
  position:relative;
  z-index:1;
  width:100%;
  height:100%;
  object-fit:contain;   /* shows the ENTIRE image, nothing cropped */
  object-position:center;
}

.hero-slide::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:rgba(0,0,0,0.18); /* light dim so text stays readable */
  pointer-events:none;
}

.hero-dots{
  position:absolute;
  left:50%;
  bottom:90px;
  transform:translateX(-50%);
  z-index:4;
  display:flex;
  gap:8px;
}

.hero-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:rgba(255,255,255,0.5);
  border:1px solid rgba(255,255,255,0.8);
  cursor:pointer;
  padding:0;
  transition:all .25s ease;
}

.hero-dot.active{
  background:#fff;
  width:22px;
  border-radius:5px;
}

.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:44px;
  height:44px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,0.85);
  color:var(--maroon);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
  cursor:pointer;
  transition:all .2s ease;
}
.hero-arrow:hover{ background:#fff; }
.hero-arrow.prev{ left:22px; }
.hero-arrow.next{ right:22px; }

/* ===== END SLIDER ===== */

.hero-content{
  position:relative;
  z-index:3;
  padding:70px 15px 130px 15px;
  width:100%;
}

.hero-content h1{
  font-weight:700;
  font-size:2.9rem;
  line-height:1.2;
  color:#fff;
  margin-bottom:0;
  text-shadow:0 2px 12px rgba(0,0,0,0.45);
}

.hero-content h1 .accent{
  color:#f2c2a4;
  font-weight:800;
}

.hero-content p{
  max-width:440px;
  color:#eee;
  margin:22px 0 30px 0;
  font-size:1.02rem;
  text-shadow:0 1px 8px rgba(0,0,0,0.4);
}

.btn-maroon{
  background-color:var(--maroon);
  border:1px solid var(--maroon);
  color:#fff;
  padding:12px 26px;
  font-weight:500;
  border-radius:6px;
  transition:all .25s ease;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.btn-maroon:hover{
  background-color:var(--maroon-dark);
  color:#fff;
}

.btn-outline-maroon{
  background-color:#fff;
  border:1px solid var(--maroon);
  color:var(--maroon);
  padding:12px 26px;
  font-weight:500;
  border-radius:6px;
  transition:all .25s ease;
  display:inline-flex;
  align-items:center;
}
.btn-outline-maroon:hover{
  background-color:var(--maroon);
  color:#fff;
}

.hero-swoop{
  position:absolute;
  left:0;
  right:0;
  bottom:-23px;
  height:90px;
  z-index:3;
  width:100%;
}

.stats-bar{
  position:relative;
  z-index:3;
  margin-top:-70px;
  background:#fff;
  border-radius:14px;
  box-shadow:0 10px 35px rgba(0,0,0,0.12);
  padding:26px 20px;
}

.stat-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
}

.stat-icon{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--maroon);
  flex-shrink:0;
}
.stat-icon svg{ width:32px; height:32px; }

.stat-label{
  font-size:0.85rem;
  color:#555;
  margin-bottom:2px;
}

.stat-value{
  font-size:1.15rem;
  font-weight:700;
  color:var(--maroon);
}

.stat-divider{
  width:1px;
  background:#e2e2e2;
  align-self:stretch;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px){
  .hero-bg{ height:80vh; min-height:480px; max-height:700px; }
  .hero-content{ padding:40px 15px 100px 15px; text-align:center; }
  .hero-content p{ max-width:100%; margin-left:auto; margin-right:auto; }
  .hero-content h1{ font-size:2.2rem; }
  .hero-dots{ bottom:60px; }
}

@media (max-width: 767px){
  .stat-divider{ display:none; }
  .stat-item{ margin-bottom:14px; justify-content:flex-start; }
  .stats-bar{ margin-top:-40px; }
  .hero-bg{ height:60vh; min-height:400px; max-height:560px; }
  .hero-arrow{ width:36px; height:36px; font-size:0.95rem; }
  .hero-arrow.prev{ left:12px; }
  .hero-arrow.next{ right:12px; }
}

@media (max-width: 400px){
  .hero-bg{ min-height:340px; }
  .hero-content h1{ font-size:1.7rem; }
  .hero-content p{ font-size:0.92rem; }
}
/* hero banner end */

.MOFPI{
  background-color: #fff;
  box-shadow:0 10px 35px rgba(0,0,0,0.12);
  padding: 26px 20px;
  width: 35%;
  border-radius: 14px;
  margin: 20px auto;
}
h5{
  font-weight: bold;
  color: var(--maroon);
}
.why-section{
  padding: 60px 20px;
}
.why-title{
  font-weight: 700;
  font-size: 1.8rem;
  color: #1a1a1a;
}
.why-title .highlight{
  color: var(--maroon);
}
.feature-card{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 28px 22px;
  height: 100%;
  transition: box-shadow .2s ease, transform .2s ease;
}
.feature-card:hover{
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.feature-icon{
  width: 60px;
  height: 60px;
  background: var(--maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.feature-heading{
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.heading-underline{
  width: 26px;
  height: 2px;
  background: var(--maroon);
  margin-bottom: 10px;
}
.feature-text{
  color: #6b6b6b;
  font-size: 0.92rem;
  margin-bottom: 0;
}

.about-section{
  padding: 60px 20px;
}
.about-img{
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 8px;
}
.eyebrow{
  font-weight: 600;
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 0;
}
.about-title{
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--maroon);
  margin-bottom: 14px;
}
.about-text{
  color: #444;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.badge-card{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 14px 7px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}
.badge-icon{
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--maroon);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.badge-label{
  font-weight: 600;
  font-size: 0.75rem;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 0;
}
.btn-maroon.about-cta,
.about-section .btn-maroon{
  padding: 12px 26px;
  border-radius: 6px;
}

@media (max-width: 400px){
  .badge-label{ font-size:0.76rem; }
  .badge-icon{ width:36px; height:36px; font-size:1rem; }
  .badge-card{ padding:10px 12px; gap:8px; }
}

.site-footer{
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: #f2e6e6;
  padding: 44px 0 0;
}
.footer-logo-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  flex-shrink: 0;
}
.footer-logo{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 50%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.footer-brand-name{
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 2px;
  margin-top: 15px;
}
.footer-brand-sub{
  color: #d9b9ba;
  font-size: 0.85rem;
  margin-bottom: 0;
}
.social-icons{
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.social-icons a{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background .2s ease;
}
.social-icons a:hover{
  background: rgba(255,255,255,0.28);
  color: #fff;
}
.footer-heading{
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li{
  margin-bottom: 12px;
}
.footer-links a{
  color: #e6c9ca;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s ease;
}
.footer-links a:hover{
  color: #fff;
}
.contact-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: #e6c9ca;
  line-height: 1.5;
}
.contact-list i{
  color: #fff;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-list a{
  color: #e6c9ca;
  text-decoration: none;
}
.contact-list a:hover{
  color: #fff;
}
.footer-map{
  width: 100%;
  height: 190px;
  border-radius: 8px;
  overflow: hidden;
  border: none;
}
.footer-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
}
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 36px;
  padding: 18px 0;
}
.footer-copy{
  color: #e6c9ca;
  font-size: 0.85rem;
  margin: 0;
}
.footer-bottom-links{
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  font-size: 0.85rem;
}
.footer-bottom-links a{
  color: #e6c9ca;
  text-decoration: none;
}
.footer-bottom-links a:hover{
  color: #fff;
}
.footer-bottom-links .divider{
  color: rgba(255,255,255,0.3);
}

@media (max-width: 767.98px){
  .footer-bottom-links{
    justify-content: flex-start;
    margin-top: 10px;
  }
}

.scroll-top-btn{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--maroon);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(122,12,30,.35);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .2s ease;
}
.scroll-top-btn.visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover{
  background: var(--maroon-dark);
  box-shadow: 0 8px 22px rgba(122,12,30,.45);
}
.scroll-top-btn:active{
  transform: scale(.94);
}

@media (max-width: 575.98px){
  .scroll-top-btn{
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce){
  .scroll-top-btn{
    transition: opacity .01ms, visibility .01ms;
  }
}




/* ---------- main area ---------- */
.login-main{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:44px 16px;
}

.login-shell{
  width:100%;
  max-width:420px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 18px 45px rgba(122,12,30,.12);
  overflow:hidden;
  display:flex;
}

/* form panel */
.login-form-side{
  flex:1;
  padding:40px 34px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.form-eyebrow{
  font-size:.72rem;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:700;
  margin-bottom:.4rem;
}

.form-title{
  font-family:'Playfair Display', serif;
  font-weight:800;
  font-size:1.9rem;
  color:var(--maroon);
  margin-bottom:.3rem;
}

.form-desc{
  color:var(--text-muted);
  font-size:.9rem;
  margin-bottom:1.8rem;
}

.role-toggle{
  display:flex;
  border:1.5px solid var(--border-soft);
  border-radius:8px;
  padding:4px;
  margin-bottom:1.6rem;
  background:#faf9f7;
}
.role-toggle input{ display:none; }
.role-toggle label{
  flex:1;
  text-align:center;
  padding:.5rem .4rem;
  font-size:.82rem;
  font-weight:600;
  color:var(--text-muted);
  border-radius:6px;
  cursor:pointer;
  transition:background .15s ease, color .15s ease;
  margin:0;
}
.role-toggle input:checked + label{
  background:var(--maroon);
  color:#fff;
}

.field-label{
  font-size:.8rem;
  font-weight:600;
  color:var(--text-dark);
  margin-bottom:.35rem;
  display:block;
}

.input-shell{
  position:relative;
  margin-bottom:1.1rem;
}
.input-shell i{
  position:absolute;
  left:14px; top:50%;
  transform:translateY(-50%);
  color:var(--text-muted);
  font-size:.9rem;
}
.input-shell #eyeIcon{
  position:absolute;
  left:-14px; top:50%;
  transform:translateY(-50%);
  color:var(--text-muted);
  font-size:.9rem;
}
.field-control{
  width:100%;
  padding:.7rem .9rem .7rem 2.5rem;
  border:1.5px solid var(--border-soft);
  border-radius:8px;
  background:#fff;
  font-size:.94rem;
  color:var(--text-dark);
  transition:border-color .15s ease, box-shadow .15s ease;
}
.field-control:focus{
  outline:none;
  border-color:var(--maroon);
  box-shadow:0 0 0 3px rgba(122,12,30,.12);
}
.toggle-eye{
  position:absolute;
  right:14px; top:50%;
  transform:translateY(-50%);
  background:none; border:none;
  color:var(--text-muted);
  cursor:pointer;
  font-size:.9rem;
  padding:0;
}

.util-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:1.4rem;
  font-size:.85rem;
}
.form-check-input:checked{
  background-color:var(--maroon);
  border-color:var(--maroon);
}
.form-check-input:focus{
  box-shadow:0 0 0 3px rgba(122,12,30,.15);
}
.link-maroon{
  color:var(--maroon);
  font-weight:600;
}
.link-maroon:hover{ color:var(--maroon-dark); text-decoration:underline; }

.btn-login{
  width:100%;
  background:var(--maroon);
  color:#fff;
  border:none;
  padding:.78rem 1rem;
  border-radius:8px;
  font-weight:600;
  font-size:.96rem;
  transition:background .2s ease, transform .1s ease;
  box-shadow:0 4px 12px rgba(122,12,30,.25);
}
.btn-login:hover{ background:var(--maroon-dark); color:#fff; }
.btn-login:active{ transform:translateY(1px); }

.form-footer-note{
  text-align:center;
  font-size:.84rem;
  color:var(--text-muted);
  margin-top:1.6rem;
}
a{
    text-decoration: none;
}
/* ---------- responsive ---------- */
@media (max-width: 480px){
  .login-form-side{ padding:30px 22px; }
  .mini-header .wrap{ flex-wrap:wrap; }
  .mini-header .back-link{ margin-left:0; order:3; width:100%; margin-top:8px; }
}

@media (max-width: 400px){
  .form-title{ font-size:1.55rem; }
}

a{ text-decoration:none; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible{
  outline:2px solid var(--maroon);
  outline-offset:2px;
}

/* ---------- main area ---------- */
.register-main{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:44px 16px;
}

.register-shell{
  width:100%;
  max-width:640px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 18px 45px rgba(122,12,30,.12);
  overflow:hidden;
  display:flex;
}

/* form panel */
.register-form-side{
  flex:1;
  padding:40px 44px;
}

.form-eyebrow{
  font-size:.72rem;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:700;
  margin-bottom:.4rem;
}

.form-title{
  font-family:'Playfair Display', serif;
  font-weight:800;
  font-size:1.9rem;
  color:var(--maroon);
  margin-bottom:.3rem;
}

.form-desc{
  color:var(--text-muted);
  font-size:.9rem;
  margin-bottom:1.8rem;
}

.field-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 14px;
}

.field-label{
  font-size:.8rem;
  font-weight:600;
  color:var(--text-dark);
  margin-bottom:.35rem;
  display:block;
}

.input-shell{
  position:relative;
  margin-bottom:1.1rem;
}
.input-shell i{
  position:absolute;
  left:14px; top:50%;
  transform:translateY(-50%);
  color:var(--text-muted);
  font-size:.9rem;
}
.field-control{
  width:100%;
  padding:.7rem .9rem .7rem 2.5rem;
  border:1.5px solid var(--border-soft);
  border-radius:8px;
  background:#fff;
  font-size:.94rem;
  color:var(--text-dark);
  transition:border-color .15s ease, box-shadow .15s ease;
  appearance:none;
}
.field-control:focus{
  outline:none;
  border-color:var(--maroon);
  box-shadow:0 0 0 3px rgba(122,12,30,.12);
}
select.field-control{
  padding-right:2.4rem;
  background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat:no-repeat;
  background-position:right 12px center;
  background-size:16px;
}
.toggle-eye{
  position:absolute;
  right:14px; top:50%;
  transform:translateY(-50%);
  background:none; border:none;
  color:var(--text-muted);
  cursor:pointer;
  font-size:.9rem;
  padding:0;
}

.field-hint{
  font-size:.76rem;
  color:var(--text-muted);
  margin:-.7rem 0 1.1rem 0;
}

.terms-row{
  display:flex;
  align-items:flex-start;
  gap:.55rem;
  margin-bottom:1.5rem;
  font-size:.85rem;
  color:var(--text-muted);
}
.terms-row label{ margin:0; line-height:1.45; }
.form-check-input:checked{
  background-color:var(--maroon);
  border-color:var(--maroon);
}
.form-check-input:focus{
  box-shadow:0 0 0 3px rgba(122,12,30,.15);
}

.link-maroon{
  color:var(--maroon);
  font-weight:600;
}
.link-maroon:hover{ color:var(--maroon-dark); text-decoration:underline; }

.btn-register{
  width:100%;
  background:var(--maroon);
  color:#fff;
  border:none;
  padding:.78rem 1rem;
  border-radius:8px;
  font-weight:600;
  font-size:.96rem;
  transition:background .2s ease, transform .1s ease;
  box-shadow:0 4px 12px rgba(122,12,30,.25);
}
.btn-register:hover{ background:var(--maroon-dark); color:#fff; }
.btn-register:active{ transform:translateY(1px); }

.form-footer-note{
  text-align:center;
  font-size:.84rem;
  color:var(--text-muted);
  margin-top:1.6rem;
}

/* ---------- responsive ---------- */
@media (max-width: 480px){
  .register-form-side{ padding:30px 22px; }
  .field-row{ grid-template-columns:1fr; }
}

@media (max-width: 400px){
  .form-title{ font-size:1.55rem; }
}

.important-links-section {
    padding: 30px 0;
}

.important-link-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #eadfe0;
    border-radius: 12px;
    padding: 16px 18px;
    height: 100%;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(122, 12, 30, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.important-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(122, 12, 30, 0.14);
    border-color: #7a0c1e;
}

.important-link-card.static {
    cursor: default;
}

.important-link-card.static:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(122, 12, 30, 0.06);
    border-color: #eadfe0;
}

.important-link-card .link-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #7a0c1e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.important-link-card .link-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.important-link-card .link-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #2b2b2b;
    font-size: 0.95rem;
}

.important-link-card .link-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #7a0c1e;
    margin-top: 2px;
}