/* === CENTURION UNIVERSITY DESIGN SYSTEM v1.0 === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;background:#fff;color:#333333;font-size:16px;line-height:1.6;letter-spacing:0.5px}
a{text-decoration:none;color:#C41E3A;transition:all 0.3s ease}
a:hover{color:#A01A31}
a:focus-visible{outline:2px solid #C41E3A;outline-offset:2px}
ul{list-style:none}
img{max-width:100%;height:auto}
button{cursor:pointer;font-family:inherit}
input,select,textarea{font-family:inherit}

.container{max-width:1200px;margin:0 auto;padding:0 40px}
@media(max-width:768px){.container{padding:0 20px}}

:focus-visible{outline:2px solid #C41E3A;outline-offset:2px;border-radius:3px}

/* === GRID ROW / COLUMN SYSTEM === */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.col-lg-8, .col-lg-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

/* === TOP BANNER === */
.top-banner{background:#C41E3A;color:#fff;padding:10px 40px;font-size:0.9rem;font-weight:600;position:relative;z-index:1001;overflow:hidden}
.top-banner .marquee-wrap{overflow:hidden;white-space:nowrap}
.top-banner .marquee-text{display:inline-block;animation:marquee 25s linear infinite;padding-left:100%}
@keyframes marquee{
  0%{transform:translateX(0)}
  100%{transform:translateX(-100%)}
}
.top-banner-close{position:absolute;left:15px;top:50%;transform:translateY(-50%);background:none;border:none;color:#fff;font-size:1.2rem;opacity:0.8;transition:opacity 0.3s;z-index:2}
.top-banner-close:hover{opacity:1}

/* === HEADER / NAVBAR === */
/* === HEADER / NAVBAR === */
.header {
  background: #ffffff;
  padding: 0;
  z-index: 1000;
  position: relative;
}
.header-top-row {
  background: #ffffff;
  padding: 12px 0;
}
.header-nav-row {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-nav-row .header-inner {
  justify-content: center;
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.logo {
  height: 60px;
}
.header-right-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav>li {
  position: relative;
  margin: 0 20px;
}
.nav>li>a {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 0;
  display: block;
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.nav>li>a:hover {
  color: #D4A547;
}
.nav>li>a:focus-visible {
  outline: 2px solid #D4A547;
  outline-offset: 4px;
}
.nav .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: -15px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 230px;
  padding: 10px 0;
  z-index: 9999;
}
.nav .dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: #333333;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
  text-align: left;
}
.nav .dropdown-content a:hover {
  color: #C41E3A;
  background: #f9fbff;
}
.nav li:hover .dropdown-content {
  display: block;
}

/* === HAMBURGER === */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #102a43;
  cursor: pointer;
  padding: 5px;
  transition: opacity 0.2s;
}
.hamburger:hover {
  opacity: 0.8;
}

/* === RESPONSIVE MENUS === */
@media (max-width: 991px) {
  .hamburger {
    display: block;
  }
  .header-nav-row {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #102a43; /* Solid navy background on mobile */
    padding: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid #D4A547;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .header-nav-row .header-inner {
    padding: 0;
  }
  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    padding: 20px;
    box-sizing: border-box;
  }
  .nav.open {
    display: flex;
  }
  .nav>li {
    margin: 10px 0;
    width: 100%;
  }
  .nav>li>a {
    padding: 8px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav .dropdown-content {
    position: static;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border: none;
    border-left: 2px solid #D4A547;
    margin-top: 5px;
    padding: 5px 0;
    width: 100%;
  }
  .nav .dropdown-content a {
    color: rgba(255, 255, 255, 0.85);
  }
  .nav .dropdown-content a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
  }
}

.apply-btn{background:linear-gradient(135deg, #ff7e40 0%, #f26522 100%)!important;color:#fff!important;padding:10px 30px!important;border-radius:50px!important;font-weight:700!important;font-size:0.9rem!important;transition:all 0.3s ease!important;border:none!important;box-shadow:0 4px 12px rgba(242, 101, 34, 0.25)!important}
.apply-btn:hover{background:linear-gradient(135deg, #f26522 0%, #d94f18 100%)!important;transform:translateY(-2px)!important;box-shadow:0 6px 18px rgba(242, 101, 34, 0.4)!important}

/* === HERO SECTION === */
.hero{background:linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/campus_hero_background.png') no-repeat center center / cover;min-height:600px;display:flex;align-items:center;padding:60px 40px;position:relative;overflow:hidden}
.hero-grid{display:grid;grid-template-columns:6fr 4fr;gap:40px;align-items:center;width:100%;max-width:1200px;margin:0 auto}
.hero-left{color:#fff}
.hero-left h1{font-size:3.8rem;font-weight:800;line-height:1.2;letter-spacing:-0.02em;margin-bottom:25px;color:#fff;text-shadow:0 2px 10px rgba(0,0,0,0.5)}
.hero-left h1 span{color:#D4A547}
.hero-left p{font-size:1.1rem;margin-bottom:30px;opacity:0.9;line-height:1.8}
.hero-cta{display:inline-block;background:linear-gradient(135deg, #ff7e40 0%, #f26522 100%);color:#fff;padding:14px 45px;border-radius:50px;font-weight:700;font-size:1.05rem;transition:all 0.3s ease;border:none;box-shadow:0 8px 24px rgba(242, 101, 34, 0.3)}
.hero-cta:hover{background:linear-gradient(135deg, #f26522 0%, #d94f18 100%);transform:translateY(-3px);box-shadow:0 12px 30px rgba(242, 101, 34, 0.45);color:#fff}
.hero-right{position:relative;display:flex;justify-content:center;align-items:center}

/* New Hero Subtitle Styles */
.hero-subtitle{margin-bottom:30px;text-shadow:0 2px 8px rgba(0,0,0,0.5)}
.subtitle-label{font-size:1.5rem;font-weight:500;color:#D4A547;margin:0 0 5px 0;text-transform:uppercase;letter-spacing:2px}
.subtitle-courses{font-size:2.6rem;font-weight:800;color:#fff;margin:0;line-height:1.1}

/* Discount Badge */
.discount-badge-img{width:160px;height:160px;animation:bounce 2s infinite}

/* === ACCREDITATION BADGES (legacy, kept for reference) === */

/* === LEARNING ADVANTAGES === */
.advantages-section{background:#F9F9F9;padding:80px 40px}
.section-title{text-align:center;font-size:2.2rem;font-weight:700;color:#333;margin-bottom:40px;line-height:1.3}
.advantages-scroll{display:flex;gap:30px;overflow-x:auto;padding-bottom:15px;scroll-snap-type:x mandatory}
.advantages-scroll::-webkit-scrollbar{height:6px}
.advantages-scroll::-webkit-scrollbar-thumb{background:#ddd;border-radius:3px}
.adv-card{flex:0 0 300px;background:#fff;border-radius:10px;padding:30px;scroll-snap-align:start;transition:all 0.3s ease}
.adv-card:hover{transform:translateY(-5px);box-shadow:0 10px 30px rgba(0,0,0,0.15)}
.adv-card img{width:60px;height:60px;margin-bottom:15px;display:block}
.adv-card h4{font-size:1.1rem;font-weight:700;color:#333;margin-bottom:10px}
.adv-card p{font-size:0.9rem;color:#666;line-height:1.6;margin-bottom:15px}
.adv-card .bar{width:50px;height:4px;background:#C41E3A;border-radius:2px}

/* === COURSES SECTION === */
.courses-section{background:linear-gradient(135deg,#1A3A5C,#2D5A8C);padding:80px 40px}
.courses-section .section-title{color:#fff}
.courses-section .section-subtitle{text-align:center;color:rgba(255,255,255,0.8);font-size:1rem;margin-bottom:50px;max-width:700px;margin-left:auto;margin-right:auto}
.course-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:30px}
.course-card{background:rgba(255,255,255,0.05);border:2px solid rgba(255,255,255,0.1);border-radius:10px;padding:30px;text-align:center;color:#fff;min-height:350px;display:flex;flex-direction:column;justify-content:center;transition:all 0.3s ease}
.course-card:hover{background:rgba(255,255,255,0.1);border-color:#B8D929;transform:translateY(-5px);box-shadow:0 10px 30px rgba(0,0,0,0.2)}
.course-card .code{color:#D4A547;font-size:0.9rem;font-weight:600;margin-bottom:10px}
.course-card h3{font-size:1.3rem;font-weight:700;margin-bottom:15px}
.course-card .duration{font-size:0.9rem;color:rgba(255,255,255,0.7);margin-bottom:5px}
.course-card .fees{font-size:1.1rem;font-weight:700;color:#fff;margin-bottom:20px}
.course-card .btn-outline{display:inline-block;padding:8px 25px;border:2px solid #fff;border-radius:50px;color:#fff;font-weight:600;font-size:0.9rem;transition:all 0.3s ease}
.course-card .btn-outline:hover{background:#fff;color:#1A3A5C}

/* === WHY CHOOSE US TABS === */
.why-section{background:#fff;padding:80px 40px}
.tabs{display:flex;justify-content:center;gap:10px;margin-bottom:40px;flex-wrap:wrap}
.tab-btn{padding:10px 25px;border:2px solid #ddd;background:#fff;border-radius:50px;cursor:pointer;font-weight:600;font-size:0.95rem;transition:all 0.3s ease;color:#333}
.tab-btn:hover{border-color:#C41E3A;color:#C41E3A}
.tab-btn.active{background:#C41E3A;color:#fff;border-color:#C41E3A}
.tab-btn:focus-visible{outline:2px solid #C41E3A;outline-offset:2px}
.tab-content{display:none}
.tab-content.active{display:block}
.tab-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center}
.tab-grid img{width:100%;max-width:500px;border-radius:10px}
.tab-grid h3{font-size:1.5rem;color:#333;margin-bottom:15px}
.tab-grid ul li{padding-left:25px;position:relative;margin-bottom:12px;color:#666;font-size:0.9rem;line-height:1.6}
.tab-grid ul li::before{content:'\2713';position:absolute;left:0;color:#28A745;font-weight:700}

/* === INSTITUTES === */
.institutes-section{background:#F9F9F9;padding:60px 40px}
.institutes-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.institute-card{text-align:center;padding:25px 15px;border-radius:10px;background:#fff;transition:all 0.3s ease}
.institute-card:hover{transform:translateY(-3px);box-shadow:0 5px 15px rgba(0,0,0,0.1)}
.institute-card img{height:50px;margin-bottom:12px}
.institute-card span{display:block;font-size:0.9rem;color:#333;font-weight:500}

/* === FOOTER === */
footer{background:#1A3A5C;color:#fff;padding:60px 40px}
.footer-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:30px;max-width:1200px;margin:0 auto}
.footer-col h4{font-size:1.1rem;font-weight:700;margin-bottom:20px;color:#fff}
.footer-col a{display:block;color:rgba(255,255,255,0.7);font-size:0.9rem;margin-bottom:8px;transition:all 0.3s ease;padding-left:15px;position:relative}
.footer-col a::before{content:'\25B8';position:absolute;left:0;color:#D4A547}
.footer-col a:hover{color:#B8D929}
.footer-col p{font-size:0.9rem;color:rgba(255,255,255,0.7);margin-bottom:8px}
.footer-col p a{color:rgba(255,255,255,0.7);display:inline;padding-left:0}
.footer-col p a::before{display:none}
.footer-col p a:hover{color:#B8D929}
.social-icons{display:flex;gap:10px;margin-top:15px}
.social-icons a{width:40px;height:40px;background:rgba(255,255,255,0.1);border-radius:50%;display:flex;align-items:center;justify-content:center;transition:all 0.3s ease;font-size:0}
.social-icons a::before{content:'';display:block;width:20px;height:20px;background-size:contain;background-repeat:no-repeat;background-position:center}
.social-icons a[aria-label="Facebook"]::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E")}
.social-icons a[aria-label="Instagram"]::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E")}
.social-icons a[aria-label="Google"]::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z'/%3E%3C/svg%3E")}
.social-icons a:hover{background:#B8D929}
.footer-bottom{text-align:center;padding-top:30px;margin-top:30px;border-top:1px solid rgba(255,255,255,0.1);font-size:0.85rem;color:rgba(255,255,255,0.5);max-width:1200px;margin-left:auto;margin-right:auto}
.footer-bottom a{color:rgba(255,255,255,0.7);text-decoration:underline}
.footer-bottom a:hover{color:#B8D929}

/* === FLOATING BUTTONS === */
.floating-btns{position:fixed;bottom:20px;right:20px;z-index:999;display:flex;flex-direction:column;gap:10px}
.float-btn{width:50px;height:50px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.5rem;box-shadow:0 4px 10px rgba(0,0,0,0.2);transition:all 0.3s ease;border:none}
.float-btn.call{background:#28A745}
.float-btn.whatsapp{background:#25d366}
.float-btn:hover{transform:scale(1.1)}

/* === CONTENT SECTION === */
.content-section{padding:60px 0}
.content-section h2{font-size:1.8rem;color:#333;margin-bottom:20px;font-weight:700}
.content-section h3{font-size:1.3rem;color:#333;margin-bottom:15px;margin-top:30px;font-weight:700}
.content-section p{color:#666;margin-bottom:15px;line-height:1.8;font-size:0.95rem}
.content-section ul{margin-bottom:20px}
.content-section ul li{padding-left:25px;position:relative;margin-bottom:10px;color:#666;font-size:0.9rem}
.content-section ul li::before{content:'\2713';position:absolute;left:0;color:#28A745;font-weight:700}

/* === CONTACT === */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px}
.contact-info h3{font-size:1.3rem;color:#333;margin-bottom:15px;margin-top:25px;font-weight:700}
.contact-info h3:first-child{margin-top:0}
.contact-info p{color:#666;margin-bottom:8px;line-height:1.6;font-size:0.95rem}
.contact-info a{color:#C41E3A}
.contact-form h3{font-size:1.5rem;color:#333;margin-bottom:20px}
.contact-form input,.contact-form textarea{width:100%;padding:10px 12px;margin-bottom:15px;border:1px solid #ddd;border-radius:6px;font-size:0.9rem;transition:all 0.3s;background:#fff}
.contact-form input:focus,.contact-form textarea:focus{border-color:#C41E3A;box-shadow:0 0 0 3px rgba(196,30,58,0.1);outline:none}
.contact-form textarea{height:150px;resize:vertical}
.contact-form button{background:#C41E3A;color:#fff;padding:12px 40px;border:none;border-radius:50px;font-weight:600;font-size:1rem;transition:all 0.3s}
.contact-form button:hover{background:#A01A31;transform:translateY(-2px)}

/* === PAGE HEADER (inner pages banner) === */
.page-header {
  background: linear-gradient(135deg, #102a43 0%, #1d3557 100%);
  padding: 50px 0;
  text-align: center;
  border-bottom: 3px solid #D4A547;
}
.page-header h1 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.page-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-top: 10px;
  margin-bottom: 0;
}

/* === PROGRAMME DETAIL === */
.programme-header{background:linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.65)),url('../img/home/BBA.jpg') no-repeat center center / cover;color:#fff;padding:120px 0;border-bottom:3px solid #D4A547;min-height:400px;display:flex;align-items:center}
.programme-header .container{display:grid;grid-template-columns:1fr;gap:40px;align-items:center}
.programme-header h1{font-size:2.2rem;font-weight:700}
.programme-header .meta{display:flex;gap:20px;margin:20px 0;flex-wrap:wrap}
.programme-header .meta-item{background:rgba(255,255,255,0.1);padding:10px 20px;border-radius:6px;text-align:center}
.programme-header .meta-item .label{font-size:0.85rem;opacity:0.8}
.programme-header .meta-item .value{font-size:1.3rem;font-weight:700}


/* === CERT CARDS === */
.cert-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:25px}
.cert-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(16, 42, 67, 0.12);
  border-color: #D4A547;
}
.cert-card img{height:80px;margin-bottom:15px}
.cert-card h4{font-size:1.1rem;color:#102a43;margin-bottom:10px;font-weight:700}
.cert-card p{font-size:0.9rem;color:#666;line-height:1.6}

/* === TABLES === */
.table-wrap{overflow-x:auto;margin:30px 0;border-radius:8px}
table{width:100%;border-collapse:collapse;border-radius:8px;overflow:hidden;box-shadow:0 4px 15px rgba(0,0,0,0.05)}
thead{background:#102a43;color:#fff}
th {
  font-weight:700;
  text-transform:uppercase;
  font-size:0.85rem;
  letter-spacing:0.5px;
  border-bottom:2px solid #D4A547;
}
th,td{padding:14px 18px;text-align:left;border-bottom:1px solid #eee;font-size:0.9rem}
tbody tr:hover{background:#F9FBFF}

/* === ACCORDION === */
.accordion{margin:20px 0}
.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.accordion-item:hover {
  border-color: #102a43;
  box-shadow: 0 4px 12px rgba(16, 42, 67, 0.08);
}
.accordion-header {
  background: #ffffff;
  padding: 16px 24px;
  cursor: pointer;
  font-weight: 700;
  color: #102a43;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s;
}
.accordion-header:hover {
  background-color: #f9fbff;
}
.accordion-item.active .accordion-header {
  border-bottom: 1px solid #e0e0e0;
  background-color: #f9fbff;
}
.accordion-header .arrow{transition:transform 0.35s ease}
.accordion-item.active .accordion-header .arrow{transform:rotate(180deg)}
.accordion-body{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.45s cubic-bezier(0.25,0.46,0.45,0.94), padding 0.45s ease, opacity 0.3s ease;
  padding:0 20px;
  background:#fff;
  line-height:1.6;
  font-size:0.95rem;
  color:#333;
  opacity:0;
  box-sizing:border-box;
}
.accordion-item.active .accordion-body{
  padding:20px;
  opacity:1;
}

/* === INLINE ENQUIRY FORM (programme pages) === */
.enquiry-form-inline{display:flex;gap:15px;flex-wrap:wrap;justify-content:center;max-width:900px;margin:0 auto}
.enquiry-form-inline input,.enquiry-form-inline select{flex:1;min-width:180px;padding:12px 16px;border:1px solid #d3d3d3;border-radius:6px;font-size:0.95rem;color:#333;background-color:#f9f9f9;transition:border-color 0.2s, background-color 0.2s;box-sizing:border-box}
.enquiry-form-inline input:focus,.enquiry-form-inline select:focus{border-color:#102a43;background-color:#fff;box-shadow:0 0 0 3px rgba(16,42,67,0.1);outline:none}
.enquiry-form-inline button{background:linear-gradient(135deg, #ff7e40 0%, #f26522 100%);color:#fff;padding:12px 30px;border:none;border-radius:50px;font-weight:700;font-size:0.95rem;box-shadow:0 4px 12px rgba(242, 101, 34, 0.2);transition:all 0.3s ease;cursor:pointer}
.enquiry-form-inline button:hover{background:linear-gradient(135deg, #f26522 0%, #d94f18 100%);transform:translateY(-2px);box-shadow:0 6px 18px rgba(242, 101, 34, 0.35)}


/* === HERO ACCREDITATION CARDS === */
.hero-accred-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: -100px auto 40px auto;
  padding: 0 40px;
  position: relative;
  z-index: 20;
}
.hero-accred-card {
  flex: 1;
  max-width: 350px;
  min-height: 200px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.hero-accred-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}
.hero-accred-card.ugc {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.hero-accred-card.naac {
  background: linear-gradient(135deg, #1c75bc 0%, #115387 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-accred-card img {
  height: 75px;
  object-fit: contain;
  margin-bottom: 12px;
}
.hero-accred-card h4 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}
.hero-accred-card.ugc h4 {
  color: #1A3A5C;
}
.hero-accred-card p {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-accred-card.ugc p {
  color: #52606d;
}
.hero-accred-card.naac p {
  color: rgba(255, 255, 255, 0.85);
}
.hero-accred-card.naac img {
  filter: brightness(0) invert(1);
}

@media(max-width:768px){
  .hamburger{display:block}
  .hero{min-height:auto;padding:60px 20px}
  .hero-grid{grid-template-columns:1fr;text-align:center;gap:30px}
  .hero-left h1{font-size:2.2rem}
  .subtitle-label{font-size:1.2rem}
  .subtitle-courses{font-size:1.6rem}
  .discount-badge-img{margin:10px auto 0;width:130px;height:130px}
  .tab-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .programme-header .container{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
  .institutes-grid{grid-template-columns:repeat(2,1fr)}
  .advantages-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch}
  

  
  /* Hero accreditation mobile adjustments */
  .hero-accred-container {
    flex-direction: column;
    align-items: center;
    margin-top: -50px;
    gap: 20px;
    padding: 0 20px;
  }
  .hero-accred-card {
    width: 100%;
    max-width: 300px;
    min-height: 180px;
  }
}

@media(max-width:480px){
  .hero-left h1{font-size:1.8rem}
  .section-title{font-size:1.5rem}
  .course-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .institutes-grid{grid-template-columns:1fr}
  .header-inner{padding:0 20px}
}

/* === LISTING PAGE COURSE CARDS (light bg) === */
.content-section .course-card{background:#fff;border:2px solid #eee;color:#333;min-height:auto;padding:30px}
.content-section .course-card:hover{background:#fff;border-color:#C41E3A;transform:translateY(-3px);box-shadow:0 8px 20px rgba(0,0,0,0.1)}
.content-section .course-card .code{color:#C41E3A}
.content-section .course-card h3{color:#333}
.content-section .course-card .duration,.content-section .course-card .fees{color:#666}
.content-section .course-card .fees{font-weight:700;color:#1A3A5C}
.content-section .course-card .btn-outline{border-color:#C41E3A;color:#C41E3A}
.content-section .course-card .btn-outline:hover{background:#C41E3A;color:#fff}
.content-section .course-card p{color:#666;font-size:0.9rem;margin-bottom:15px;line-height:1.6}

/* === BOUNCE ANIMATION === */
@keyframes bounce{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

/* === WCAG HIGH CONTRAST === */
@media(prefers-contrast:high){
  .hero{background:#1A3A5C}
  .courses-section{background:#1A3A5C}
  footer{background:#0d1f33}
  .footer-col a{color:rgba(255,255,255,0.9)}
  .adv-card p,.tab-grid ul li,.content-section p{color:#333}
}

/* === REDUCED MOTION === */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:0.01ms!important;transition-duration:0.01ms!important}
  .course-card:hover,.adv-card:hover{transform:none}
  .apply-btn:hover{transform:none}
}

/* === SCHOLARSHIP POPUP MODAL === */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.modal-container {
  background: #ffffff;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.show .modal-container {
  transform: scale(1);
}
.modal-header {
  background: #102a43;
  color: #ffffff;
  padding: 20px 24px;
  position: relative;
  border-bottom: 2px solid #D4A547;
}
.modal-header h2 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  color: #ffffff;
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #ffffff;
}
.modal-body {
  padding: 24px;
}
.modal-form .form-group {
  margin-bottom: 16px;
}
.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form input[type="tel"],
.modal-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d3d3d3;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #333333;
  background-color: #f9f9f9;
  transition: border-color 0.2s, background-color 0.2s;
  box-sizing: border-box;
}
.modal-form input:focus,
.modal-form select:focus {
  outline: none;
  border-color: #102a43;
  background-color: #ffffff;
}
.modal-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.modal-form .form-check input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
}
.modal-form .form-check label {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #666666;
  cursor: pointer;
}
.modal-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #ff7e40 0%, #f26522 100%);
  color: #ffffff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(242, 101, 34, 0.2);
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}
.modal-submit-btn:hover {
  background: linear-gradient(135deg, #f26522 0%, #d94f18 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(242, 101, 34, 0.35);
}

/* === ELECTIVE TABS === */
.elective-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.elective-tab {
  flex: 1 1 calc(33.333% - 12px);
  min-width: 150px;
  background: #ffffff;
  border: 1px solid #d3d3d3;
  color: #333333;
  padding: 12px 15px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  box-sizing: border-box;
}
.elective-tab:hover {
  border-color: #102a43;
  background-color: #f9fbff;
  color: #102a43;
}
.elective-tab.active {
  background: #C41E3A;
  border-color: #C41E3A;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(196, 30, 58, 0.25);
}
.elective-content {
  display: none;
}
.elective-content.active {
  display: block;
}
@media (max-width: 768px) {
  .elective-tab {
    flex: 1 1 calc(50% - 12px);
  }
}
@media (max-width: 480px) {
  .elective-tab {
    flex: 1 1 100%;
  }
}

/* === PROGRAMME HERO ACCENT UNDERLINE (below subtitle) === */
.programme-header .accent-line {
  width: 80px;
  height: 4px;
  background-color: #8cc63f;
  border-radius: 2px;
  margin: 15px 0 20px 0;
}

/* === ADVANTAGE CARD ACCENT BORDERS === */
.advantage-card.border-green {
  border-bottom: 4px solid #8cc63f !important;
}
.advantage-card.border-blue {
  border-bottom: 4px solid #00aeef !important;
}
.advantage-card.border-gray {
  border-bottom: 4px solid #999999 !important;
}

/* === CERT SECTION BLUE === */
.cert-section-blue {
  background: #39427b; /* Indigo/blue solid background from reference */
  color: #ffffff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cert-section-blue h2 {
  color: #ffffff !important;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.cert-section-blue .section-desc {
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 15px;
}
.cert-section-blue .section-desc-sub {
  max-width: 800px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 40px;
}
.cert-section-blue .cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
}
.cert-card-white {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px 24px;
  flex: 1 1 calc(33.333% - 25px);
  min-width: 250px;
  box-sizing: border-box;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.cert-card-white:hover {
  transform: translateY(-5px);
}
.cert-card-icon img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(85%) saturate(2524%) hue-rotate(342deg) brightness(87%) contrast(103%);
}
.cert-card-white h4 {
  color: #102a43;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 15px 0 20px 0;
}
.cert-card-white h4 .sub-lbl {
  display: block;
  font-weight: 500;
  color: #666666;
  font-size: 1rem;
  margin-top: 4px;
}
.btn-know-more {
  background: #C41E3A;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  align-self: flex-start;
  transition: background-color 0.2s;
}
.btn-know-more:hover {
  background: #A01A31;
  color: #ffffff;
}
.cert-action {
  margin-top: 30px;
  text-align: left;
}
.btn-download-brochure {
  display: inline-block;
  background: #ffffff;
  color: #39427b;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: background-color 0.2s, transform 0.2s;
}
.btn-download-brochure:hover {
  background-color: #f0f0f0;
  transform: translateY(-1px);
  color: #39427b;
}

/* === ELIGIBILITY/DURATION BLUE BANNER === */
.eligibility-duration-banner {
  background: linear-gradient(rgba(16, 42, 67, 0.9), rgba(16, 42, 67, 0.9)), url('../img/campus_hero_background.png') no-repeat center center / cover;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}
.eligibility-duration-banner .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.eligibility-duration-banner .banner-item {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.eligibility-duration-banner .banner-item-icon {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 15px;
}
.eligibility-duration-banner .banner-item-icon svg {
  stroke: #ffffff;
}
.eligibility-duration-banner .banner-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
}
.eligibility-duration-banner .banner-item p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  max-width: 350px;
  line-height: 1.5;
}
.eligibility-duration-banner .divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .eligibility-duration-banner .divider {
    display: none;
  }
}

/* === ACCREDITATION LOGOS ON PROGRAMME PAGES === */
.accred-logos{display:flex;gap:20px;margin-top:20px;flex-wrap:wrap}
.accred-logos .accred-logo-card{background:#fff;padding:25px 30px;border-radius:8px;border:1px solid #e0e0e0;display:flex;flex-direction:column;align-items:center;justify-content:center;box-shadow:0 4px 15px rgba(0,0,0,0.04);flex:1;max-width:250px;text-align:center;transition:transform 0.3s ease}
.accred-logos .accred-logo-card:hover{transform:translateY(-3px);box-shadow:0 6px 20px rgba(0,0,0,0.08)}
.accred-logos .accred-logo-card img{height:60px;margin-bottom:10px}
.accred-logos .accred-logo-card span{font-size:0.85rem;font-weight:600;color:#666}
.accred-logos .accred-logo-card span strong{color:#333}



/* === ADVANTAGE GRID === */
.advantage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}
.advantage-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 35px 28px;
  flex: 1 1 calc(33.333% - 25px);
  min-width: 250px;
  box-sizing: border-box;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(16, 42, 67, 0.08);
}
.advantage-card-icon {
  margin-bottom: 20px;
}
.advantage-card h3 {
  color: #102a43;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.4;
}
.advantage-card p {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* === FEE TABLE === */
.fee-table {
  margin: 25px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.fee-table table {
  margin: 0;
}
.fee-table th {
  background: #D4A547;
  color: #fff;
}
.fee-table td, .fee-table th {
  text-align: center;
  padding: 15px 20px;
  font-size: 0.95rem;
}

/* === CERTIFICATION LISTS 3-COLUMN === */
.cert-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}
.cert-lists > div {
  flex: 1;
  min-width: 250px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cert-lists > div:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.cert-lists h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #C41E3A;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #D4A547;
}
.cert-lists ul li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 0.9rem;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
}
.cert-lists ul li:last-child {
  border-bottom: none;
}
.cert-lists ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4A547;
  font-weight: 700;
}

/* === BOTTOM ENQUIRY SECTION === */
.bottom-enquiry {
  background: #f5f5f5;
}
.bottom-enquiry h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1A3A5C;
  margin-bottom: 30px;
}

/* === GENERIC SECTION SPACING === */
.section {
  padding: 60px 0;
}

/* === SUBPAGES PREMIUM LAYOUTS === */
.intro-card {
  background: #f9fbff;
  border-radius: 12px;
  padding: 30px;
  border-left: 5px solid #C41E3A;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  margin-bottom: 40px;
}
.intro-card p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}
.intro-card p:not(:last-child) {
  margin-bottom: 15px;
}

.section-title-premium {
  font-size: 1.8rem;
  font-weight: 800;
  color: #102a43;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.section-title-premium::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #D4A547;
  border-radius: 2px;
}

/* Resources Grid & Cards (online-conduction.html) */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 20px;
}
.resource-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(16, 42, 67, 0.08);
}
.resource-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
  display: inline-block;
}
.resource-card h4 {
  font-size: 1.15rem;
  color: #102a43;
  font-weight: 700;
  margin-bottom: 12px;
}
.resource-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Color Accent Borders */
.border-left-red { border-left: 4px solid #C41E3A; }
.border-left-blue { border-left: 4px solid #00aeef; }
.border-left-green { border-left: 4px solid #8cc63f; }
.border-left-gold { border-left: 4px solid #D4A547; }
.border-left-purple { border-left: 4px solid #6b46c1; }
.border-left-orange { border-left: 4px solid #ed8936; }

/* Assessment Grid & Cards (assessment.html) */
.assessment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.assessment-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.assessment-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #102a43;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}
.assessment-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.assessment-info-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.95rem;
}
.assessment-info-list li:last-child {
  border-bottom: none;
}
.assessment-info-list li span.label {
  font-weight: 600;
  color: #475569;
}
.assessment-info-list li span.value {
  color: #0f172a;
  text-align: right;
  font-weight: 500;
}

/* Timeline Layout (registration-process.html) */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto;
  padding-left: 40px;
}
.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: #e2e8f0;
  top: 0;
  bottom: 0;
  left: 18px;
  margin-left: -2px;
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-badge {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #C41E3A;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  left: -40px;
  top: 0;
  margin-left: 2px;
  z-index: 2;
  box-shadow: 0 0 0 6px #ffffff, 0 4px 10px rgba(0, 0, 0, 0.1);
}
.timeline-item:nth-child(even) .timeline-badge {
  background: #D4A547;
}
.timeline-content {
  background: #ffffff;
  padding: 24px 30px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: transform 0.3s ease;
}
.timeline-content:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}
.timeline-content h3 {
  font-size: 1.15rem;
  color: #102a43;
  margin-bottom: 10px;
}
.timeline-content p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/* Document List styling */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.doc-card-premium {
  background: #f8fafc;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #e2e8f0;
}
.doc-card-premium span.number {
  font-size: 1.3rem;
  font-weight: 800;
  color: #C41E3A;
  background: rgba(196, 30, 58, 0.06);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doc-card-premium span.text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
}

/* Warning Info block */
.warning-block {
  background: #fffaf0;
  border: 1px solid #feebc8;
  border-left: 4px solid #dd6b20;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 40px;
}
.warning-block h4 {
  color: #dd6b20;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.warning-block ul {
  padding-left: 20px;
  list-style: disc;
}
.warning-block ul li {
  font-size: 0.95rem;
  color: #7b341e;
  margin-bottom: 8px;
}
.warning-block ul li:last-child {
  margin-bottom: 0;
}

/* Policy Grid & Cards (admission-policy.html) */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 25px;
}
.policy-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  display: flex;
  gap: 20px;
}
.policy-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #D4A547;
  line-height: 1;
}
.policy-details p {
  font-size: 0.95rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

/* Centered Form Cards (myaccount.html & admissionportal.html) */
.form-card-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}
.form-card-premium {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.08);
  width: 100%;
  max-width: 500px;
}
.form-card-premium h3 {
  font-size: 1.4rem;
  color: #102a43;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 800;
}
.form-card-premium .form-group {
  margin-bottom: 22px;
}
.form-card-premium label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 8px;
}
.form-card-premium input,
.form-card-premium select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #1e293b;
  background-color: #f8fafc;
  transition: all 0.3s ease;
}
.form-card-premium input:focus,
.form-card-premium select:focus {
  border-color: #C41E3A;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
  outline: none;
}
.form-card-premium button.btn-submit-premium {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #C41E3A 0%, #a8152e 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
  transition: all 0.3s ease;
  margin-top: 10px;
}
.form-card-premium button.btn-submit-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(196, 30, 58, 0.3);
}
.form-card-premium .extra-links {
  margin-top: 25px;
  text-align: center;
  font-size: 0.9rem;
  color: #64748b;
}
.form-card-premium .extra-links a {
  font-weight: 600;
}
