@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #0b1c3e; /* Dark Blue */
  --secondary-color: #f7a800; /* Yellow / Gold */
  --accent-color: #0d6efd; /* Blue */
  --bg-color: #f8f9fa;
  --text-main: #333333;
  --text-light: #6c757d;
  --surface-color: #ffffff;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-color);
}

/* Header */
.top-header {
  background: var(--primary-color);
  color: #fff;
  padding: 8px 0;
  font-size: 0.85rem;
}
.top-header a {
  color: #fff;
  text-decoration: none;
}
.header {
  background: var(--surface-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-brand img {
  height: 60px;
}
.nav-link {
  font-weight: 500;
  color: var(--primary-color) !important;
  margin: 0 10px;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent-color) !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary-color);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.btn-primary-custom {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
}
.btn-primary-custom:hover {
  background-color: #08142c;
  color: #fff;
}
.btn-light-custom {
  background-color: #fff;
  color: var(--primary-color);
  border: none;
  padding: 10px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
}
.btn-light-custom:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

/* Hero Section */
.hero-img {
  height: 80vh;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 28, 62, 0.9) 0%, rgba(11, 28, 62, 0.4) 100%);
}
.hero-content {
  z-index: 2;
  position: relative;
}
.badge-welcome {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}

/* Floating Stats Bar */
.stats-bar {
  border: 1px solid rgba(0,0,0,0.05);
}
.stat-item .stat-icon {
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Sections */
.section-heading {
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 1.1rem;
}
.view-all {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.view-all:hover {
  color: var(--accent-color);
}

/* Course Cards */
.course-widget {
  background: #fff;
}
.course-mini-card {
  border: 1px solid #f1f5f9;
  transition: var(--transition);
}
.course-mini-card:hover {
  border-color: var(--accent-color);
  background-color: #f8fafc;
}
.read-more-link {
  color: var(--accent-color);
  text-decoration: none;
}
.read-more-link:hover {
  text-decoration: underline;
}

/* Notices List */
.notice-board-list li {
  padding-bottom: 15px;
  border-bottom: 1px dashed #e2e8f0;
}
.notice-board-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.notice-title:hover {
  color: var(--accent-color) !important;
}

/* Event Card */
.event-card {
  min-height: 250px;
}
.event-gradient {
  background: linear-gradient(to right, var(--primary-color) 0%, rgba(11,28,62,0.1) 100%);
  z-index: 1;
}
.z-index-2 {
  z-index: 2;
}

/* Features Banner */
.features-banner {
  background-color: var(--primary-color);
}

/* Sidebars */
.sidebar-left {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  z-index: 1050;
  border-radius: 0 10px 10px 0;
}
.sidebar-left a {
  padding: 15px;
  color: var(--text-light);
  font-size: 1.2rem;
  border-bottom: 1px solid #f1f5f9;
  transition: var(--transition);
}
.sidebar-left a:last-child {
  border-bottom: none;
}
.sidebar-left a:hover {
  color: var(--accent-color);
  background: #f8fafc;
}

.sidebar-right {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  z-index: 1050;
}
.sidebar-right a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  text-align: center;
  transition: var(--transition);
  font-weight: 500;
  border-radius: 10px 0 0 10px;
  margin-bottom: 5px;
}
.sidebar-right a i {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.enquiry-btn {
  background-color: var(--secondary-color);
}
.prospectus-btn {
  background-color: var(--primary-color);
}
.whatsapp-btn {
  background-color: #25D366;
}
.sidebar-right a:hover {
  width: 80px;
}

/* Footer */
.footer {
  background-color: #071225;
  color: #e2e8f0;
  padding: 60px 0 20px;
}
.footer h4 {
  color: white;
  margin-bottom: 25px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}
.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
}
.footer ul {
  padding: 0;
  list-style: none;
}
.footer ul li {
  margin-bottom: 12px;
}
.footer ul li a {
  color: #cbd5e1 !important;
  text-decoration: none;
  transition: var(--transition);
}
.footer ul li a:hover {
  color: var(--secondary-color) !important;
  padding-left: 5px;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Utility for other pages */
.section-padding {
  padding: 80px 0;
}
.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
.section-title h2 span {
  color: var(--secondary-color);
}

/* Inner Page Banner */
.inner-page-banner {
  background: linear-gradient(rgba(11, 28, 62, 0.8), rgba(11, 28, 62, 0.8)), url('images/2.jpg') no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}
.inner-page-banner h1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.custom-breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  font-size: 0.95rem;
}
.custom-breadcrumb .breadcrumb-item a {
  color: var(--secondary-color);
  text-decoration: none;
}
.custom-breadcrumb .breadcrumb-item.active {
  color: #cbd5e1;
}

/* Content Cards */
.content-card {
  background: var(--surface-color);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  padding: 40px;
  border: 1px solid #f1f5f9;
  margin-bottom: 30px;
}
.content-card ul {
  padding-left: 1.2rem;
}
.content-card li {
  margin-bottom: 15px;
}