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

/* CSS Variables */
:root {
  --color-primary-blue: #013469;
  --color-secondary-blue: #012f60;
  --color-orange: #dc520a;
  --color-text-dark: #333333;
  --color-text-grey: #767676;
  --color-bg-light: #f4f4f4;
  --color-border: #e2e8f0;
  --font-primary: 'Inter', sans-serif;
  --transition-speed: 0.3s;
  --max-width: 1200px;
}

/* CSS Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-dark);
  line-height: 1.6;
  background-color: #ffffff;
}

a {
  color: var(--color-primary-blue);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--color-orange);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

.heading-underline {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 25px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary-blue);
}

.heading-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-border);
}

.heading-underline::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-orange);
  z-index: 1;
}

/* Header & Navigation */
.site-header {
  background-color: var(--color-primary-blue);
  padding: 15px 0;
  color: #ffffff;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link img {
  height: 48px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-header {
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

.btn-header:hover {
  background-color: #ffffff;
  color: var(--color-primary-blue);
}

.search-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  height: 36px;
}

.search-input {
  border: none;
  padding: 0 12px;
  font-size: 0.85rem;
  color: var(--color-text-dark);
  outline: none;
  width: 160px;
}

.search-btn {
  background-color: var(--color-orange);
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-speed) ease;
}

.search-btn:hover {
  background-color: #c94908;
}

.search-btn img {
  width: 14px;
  height: 14px;
  filter: invert(1);
}

/* Main Navigation */
.main-nav {
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}

.nav-menu {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-blue);
  text-transform: uppercase;
  gap: 6px;
  padding: 15px 0;
}

.nav-link:hover {
  color: var(--color-orange);
}

.nav-caret {
  width: 8px;
  height: 8px;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #eaeaea;
}

.hero-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay-card {
  position: absolute;
  left: 10%;
  bottom: 10%;
  background-color: var(--color-primary-blue);
  color: #ffffff;
  padding: 30px;
  width: 480px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-left: 6px solid var(--color-orange);
}

.hero-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0.9;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

/* Program Overview */
.overview-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: start;
}

/* Left Sidebar Menu */
.sidebar-menu {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background-color: #ffffff;
}

.sidebar-item {
  border-bottom: 1px solid var(--color-border);
}

.sidebar-item:last-child {
  border-bottom: none;
}

.sidebar-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary-blue);
  text-transform: uppercase;
  transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

.sidebar-link:hover {
  background-color: var(--color-bg-light);
  color: var(--color-orange);
}

.sidebar-caret {
  width: 8px;
  height: 12px;
  fill: var(--color-orange);
}


/* Overview Content */
.overview-text {
  font-size: 1.05rem;
  color: var(--color-text-dark);
  margin-bottom: 30px;
  text-align: justify;
}

/* About upGrad Card */
.upgrad-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.upgrad-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.upgrad-logo-wrap img {
  max-width: 150px;
  height: auto;
}

.upgrad-content h3 {
  font-size: 1.4rem;
  color: var(--color-primary-blue);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.upgrad-content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 3px;
  background-color: var(--color-orange);
}

.upgrad-content p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: var(--color-text-dark);
}

.upgrad-content p:last-child {
  margin-bottom: 0;
}

/* 50 Years of DBA Slanted Banner */
.slant-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--color-bg-light);
  overflow: hidden;
  position: relative;
}

.slant-left {
  background-color: var(--color-primary-blue);
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  z-index: 2;
}

.slant-left-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.slant-left-logo {
  position: relative;
  z-index: 3;
  /* width: 250px; */
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.slant-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 80px 50px 30px;
  margin-left: -5%;
  /* Pull slightly left to overlap spacing */
  z-index: 1;
}

.slant-right h3 {
  font-size: 1.8rem;
  color: var(--color-primary-blue);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.slant-right h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background-color: var(--color-orange);
}

.slant-right p {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  margin-bottom: 15px;
}

.slant-right p:last-child {
  margin-bottom: 0;
}

/* Content Sections Styles */
.details-section p,
.admission-section p,
.curriculum-section p {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.details-section h3 {
  font-size: 1.25rem;
  color: var(--color-primary-blue);
  margin: 25px 0 10px 0;
}

.bullet-list {
  margin-bottom: 25px;
  padding-left: 20px;
}

.bullet-list li {
  position: relative;
  font-size: 0.95rem;
  margin-bottom: 12px;
  padding-left: 15px;
}

.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background-color: var(--color-orange);
}

/* Learning Outcomes Banner */
.outcomes-section {
  background-color: var(--color-primary-blue);
  color: #ffffff;
}

.outcomes-section .heading-underline {
  color: #ffffff;
}

.outcomes-section .heading-underline::after {
  background-color: rgba(255, 255, 255, 0.15);
}

.outcomes-subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 25px;
}

.outcomes-list {
  padding-left: 20px;
}

.outcomes-list li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 20px;
  font-size: 0.95rem;
}

.outcomes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
}

.outcomes-list li strong {
  color: #ffffff;
  font-weight: 600;
}

/* Curriculum & Accordion Styles */
.math-proficiency-box {
  background-color: var(--color-bg-light);
  border-left: 4px solid var(--color-orange);
  padding: 15px 20px;
  margin: 20px 0 30px 0;
  font-size: 0.95rem;
}

.math-proficiency-box strong {
  color: var(--color-primary-blue);
}

.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  background-color: #ffffff;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-bg-light);
  padding: 16px 20px;
  cursor: pointer;
  border-left: 4px solid var(--color-primary-blue);
  transition: background-color var(--transition-speed) ease;
  user-select: none;
}

.accordion-header:hover {
  background-color: #eaeaea;
}

.accordion-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-blue);
}

.accordion-caret {
  width: 10px;
  height: 10px;
  transform: rotate(90deg);
  /* Points right */
  transition: transform var(--transition-speed) ease;
}

.accordion-item.active .accordion-caret {
  transform: rotate(180deg);
  /* Points down/up depending on base caret style. If base is pointing right, 90deg is down. Let's make it point down. */
}

/* In the PDF, carets are triangles. Let's make caret point down when collapsed, and up when open. Or point right when collapsed, down when open.
Let's see: In the PDF, "Foundation Courses — 12 Units" has a triangle pointing down (orange/red triangle pointing down: icon-caret-down-orange).
So:
Collapsed state caret: points right or down. In the PDF image:
"Foundation Courses — 12 Units" is expanded and has a orange triangle pointing down.
"Qualifying Examination", "Concentration Courses", and "Dissertation Phase" are also expanded (showing contents) and have orange triangles pointing down.
Wait, all of them have orange triangles pointing down when expanded.
Let's make them point right when collapsed, down when expanded.
Let's write CSS:
Collapsed caret: points right (rotate(0deg)).
Expanded caret: points down (rotate(90deg)).
*/
.accordion-caret {
  transform: rotate(0deg);
}

.accordion-item.active .accordion-caret {
  transform: rotate(90deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  /* Quick toggle transition */
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  /* Big enough to fit contents */
  transition: max-height 0.6s cubic-bezier(1, 0, 1, 0);
  /* Auto-expand height approximation */
}

.accordion-content-inner {
  padding: 20px;
  border-top: 1px solid var(--color-border);
}

/* Course Tables inside Accordions */
.course-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.course-row {
  border-bottom: 1px solid var(--color-border);
}

.course-row:last-child {
  border-bottom: none;
}

.course-code {
  padding: 12px 15px;
  font-weight: 700;
  color: var(--color-primary-blue);
  width: 120px;
  vertical-align: top;
}

.course-desc {
  padding: 12px 15px;
  color: var(--color-primary-blue);
  font-weight: 500;
}

.course-desc a {
  text-decoration: underline;
}

/* Concentration Items List */
.concentration-list {
  padding-left: 15px;
}

.concentration-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.concentration-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background-color: var(--color-primary-blue);
}

/* Concentrations Section Style */
.concentrations-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.concentration-bar {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background-color: var(--color-bg-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  transition: background-color var(--transition-speed) ease;
}

.concentration-bar:hover {
  background-color: #eaeaea;
}

.concentration-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-blue);
}

.concentration-arrow {
  width: 8px;
  height: 10px;
}

/* Footer Styles */
.site-footer {
  background-color: var(--color-primary-blue);
  color: #ffffff;
  padding-top: 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 50px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.social-link:hover {
  background-color: var(--color-orange);
  transform: translateY(-3px);
}

.social-link img {
  width: 16px;
  height: 16px;
  filter: invert(1);
}

/* Footer Links Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

.footer-column-title {
  display: none;
  /* Just a directory grid in PDF */
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #ffffff;
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity var(--transition-speed) ease, color var(--transition-speed) ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-orange);
}

/* Sub Footer */
.sub-footer {
  background-color: var(--color-secondary-blue);
  padding: 25px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sub-footer p {
  margin-bottom: 8px;
}

.sub-footer p:last-child {
  margin-bottom: 0;
}

.sub-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

.sub-footer a:hover {
  color: var(--color-orange);
}

/* Scroll To Top Button */
.scroll-top-btn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 44px;
  height: 44px;
  background-color: var(--color-orange);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
  z-index: 999;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background-color: #c94908;
}

.scroll-top-btn img {
  width: 16px;
  height: 16px;
  filter: invert(1);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .overview-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sidebar-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .sidebar-item {
    border-bottom: none;
    border-right: 1px solid var(--color-border);
  }

  .sidebar-item:nth-child(3),
  .sidebar-item:last-child {
    border-right: none;
  }

  .slant-banner {
    grid-template-columns: 1fr;
  }

  .slant-left {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    min-height: 250px;
  }

  .slant-right {
    padding: 40px;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 60px;
    display: flex;
    align-items: center;
  }

  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 15px;
  }

  .logo-link img {
    height: 32px;
  }

  .header-right {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .btn-header {
    height: 34px;
    padding: 0 12px;
    font-size: 0.75rem;
    border-radius: 4px;
  }

  /* Horizontal scrolling sub-navigation on mobile */
  .main-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-menu {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 20px;
    padding: 0 15px;
  }

  .nav-item {
    flex-shrink: 0;
  }

  .nav-link {
    font-size: 0.75rem;
    padding: 12px 0;
    white-space: nowrap;
  }

  .hero-overlay-card {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    border-left: none;
    border-top: 6px solid var(--color-orange);
    padding: 20px;
  }

  .hero-image {
    height: 300px;
  }

  .sidebar-menu {
    grid-template-columns: 1fr;
  }

  .sidebar-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .upgrad-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .upgrad-content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Thank You Page Styles */
.thank-you-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  background-color: var(--color-bg-light);
  padding: 60px 20px;
}

.thank-you-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 50px 40px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  border-top: 6px solid var(--color-orange);
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  background-color: rgba(220, 82, 10, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
}

.success-icon-wrap svg {
  width: 40px;
  height: 40px;
  fill: var(--color-orange);
}

.thank-you-title {
  font-size: 2.2rem;
  color: var(--color-primary-blue);
  font-weight: 700;
  margin-bottom: 15px;
}

.thank-you-msg {
  font-size: 1.1rem;
  color: var(--color-text-dark);
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  background-color: var(--color-primary-blue);
  color: #ffffff !important;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 4px;
  transition: background-color var(--transition-speed) ease;
}

.btn-primary:hover {
  background-color: var(--color-orange);
}

/* Privacy Policy Page Styles */
.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.policy-container h1 {
  font-size: 2.2rem;
  color: var(--color-primary-blue);
  margin-bottom: 25px;
}

.policy-container h2 {
  font-size: 1.4rem;
  color: var(--color-primary-blue);
  margin: 30px 0 15px 0;
  font-weight: 600;
}

.policy-container p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--color-text-dark);
}

.policy-container ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.policy-container li {
  margin-bottom: 10px;
  color: var(--color-text-dark);
}

/* ==========================================
   HERO GRID REVISIONS (FORM ON LEFT, TEXT ON RIGHT)
   ========================================== */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(1, 52, 105, 0.85) 0%, rgba(1, 47, 96, 0.95) 100%), url('images/upGrad_BADBA_Hero.jpg');
  background-size: cover;
  background-position: center 20%;
  padding: 60px 0;
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  color: #ffffff;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 15px;
  color: #ffffff;
}

.hero-content h1 span {
  color: var(--color-orange);
}

.hero-content .subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.5;
}

/* Partner Badge */
.partner-badge-container {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  padding: 6px 12px;
  margin-bottom: 20px;
}

.partner-badge-container .badge-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partner-badge-container .badge-line {
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 10px;
}

.partner-badge-container .badge-logo img {
  height: 14px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Info Bullets */
.info-bullets {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
}

.info-bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-bullet-item svg {
  width: 20px;
  height: 20px;
  fill: var(--color-orange);
  flex-shrink: 0;
}

.info-bullet-text {
  font-size: 0.95rem;
  color: #ffffff;
}

.info-bullet-text strong {
  color: #ffffff;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

/* ==========================================
   FORM CARD STYLING
   ========================================== */
.form-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  color: var(--color-text-dark);
  width: 100%;
}

.form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-blue);
  text-align: center;
  margin-bottom: 5px;
}

.form-card p.form-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-grey);
  text-align: center;
  margin-bottom: 20px;
}

#myForm,
#myFormOne {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#myForm .textinput,
#myForm .selectinput,
#myFormOne .textinput,
#myFormOne .selectinput {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--color-text-dark);
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

#myForm .textinput::placeholder,
#myFormOne .textinput::placeholder {
  color: #64748b;
  opacity: 0.7;
}

#myForm .textinput:focus,
#myForm .selectinput:focus,
#myFormOne .textinput:focus,
#myFormOne .selectinput:focus {
  border-color: var(--color-primary-blue);
  box-shadow: 0 0 0 3px rgba(1, 52, 105, 0.15);
}

#myForm label,
#myFormOne label {
  display: block;
  text-align: left;
  color: var(--color-primary-blue);
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 4px;
  margin-bottom: 2px;
}

#myForm input[type="submit"],
#myFormOne input[type="submit"] {
  width: 100%;
  height: 46px;
  background-color: var(--color-orange);
  color: #ffffff;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color var(--transition-speed) ease;
  margin-top: 10px;
}

#myForm input[type="submit"]:hover,
#myFormOne input[type="submit"]:hover {
  background-color: #c94908;
}

.security-notice {
  font-size: 0.75rem;
  color: var(--color-text-grey);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 5px;
}

.security-notice svg {
  width: 12px;
  height: 12px;
  fill: #10b981;
}

/* ==========================================
   MODALS
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 52, 105, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: #ffffff;
  border-radius: 12px;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 30px;
  border: 1px solid var(--color-border);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-bg-light);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-grey);
  transition: background-color 0.2s ease;
}

.modal-close:hover {
  background-color: var(--color-border);
  color: var(--color-text-dark);
}

.modal-close svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.modal-header {
  text-align: center;
  margin-bottom: 20px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary-blue);
  margin-bottom: 5px;
  text-align: center;
}

body.modal-active {
  overflow: hidden;
}

/* ==========================================
   FLOATING CTA BUTTONS
   ========================================== */
.floating-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--color-orange);
  color: #ffffff !important;
  padding: 14px 24px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(220, 82, 10, 0.3);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 999;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.floating-btn:hover {
  background-color: #c94908;
  transform: translateY(-2px);
}

.floating-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-btn svg {
  width: 18px;
  height: 18px;
}

.floating-call-btn {
  display: flex;
  position: fixed;
  bottom: 84px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #22c55e;
  color: white !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
  z-index: 999;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.floating-call-btn:hover {
  background-color: #1ea951;
  transform: scale(1.05);
}

.floating-call-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE OVERRIDES FOR HERO & FLOATING
   ========================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .floating-btn {
    left: 20px;
    right: 20px;
    bottom: 20px;
    justify-content: center;
    border-radius: 8px;
  }

  .floating-call-btn {
    bottom: 84px;
    left: 20px;
    right: auto;
  }
}

/* ==========================================
   CONCENTRATIONS ACCORDION STYLING
   ========================================== */
.concentrations-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.concentration-item {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-speed) ease;
}

.concentration-item:hover {
  box-shadow: 0 4px 12px rgba(1, 52, 105, 0.05);
}

.concentration-header {
  background-color: #f8fafc;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: background-color var(--transition-speed) ease;
  border-bottom: 1px solid transparent;
}

.concentration-header:hover {
  background-color: #f1f5f9;
}

.concentration-item.active .concentration-header {
  background-color: #f1f5f9;
  border-bottom-color: var(--color-border);
}

.concentration-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary-blue);
  font-family: var(--font-primary);
}

.concentration-arrow {
  width: 10px;
  height: 10px;
  fill: var(--color-orange);
  transition: transform 0.25s ease;
}

.concentration-item.active .concentration-arrow {
  transform: rotate(90deg);
}

.concentration-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #ffffff;
  display: flex;
}

.concentration-content-left-stripe {
  width: 16px;
  background-color: var(--color-primary-blue);
  flex-shrink: 0;
}

.concentration-content-inner {
  padding: 20px;
  flex-grow: 1;
}

.concentration-content-inner .course-table {
  margin: 0;
  border: none;
}

.concentration-content-inner .course-row td {
  border-bottom: 1px solid #f1f5f9;
}

.concentration-content-inner .course-row:last-child td {
  border-bottom: none;
}

/* ==========================================
   ADMISSION REQUIREMENTS TABLE STYLING
   ========================================== */
.admission-table {
  width: 100%;
  max-width: 800px;
  margin-top: 20px;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.admission-row {
  border-bottom: 1px solid var(--color-border);
}

.admission-row:last-child {
  border-bottom: none;
}

.admission-label {
  width: 180px;
  font-weight: 700;
  color: var(--color-primary-blue);
  padding: 20px;
  background-color: #f8fafc;
  vertical-align: top;
  border-right: 1px solid var(--color-border);
}

.admission-value {
  color: var(--color-text-dark);
  font-weight: 400;
  padding: 20px;
  line-height: 1.6;
  vertical-align: top;
}

/* Mobile responsive layout for admission table */
@media (max-width: 768px) {

  .admission-table,
  .admission-table tbody,
  .admission-row,
  .admission-label,
  .admission-value {
    display: block;
    width: 100% !important;
  }

  .admission-table {
    border: none;
    box-shadow: none;
    background-color: transparent;
  }

  .admission-row {
    padding: 15px;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
  }

  .admission-row:last-child {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0;
  }

  .admission-label {
    padding: 0 0 10px 0;
    font-size: 1.05rem;
    background-color: transparent;
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 10px;
  }

  .admission-value {
    padding: 0;
    font-size: 0.95rem;
  }
}