@custom-variant dark (&:is(.dark *));

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {

  --primary-color:#0B1F3A;
  --secondary-color:#F2B632;

  --brand-navy: #0B1F3A;
  --brand-blue: #1E4D8F;
  --brand-gold: #F2B632;
  --brand-gold-dark: #d9a42d;
  --brand-surface: #F7F9FC;

  --font-size: 16px;
  --font-family-heading: 'Poppins', sans-serif;
  --font-family-body: 'Inter', sans-serif;
  --background: #ffffff;
  --foreground: oklch(0.145 0 0);
  --card: #ffffff;
  --card-foreground: oklch(0.145 0 0);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.145 0 0);
  --primary: #030213;
  --primary-foreground: oklch(1 0 0);
  --secondary: oklch(0.95 0.0058 264.53);
  --secondary-foreground: #030213;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --accent: #e9ebef;
  --accent-foreground: #030213;
  --destructive: #d4183d;
  --destructive-foreground: #ffffff;
  --border: rgba(0, 0, 0, 0.1);
  --input: transparent;
  --input-background: #f3f3f5;
  --switch-background: #cbced4;
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --ring: oklch(0.708 0 0);
  --chart-1: oklch(0.646 0.222 41.116);
  --chart-2: oklch(0.6 0.118 184.704);
  --chart-3: oklch(0.398 0.07 227.392);
  --chart-4: oklch(0.828 0.189 84.429);
  --chart-5: oklch(0.769 0.188 70.08);
  --radius: 0.625rem;
  --sidebar: oklch(0.985 0 0);
  --sidebar-foreground: oklch(0.145 0 0);
  --sidebar-primary: #030213;
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.97 0 0);
  --sidebar-accent-foreground: oklch(0.205 0 0);
  --sidebar-border: oklch(0.922 0 0);
  --sidebar-ring: oklch(0.708 0 0);

  /* Font Sizes */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 1.875rem;    /* 30px */
  --text-4xl: 2.25rem;     /* 36px */
  --text-5xl: 3rem;      /* 48px */
  --text-6xl: 3.75rem;   /* 60px */

  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

}
 
 

 body { 
    font-family: var(--font-family-body)  !important;
    width:100%;
    overflow-x:hidden;
  }
  
  main{
    width:100%;
    overflow-x:hidden;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading) !important;
  }
 

.top-header {
  background-color: #0B1F3A;
  color: white;
}

.admission-badge {
  background-color: #F2B632;
  color: #0B1F3A;
  font-size: 0.85rem;
}

.header-link {
  transition: color 0.2s;
}

.header-link:hover {
  color: var(--secondary-color) !important;
}

.apply-btn {
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  border-radius: 10px  !important;
  transition: background-color 0.2s;
}

.apply-btn:hover {
  background-color: #d9a42d !important;
  color: var(--primary-color) !important;
}

/* Navbar Base */
.site-navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1050;
  min-height: 80px;
}

.site-navbar.scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}


 
 
.navbar-logo-icon img{
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 50%;
}

.navbar-logo-icon i {
  font-size: 1.5rem !important;
  color: #ffffff !important;
}

/* College Name & Location */
.navbar-college-name {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #0B1F3A !important;
  line-height: 1.2 !important;
}

.navbar-college-location {
  font-size: 0.77rem !important;
  color: #6c757d !important;
}

/* Nav Links */
.nav-link-custom {
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: #222222 !important;
  transition: color 0.2s ease;
  padding: 0.4rem 0.25rem !important;
}

.nav-link-custom:hover,
.nav-link-custom:focus {
  color: #1E4D8F !important;
}

/* Enquiry Button */
.btn-enquiry {
  background-color: #1E4D8F !important;
  color: #ffffff !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 10px !important;
  border: none !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
  transition: background-color 0.2s ease;
}

.btn-enquiry:hover {
  background-color: #0B1F3A !important;
  color: #ffffff !important;
}

/* Mobile Toggle Icon */
.navbar-toggle-icon {
  font-size: 1.5rem;
  color: #0B1F3A;
}

.hero-section {
  background: linear-gradient(135deg, #0B1F3A, #1E4D8F) !important;
}
@media (min-width: 1499px){
    .hero-section{
        height:90vh;
        display:flex;
        align-items:center;
    }
}

/* Badge — white tint on dark bg */
.hero-badge {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border-radius: 100px !important;
}

/* Heading */
.hero-title {
  font-size: var(--text-5xl) ;
  color: #ffffff !important;
  line-height: 1.15;
}

.hero-title-accent {
  color: #F2B632 !important;
}

/* Description */
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82) !important;
  line-height: 1.75;
}

/* Buttons */
.btn-apply {
  background-color: #F2B632 !important;
  color: #0B1F3A !important;
  font-weight: 600 !important;
  padding: 0.85rem 2rem !important;
  border-radius: 10px !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(242, 182, 50, 0.4) !important;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-apply:hover {
  background-color: #d9a42d !important;
  color: #0B1F3A !important;
  box-shadow: 0 6px 18px rgba(242, 182, 50, 0.5) !important;
}

.btn-brochure {
  background-color: transparent !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  padding: 15px 32px !important;
  border-radius: 10px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55) !important;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-brochure:hover {
  background-color: rgba(255, 255, 255, 0.12) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

/* Trust Cards — glass style on dark bg */
.trust-card {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 14px !important;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.trust-card:hover {
  background-color: rgba(255, 255, 255, 0.16) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}

/* All trust icons gold on dark bg */
.trust-icon-gold {
  font-size: 1.75rem !important;
  color: #F2B632 !important;
  display: block;
}

.trust-title {
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
}

.trust-sub {
  font-size: 0.7rem !important;
  color: rgba(255, 255, 255, 0.65) !important;
  margin-top: 2px;
}

/* Image Collage */
.hero-img-tall {
  height: 260px !important;
  object-fit: cover;
  border-radius: 16px;
  object-position: -127px 0;
}

.hero-img-short {
  height: 190px !important;
  object-fit: cover;
  border-radius: 16px;
}

.hero-col-offset {
  margin-top: 2rem !important;
}

/* Decorative Blobs */
.hero-blob {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.hero-blob-gold {
  background-color: #F2B632 !important;
  top: -2rem;
  right: -2rem;
}

.hero-blob-blue {
  background-color: #1E4D8F;
  bottom: -2rem;
  left: -2rem;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .hero-col-offset {
    margin-top: 0;
  }

  .hero-img-tall,
  .hero-img-short {
    height: 180px;
  }
}
@media (max-width: 370px){
    .navbar-logo-icon img{
        width: 43px !important;
        height: 43px !important;
    }
    .navbar-brand{
        margin-right: 0 !important;
    }
    .navbar-college-name{
        font-size: 1rem !important;
    }
    .text-light{
        font-size: 12px !important;
    }
    .hero-title {
        font-size: 2.1rem !important;
    }
}
@media (max-width: 575.98px) {
    .small, small{
        font-size: .8em !important;
    }
    .navbar-logo-icon img{
        width: 44px  ;
        height: 44px ;
    }
    .hero-img-tall{
        object-position: -239px 0;
    }
    .hero-title{
        font-size: var(--text-4xl) ;
    }
    .ft-copy{
        text-align: center;
    }
    .ft-bottom-bar{
        justify-content: center;
    }
  .hero-img-tall,
  .hero-img-short {
    height: 140px;
  }

  .trust-title {
    font-size: 0.72rem;
  }

  .trust-sub {
    font-size: 9px !important;
  }

  .btn-apply,
  .btn-brochure {
    width: 100%;
    justify-content: center;
  }
}


/* ── Highlights Section ── */
.highlights-section {
  background-color: #ffffff !important;
}

/* Card */
.highlight-card {
  background-color: #ffffff !important;
  border-color: #f0f0f0 !important;
  border-radius: 1rem !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1) !important;
}

/* Icon Wrapper */
.highlight-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-icon-wrap {
  transform: scale(1.1);
}

.highlight-icon-blue {
  background-color: rgba(30, 77, 143, 0.1);
}

.highlight-icon-gold {
  background-color: rgba(242, 182, 50, 0.1);
}

/* Icon */
.highlight-icon {
  font-size: 1.5rem;
}

.highlight-icon-blue .highlight-icon {
  color: #1E4D8F;
}

.highlight-icon-gold .highlight-icon {
  color: #F2B632;
}

/* Text */
.highlight-title {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #0B1F3A !important;
  margin-bottom: 0.5rem !important;
}

.highlight-desc {
  font-size: 0.875rem !important;
  color: #6c757d !important;
  line-height: 1.65 !important;
  margin-bottom: 0 !important;
}

/* ── About Section ── */
.about-section {
  background: linear-gradient(135deg, #F7F9FC, #ffffff) !important;
}

/* Main Image */
.about-main-img {
  height: 500px;
  object-fit: cover;
  border-radius: 16px !important;
}

/* Excellence Badge (overlay) */
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: #1E4D8F;
  color: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: 16px !important;
}

.about-badge-number {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-label {
  font-size: 0.8rem;
  margin-top: 0.25rem;
  opacity: 0.9;
}

/* Tag / Pill Badge */
.about-tag {
  background-color: rgba(30, 77, 143, 0.1);
  color: #1E4D8F;
}

/* Heading */
.about-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0B1F3A !important;
  line-height: 1.2;
}

.about-title-accent {
  color: #1E4D8F;
}

/* Paragraphs */
.about-desc {
  color: #444444 !important;
  line-height: 1.75;
  font-size: 0.975rem;
}

/* Feature Icon Wrapper */
.about-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: rgba(242, 182, 50, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature-icon-svg {
  font-size: 1.1rem;
  color: #F2B632 !important;
}

/* Feature Text */
.about-feature-title {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: #0B1F3A !important;
  margin-bottom: 0.25rem !important;
}

.about-feature-desc {
  font-size: 0.8rem !important;
  color: #6c757d !important;
  line-height: 1.5;
  margin-bottom: 0 !important;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .about-main-img {
    height: 380px;
  }

  .about-badge {
    bottom: -1rem;
    right: 0.5rem;
    padding: 1rem 1.5rem;
  }

  .about-badge-number {
    font-size: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .about-main-img {
    height: 260px;
  }

  .about-badge {
    position: absolute;
    display: inline-block;
    margin-bottom: -1rem;
    border-radius: 12px !important;
  }

  .about-img-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Vision & Mission Section ── */
.vm-section {
  background-color: #ffffff !important;
}

/* Cards */
.vm-card {
  transition: box-shadow 0.3s ease;
  border-radius: 16px;
}

.vm-card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18) !important;
}

.vm-card-blue {
  background: linear-gradient(135deg, #1E4D8F, #0B1F3A) !important;
}

.vm-card-gold {
  background: linear-gradient(135deg, #F2B632, #d9a42d) !important;
}

/* Decorative Blob */
.vm-blob {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 0.07;
  pointer-events: none;
}

.vm-card-gold .vm-blob {
  opacity: 0.15;
}

/* Icon Wrapper */
.vm-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-icon-wrap-blue {
  background-color: rgba(255, 255, 255, 0.2);
}

.vm-icon-wrap-gold {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Icon */
.vm-icon {
  font-size: 1.75rem;
  color: #ffffff;
}

.vm-icon-dark {
  color: #0B1F3A !important;
}

/* Title */
.vm-title {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
}

.vm-title-dark {
  color: #0B1F3A !important;
}

/* Description */
.vm-desc {
  line-height: 1.75 !important;
  font-size: 0.975rem !important;
  margin-bottom: 0 !important;
}

.vm-desc-white {
  color: rgba(255, 255, 255, 0.9) !important;
}

.vm-desc-dark {
  color: rgba(11, 31, 58, 0.9) !important;
}

/* ── Responsive ── */
@media (max-width: 575.98px) {
  .vm-card {
    padding: 1.75rem !important;
  }

  .vm-title {
    font-size: 1.25rem !important;
  }

  .vm-icon-wrap {
    width: 52px;
    height: 52px;
  }

  .vm-icon {
    font-size: 1.4rem;
  }
}

.leadership-section {
  padding: 5rem 0;
  background: #F7F9FC;
}

.leadership-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(30, 77, 143, 0.1);
  color: #1E4D8F;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.leadership-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 1rem;
}

.leadership-title span {
  color: #1E4D8F;
}

.leadership-subtitle {
  max-width: 600px;
}

.leader-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
}

.leader-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(-8px);
}

.leader-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.leader-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s;
}

.leader-card:hover .leader-img-wrap img {
  transform: scale(1.1);
}

.leader-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0B1F3A 0%, rgba(11, 31, 58, 0.5) 50%, transparent 100%);
  opacity: 0.85;
}

.leader-name-block {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: #fff;
}

.leader-name-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.leader-designation {
  color: #F2B632;
  font-size: 0.875rem;
  font-weight: 600;
}

.leader-body {
  padding: 1.5rem;
}

.leader-body p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.read-more-btn {
  background: none;
  border: none;
  padding: 0;
  color: #1E4D8F;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: gap 0.2s;
}

.read-more-btn:hover {
  gap: 12px;
}

.read-more-btn svg {
  width: 16px;
  height: 16px;
}

.courses-section {
  padding: 5rem 0;
  background: #fff;
}

.courses-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(30, 77, 143, 0.1);
  color: #1E4D8F;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.courses-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 1rem;
}

.courses-title span {
  color: #1E4D8F;
}

.courses-subtitle {
  max-width: 600px;
}

.tab-switcher {
  display: inline-flex;
  background: #F7F9FC;
  border-radius: 12px;
  padding: 6px;
}

.tab-btn {
  padding: 0.65rem 2rem;
  border: none;
  background: transparent;
  font-weight: 600;
  color: #6b7280;
  border-radius: 8px;
  transition: all 0.25s;
  cursor: pointer;
}

.tab-btn.active {
  background: #1E4D8F;
  color: #fff;
  box-shadow: 0 2px 8px rgba(30, 77, 143, 0.25);
}

.tab-btn:not(.active):hover {
  color: #1E4D8F;
}

.course-cards-wrap {
  display: none;
}

.course-cards-wrap.active {
  display: flex;
}

.course-card {
  background: linear-gradient(135deg, #fff, #F7F9FC);
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.course-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}

.course-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(30, 77, 143, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.course-card:hover .course-icon-wrap {
  background: #1E4D8F;
}

.course-card:hover .course-icon-wrap svg {
  stroke: #fff;
}

.course-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 0.25rem;
}

.course-fullform {
  font-size: 0.8rem;
  color: #1E4D8F;
  font-weight: 600;
  margin-bottom: 1rem;
}

.course-desc {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.apply-btn { 
  background: #F2B632;
  color: #0B1F3A;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
  cursor: pointer;
}

.apply-btn:hover {
  background: #d9a42d;
}

.apply-btn svg {
  width: 18px;
  height: 18px;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 182, 50, 0.1);
  color: #0B1F3A;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.info-pill svg {
  width: 18px;
  height: 18px;
}

 /* Section */
    #courses {
      padding: 80px 0;
      background-color: #fff;
    }
 
    /* Badge pill */
    .section-badge {
      display: inline-block;
      padding: 6px 18px;
      background-color: rgba(30, 77, 143, 0.1);
      color: var(--brand-blue) !important;
      font-size: 0.85rem;
      font-weight: 600;
      border-radius: 100px !important;
      margin-bottom: 1rem;
    }
 
    /* Section heading */
    .section-title {
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--brand-navy) !important;
    }
 
    .section-title span {
      color: var(--brand-blue) !important;
    }
 
    /* Bootstrap nav-pills overrides */
    .stream-tabs {
      background-color: var(--brand-surface) !important;
      padding: 6px !important;
      border-radius: 14px !important;
      display: inline-flex !important;
      border: none !important;
    }
 
    .stream-tabs .nav-link {
      padding: 10px 32px !important;
      font-weight: 600 !important;
      color: #6c757d !important;
      border: none !important;
      border-radius: 10px !important;
      transition: all 0.2s ease !important;
      background-color: transparent !important;
    }
 
    .stream-tabs .nav-link:hover {
      color: var(--brand-blue) !important;
    }
 
    .stream-tabs .nav-link.active {
      background-color: var(--brand-blue) !important;
      color: #fff !important;
      box-shadow: 0 2px 8px rgba(30, 77, 143, 0.25) !important;
    }
 
    /* Course card */
    .course-card {
      background: linear-gradient(135deg, #ffffff, var(--brand-surface)) !important;
      border: 1px solid #f0f0f0 !important;
      border-radius: 18px !important;
      padding: 2rem !important;
      transition: transform 0.3s ease, box-shadow 0.3s ease !important;
      height: 100% !important;
    }
 
    .course-card:hover {
      transform: translateY(-8px) !important;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
    }
 
    /* Icon box */
    .course-icon-box {
      width: 56px;
      height: 56px;
      background-color: rgba(30, 77, 143, 0.1) !important;
      border-radius: 14px !important;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: background-color 0.3s ease !important;
    }
 
    .course-card:hover .course-icon-box {
      background-color: var(--brand-blue) !important;
    }
 
    .course-icon-box i {
      font-size: 1.4rem;
      color: var(--brand-blue) !important;
      transition: color 0.3s ease !important;
    }
 
    .course-card:hover .course-icon-box i {
      color: #fff !important;
    }
 
    /* Card text */
    .course-card .card-title {
      font-size: 1.5rem !important;
      font-weight: 700 !important;
      color: var(--brand-navy) !important;
      margin-bottom: 0.35rem !important;
    }
 
    .course-card .card-subtitle {
      font-size: 0.8rem !important;
      font-weight: 600 !important;
      color: var(--brand-blue) !important;
      margin-bottom: 1rem !important;
    }
 
    .course-card .card-text {
      color: #6c757d !important;
      line-height: 1.65 !important;
      margin-bottom: 1.5rem !important;
    }
 
    /* Apply button */
    .btn-apply { 
      background-color: var(--brand-gold) !important;
      color: var(--brand-navy) !important;
      border: none !important;
      border-radius: 10px !important;
      padding: 15px 32px !important;
      font-weight: 600 !important;
      font-size: 0.95rem !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 8px !important;
      transition: background-color 0.2s ease, gap 0.2s ease !important;
    }
 
    .btn-apply:hover {
      background-color: var(--brand-gold-dark) !important;
      color: var(--brand-navy) !important;
    }
 
    .course-card:hover .btn-apply {
      gap: 12px !important;
    }
 
    /* Bottom note */
    .bottom-note {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: rgba(242, 182, 50, 0.12) !important;
      color: var(--brand-navy) !important;
      padding: 10px 24px !important;
      border-radius: 100px !important;
      font-weight: 600;
      font-size: 0.9rem;
    }
@media (max-width: 575.98px){
    .stream-tabs .nav-link{
        font-size: 14px !important;
        padding: 10px 20px !important;
    }
}

#why-choose-us{
    padding: 80px 0; 
    background-color: #F7F9FC;
}
/* ── Why Choose Us ─────────────────────────────────────── */
.wcus-badge {
  display: inline-block;
  padding: 6px 18px;
  background-color: rgba(30, 77, 143, 0.1);
  color: #1E4D8F;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.wcus-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 1rem;
}

.wcus-title span {
  color: #1E4D8F;
}

.wcus-card {
  position: relative;
  background-color: #fff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.wcus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.13);
}

/* Decorative blob (replaces the Tailwind gradient circle) */
.wcus-blob {
  position: absolute;
  top: -64px;
  right: -64px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  opacity: 0.06;
  transition: opacity 0.3s ease;
}

.wcus-card:hover .wcus-blob {
  opacity: 0.12;
}

.wcus-blob--blue  { background-color: #1E4D8F; }
.wcus-blob--amber { background-color: #F2B632; }

/* Icon box */
.wcus-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wcus-icon-box--blue  { background-color: #1E4D8F; }
.wcus-icon-box--amber { background-color: #F2B632; }

.wcus-icon-box--amber i { color: #0B1F3A !important; }

.wcus-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 0.6rem;
}

.wcus-card-text {
  color: #6c757d;
  line-height: 1.65;
  margin-bottom: 0;
  font-size: 0.93rem;
}

#campus{
    padding: 80px 0;
}

/* ── Campus Facilities ──────────────────────────────────── */
.cf-badge {
  display: inline-block;
  padding: 6px 18px;
  background-color: rgba(30, 77, 143, 0.1);
  color: #1E4D8F;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.cf-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 1rem;
}

.cf-title span {
  color: #1E4D8F;
}

/* Image gallery */
.cf-img-wrap {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.cf-img-wrap:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.cf-img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.cf-img-wrap:hover .cf-img {
  transform: scale(1.08);
}

.cf-img--tall  { height: 260px; }
.cf-img--short { height: 160px; }

/* Facility list item */
.cf-facility-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(90deg, #F7F9FC, #ffffff);
  border-radius: 14px;
  transition: box-shadow 0.3s ease;
}

.cf-facility-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
}

.cf-facility-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: #1E4D8F;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff !important;
}

.cf-facility-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 4px;
}

.cf-facility-text {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.6;
}

#admission{
    padding: 80px 0; 
    background-color: #F7F9FC;
}
/* ── Admission Process ──────────────────────────────────── */
.ap-badge {
  display: inline-block;
  padding: 6px 18px;
  background-color: rgba(30, 77, 143, 0.1);
  color: #1E4D8F;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.ap-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 1rem;
}

.ap-title span {
  color: #1E4D8F;
}

/* Timeline wrapper — positions the connector line */
.ap-timeline-wrapper {
  position: relative;
  padding-top: 24px;
}

/* Horizontal connector line across all 5 cards */
.ap-connector {
  position: absolute;
  top: 80px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #1E4D8F, #F2B632, #1E4D8F);
  z-index: 0;
}

/* Card */
.ap-card {
  position: relative;
  background-color: #fff;
  border-radius: 18px;
  padding: 28px 20px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
  height: 100%;
}

.ap-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.13);
}

/* Step number badge */
.ap-step-badge {
  position: absolute;
  top: -18px;
  right: -12px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1E4D8F, #0B1F3A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 4px 10px rgba(30, 77, 143, 0.35);
}

/* Icon box */
.ap-icon-box {
  width: 64px;
  height: 64px;
  background-color: rgba(242, 182, 50, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
  color: #F2B632 !important;
  transition: background-color 0.3s ease;
}

.ap-card:hover .ap-icon-box {
  background-color: rgba(242, 182, 50, 0.3);
}

/* Card text */
.ap-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 8px;
}

.ap-card-text {
  font-size: 0.825rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}

/* CTA button */
.ap-cta-btn {
  background-color: #F2B632;
  color: #0B1F3A;
  border: none;
  border-radius: 10px;
  padding: 14px 40px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(242, 182, 50, 0.4);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.ap-cta-btn:hover {
  background-color: #d9a42d;
  box-shadow: 0 8px 24px rgba(242, 182, 50, 0.45);
}

#admission-form{
    padding: 80px 0;
}

/* ── Admission Form ─────────────────────────────────────── */
.af-badge {
  display: inline-block;
  padding: 6px 18px;
  background-color: rgba(30, 77, 143, 0.1);
  color: #1E4D8F;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.af-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 1rem;
}

.af-title span {
  color: #1E4D8F;
}

.af-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0B1F3A;
  margin-bottom: 6px;
}

/* Override Bootstrap form-control / form-select */
.af-input.form-control,
.af-input.form-select {
  padding: 12px 16px !important;
  border: 1px solid #d0d5dd !important;
  border-radius: 10px !important;
  font-size: 0.93rem !important;
  color: #0B1F3A !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.af-input.form-control:focus,
.af-input.form-select:focus {
  border-color: #1E4D8F !important;
  box-shadow: 0 0 0 3px rgba(30, 77, 143, 0.15) !important;
}

.af-input.form-control::placeholder {
  color: #adb5bd !important;
}

/* Submit button */
.af-submit-btn {
  width: 100%;
  background-color: #1E4D8F;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(30, 77, 143, 0.3);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.af-submit-btn:hover {
  background-color: #0B1F3A;
  box-shadow: 0 8px 24px rgba(30, 77, 143, 0.35);
}

/* Contact card */
.af-contact-card {
  background: linear-gradient(135deg, #1E4D8F, #0B1F3A);
  border-radius: 20px;
  padding: 2.5rem;
  color: #fff;
}

.af-contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.af-contact-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

/* Contact links (WhatsApp / Call) */
.af-contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 12px;
  transition: background-color 0.2s ease;
}

.af-contact-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.af-contact-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff !important;
}

.af-contact-link-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: #fff;
}

.af-contact-link-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

/* Office hours box */
.af-hours-box {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 16px;
}

.af-hours-heading {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 6px;
}

.af-hours-text {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4px;
}

#gallery{
    padding: 80px 0; 
    background-color: #F7F9FC;
}
/* ── Gallery ────────────────────────────────────────────── */
.gl-badge {
  display: inline-block;
  padding: 6px 18px;
  background-color: rgba(30, 77, 143, 0.1);
  color: #1E4D8F;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.gl-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 1rem;
}

.gl-title span {
  color: #1E4D8F;
}

/* CSS masonry via column-count */
.gl-masonry {
  column-count: 3;
  column-gap: 1rem;
}

@media (max-width: 991px) {
  .gl-masonry {
    column-count: 2;
  }
}

@media (max-width: 575px) {
  .gl-masonry {
    column-count: 1;
  }
}

/* Each item must break-inside avoid so images don't split across columns */
.gl-item {
  break-inside: avoid;
  margin-bottom: 1rem;
}

/* Image wrapper — clip zoom + show overlay */
.gl-wrap { 
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.gl-wrap img{
    width: 100%;
   height: 250px;
   object-fit: cover;
}

.gl-wrap:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.gl-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.gl-wrap:hover .gl-img {
  transform: scale(1.1);
}

/* Overlay — fades in on hover */
.gl-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 58, 0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
}

.gl-wrap:hover .gl-overlay {
  opacity: 1;
}

.gl-overlay-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 20px;
  margin: 0;
}

/* ── Testimonials ───────────────────────────────────────── */
.tm-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0B1F3A, #1E4D8F);
}

/* Decorative blobs */
.tm-blob {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background-color: #F2B632;
  opacity: 0.05;
  pointer-events: none;
}

.tm-blob--tl { top: -100px; left: -100px; }
.tm-blob--br { bottom: -100px; right: -100px; }

/* Header */
.tm-badge {
  display: inline-block;
  padding: 6px 18px;
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.tm-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 1rem;
}

.tm-title span {
  color: #F2B632 !important;
}

.tm-sub {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* White card wrapping carousel-inner */
.tm-card {
  background-color: #fff !important;
  border-radius: 20px !important;
  padding: 3rem 2.5rem 2rem !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2) !important;
  position: relative !important;
  overflow: visible !important;
}

/* Override Bootstrap carousel-inner clip */
.tm-card.carousel-inner {
  overflow: hidden !important;
}

/* Quote icon floating above card */
.tm-quote-icon {
  position: absolute;
  top: -22px;
  left: 28px;
  width: 48px;
  height: 48px;
  background-color: #F2B632;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #0B1F3A;
  box-shadow: 0 4px 12px rgba(242, 182, 50, 0.4);
  z-index: 10;
}

/* Avatar */
.tm-avatar {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  display: block;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .tm-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
  }
}

/* Stars */
.tm-stars i {
  color: #F2B632 !important;
  font-size: 1.1rem;
  margin-right: 2px;
}

/* Quote text */
.tm-text {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
}

/* Author */
.tm-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 2px;
}

.tm-role {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1E4D8F;
  margin-bottom: 0;
}

/* Controls row: prev · dots · next */
.tm-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 2rem;
}

/* Nav buttons */
.tm-nav-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: #1E4D8F !important;
  border: none !important;
  border-radius: 50% !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background-color 0.2s ease !important;
  position: static !important;
  transform: none !important;
}

.tm-nav-btn:hover {
  background-color: #0B1F3A !important;
}

/* Dot indicators — override Bootstrap defaults */
.tm-dots {
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  gap: 6px !important;
}

.tm-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: #ccc !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 1 !important;
  transition: width 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease !important;
}

.tm-dot.active {
  width: 28px !important;
  border-radius: 100px !important;
  background-color: #1E4D8F !important;
}

@media (max-width: 575.98px){
    .af-title{
        font-size: 2.1rem;
    }
    .af-contact-card{
        padding: 1.9rem;
    }
}

#faq{
    padding: 80px 0;
}
/* ── FAQ ────────────────────────────────────────────────── */
.fq-badge {
  display: inline-block;
  padding: 6px 18px;
  background-color: rgba(30, 77, 143, 0.1);
  color: #1E4D8F;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.fq-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 1rem;
}

.fq-title span {
  color: #1E4D8F;
}

/* Accordion wrapper — remove Bootstrap's default border */
.fq-accordion {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  border: none !important;
}

/* Each accordion item */
.fq-item {
  background: linear-gradient(90deg, #F7F9FC, #ffffff) !important;
  border: 1px solid #eef0f4 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  transition: box-shadow 0.3s ease !important;
}

.fq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09) !important;
}

/* Trigger button */
.fq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background-color: transparent !important;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #0B1F3A !important;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.fq-btn:hover {
  background-color: rgba(255, 255, 255, 0.6) !important;
}

/* Chevron icon — rotates when open */
.fq-chevron {
  font-size: 1rem;
  color: #1E4D8F !important;
  min-width: 20px;
  transition: transform 0.3s ease !important;
}

.fq-btn[aria-expanded="true"] .fq-chevron {
  transform: rotate(180deg) !important;
}

/* Answer body */
.fq-body {
  padding: 0 24px 20px;
  color: #6c757d;
  font-size: 0.93rem;
  line-height: 1.7;
}

/* CTA button */
.fq-cta-btn {
  display: inline-block;
  background-color: #1E4D8F;
  color: #fff !important;
  text-decoration: none !important;
  padding: 12px 36px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(30, 77, 143, 0.25);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.fq-cta-btn:hover {
  background-color: #0B1F3A;
  box-shadow: 0 8px 24px rgba(30, 77, 143, 0.3);
}

#contact{
    padding: 80px 0; 
    background-color: #F7F9FC;
}
/* ── Contact ────────────────────────────────────────────── */
.ct-badge {
  display: inline-block;
  padding: 6px 18px;
  background-color: rgba(30, 77, 143, 0.1);
  color: #1E4D8F;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.ct-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 1rem;
}

.ct-title span {
  color: #1E4D8F;
}

/* Map wrapper */
.ct-map-wrap {
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Contact info card */
.ct-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s ease;
}

.ct-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* Icon box */
.ct-icon-box {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff !important;
}

.ct-icon-box--blue { background-color: #1E4D8F; }
.ct-icon-box--gold { background-color: #F2B632; }

/* Card text */
.ct-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 6px;
}

.ct-card-text {
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.65;
}

/* Links inside cards */
.ct-link {
  font-size: 0.875rem;
  color: #6c757d;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ct-link:hover {
  color: #1E4D8F;
}

/* Social card */
.ct-social-card {
  background: linear-gradient(135deg, #1E4D8F, #0B1F3A);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(30, 77, 143, 0.25);
}

.ct-social-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

/* Social icon buttons */
.ct-social-btn {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease;
}

.ct-social-btn:hover {
  background-color: rgba(255, 255, 255, 0.28);
  color: #fff !important;
}

/* ── Footer ─────────────────────────────────────────────── */
.ft-footer {
  background: linear-gradient(135deg, #0B1F3A, #1E4D8F);
  color: #fff;
}

/* Logo */
.ft-logo-icon img{
      width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 50%;
}

.ft-logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.ft-logo-sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

/* Muted body text */
.ft-muted-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Social buttons */
.ft-social-btn {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.ft-social-btn:hover {
  background-color: #F2B632;
  color: #0B1F3A !important;
}

/* Column headings */
.ft-col-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}

/* Link list */
.ft-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.ft-link:hover {
  color: #F2B632 !important;
}

.ft-chevron {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.ft-link:hover .ft-chevron {
  transform: translateX(3px);
}

/* Contact list */
.ft-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ft-contact-icon {
  font-size: 1rem;
  color: #F2B632 !important;
  margin-top: 2px;
  min-width: 16px;
}

.ft-contact-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.ft-contact-link:hover {
  color: #F2B632 !important;
}

/* Bottom bar */
.ft-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ft-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}
.ft-copy a{
    text-decoration: none;
    color: #fff;
}

.ft-bottom-link {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.ft-bottom-link:hover {
  color: #F2B632 !important;
}

.footer-logo{
  text-decoration: none !important;
}
.text-decoration-none{
   text-decoration: none !important;
}
.gallery-section img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}
/* Hover Dropdown */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Optional Styling */
.dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.dropdown-item {
    padding: 10px 18px;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
}