@font-face {
  font-family: 'Helvetica Now Display';
  src: url('../font/HelveticaNowDisplay-Regular.eot');
  src:
    local('Helvetica Now Display Regular'),
    local('HelveticaNowDisplay-Regular'),
    url('../font/HelveticaNowDisplay-Regular.eot?#iefix')
      format('embedded-opentype'),
    url('../font/HelveticaNowDisplay-Regular.woff2') format('woff2'),
    url('../font/HelveticaNowDisplay-Regular.woff') format('woff'),
    url('../font/HelveticaNowDisplay-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Now Display';
  src: url('../font/HelveticaNowDisplay-Medium.eot');
  src:
    local('Helvetica Now Display Medium'),
    local('HelveticaNowDisplay-Medium'),
    url('../font/HelveticaNowDisplay-Medium.eot?#iefix')
      format('embedded-opentype'),
    url('../font/HelveticaNowDisplay-Medium.woff2') format('woff2'),
    url('../font/HelveticaNowDisplay-Medium.woff') format('woff'),
    url('../font/HelveticaNowDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Now Display';
  src: url('../font/HelveticaNowDisplay-Bold.eot');
  src:
    local('Helvetica Now Display Bold'),
    local('HelveticaNowDisplay-Bold'),
    url('../font/HelveticaNowDisplay-Bold.eot?#iefix')
      format('embedded-opentype'),
    url('../font/HelveticaNowDisplay-Bold.woff2') format('woff2'),
    url('../font/HelveticaNowDisplay-Bold.woff') format('woff'),
    url('../font/HelveticaNowDisplay-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

/* ============================================
   CSS Variables & Root Styles
   ============================================ */

:root {
  /* Colors */
  --primary-color: #1f4e99;
  --primary-dark-color: #163a73;
  --primary-light-color: #eaf3ff;
  --secondary-color: #d72638;
  --secondary-light-color: #fcebec;
  --heading-text: #111827;
  --text-color: #4b5563;
  --secondary-text-color: #6b7280;
  --text-white: #fff;
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --bs-primary-rgb: 31, 78, 153;
  --bs-secondary-rgb: 215, 38, 56;

  /* Fonts */
  --font: 'Helvetica Now Display';

  /* Font Sizes - Mobile First */
  --fs-h1: 48px;
  --fs-h2: 40px;
  --fs-h3: 32px;
  --fs-h4: 24px;
  --fs-h5: 20px;
  --fs-h6: 18px;
  --fs-base: 16px;
  --fs-sm: 14px;
  --fs-xs: 12px;

  /* Radius */

  --rounded-sm: 12px;
  --rounded: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

/* ============================================
   Global Styles
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: var(--fs-base);
  color: var(--text-color);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

figure {
  margin: 0;
}

.accessibility {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.accessibility:focus {
  position: static;
  width: auto;
  height: auto;
}

.wrapper {
  width: 100%;
  position: relative;
  overflow: clip;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}
.page-holder {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.block {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}

.rounded-sm {
  border-radius: 12px !important;
}

.rounded {
  border-radius: 20px !important;
}

.border {
  border: 1px solid var(--border-color) !important;
}

/* ============================================
   Heading Tags
   ============================================ */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 700;
}

h1,
.h1 {
  font-size: var(--fs-h1);
}

h2,
.h2 {
  font-size: var(--fs-h2);
}

h3,
.h3 {
  font-size: var(--fs-h3);
}

h4,
.h4 {
  font-size: var(--fs-h4);
}

h5,
.h5 {
  font-size: var(--fs-h5);
}

h6,
.h6 {
  font-size: var(--fs-h6);
}

p:last-child {
  margin-bottom: 0;
}

.fs-sm {
  font-size: var(--fs-sm) !important;
}

.fs-xs {
  font-size: var(--fs-xs);
}

.section-title {
  color: var(--heading-text);
  margin-bottom: 15px;
}

.section-title span {
  color: var(--secondary-color);
}

p.section-content {
  margin-bottom: 30px;
}

.description {
  margin-bottom: 30px;
}

.linear-slider-section .swiper-slide img {
  aspect-ratio: 51/50;
}

.logo-slider {
  overflow: hidden;
}

.logo-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.logo-slider .swiper-slide {
  width: auto;
  flex-shrink: 0;
}

.accordion-collapse {
  transition: height 0.4s ease;
}

.accordion-button {
  padding-left: 0;
  padding-right: 0;
}

.accordion-button {
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.accordion-button::after {
  transition: transform 0.3s ease;
}

.accordion-body {
  animation: fadeIn 0.35s ease;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Card Hover Effect
   ============================================ */

.hover-card,
.hover-img figure img {
  transition: var(--transition-slow);
}

.hover-card:hover {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
}

.hover-img:hover figure img {
  transform: scale(1.05);
}

/* ============================================
   Links & Text
   ============================================ */

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

/* ============================================
   Colors
   ============================================ */

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-primary-dark {
  background-color: var(--primary-dark-color);
}

.bg-primary-light {
  background-color: var(--primary-light-color);
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-secondary-light {
  background-color: var(--secondary-light-color);
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.ls-1 {
  letter-spacing: 1px;
}

.sticky-column {
  position: sticky;
  top: 100px;
}

/* ---------------------
Forms
--------------------- */

input[type='text'],
input[type='email'],
input[type='password'],
input[type='file'],
input[type='date'],
input[type='tel'],
select {
  height: 50px;
  border-radius: 8px;
}

select {
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0);
  padding: 10px 24px;
  padding-right: 40px;
  text-transform: uppercase;
  height: 50px;
  background: url(./../img/icon-select.svg) no-repeat calc(100% - 22px) center;
  color: #888;
}

textarea {
  height: 100px;
  border-radius: 8px;
}

input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='search'],
input[type='number'],
input[type='tel'],
input[type='range'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='datetime'],
input[type='datetime-local'],
input[type='color'],
input[type='file'],
.form-select,
textarea,
textarea.form-control {
  padding-left: 20px;
  border-color: #d0d0d0;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

select:focus-visible {
  border: 1px solid var(--primary-color);
}

/* ── Radio Button Style ── */
.cf7-radio-buttons .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cf7-radio-buttons .wpcf7-list-item {
  margin: 0 !important;
}

.cf7-radio-buttons .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.cf7-radio-buttons .wpcf7-list-item input[type='radio'] {
  display: none;
}

.cf7-radio-buttons .wpcf7-list-item label span {
  display: inline-block;
  padding: 10px 22px;
  border: 1.5px solid var(--border-color);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  background: var(--bg-white);
  transition: all 0.2s ease;
  cursor: pointer;
}

.cf7-radio-buttons .wpcf7-list-item input[type='radio']:checked + span {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(26, 77, 179, 0.25);
}

.cf7-radio-buttons .wpcf7-list-item label span:hover {
  border-color: #1a4db3;
  color: #1a4db3;
}

/* ── File Drop Zone ── */
.cf7-file-upload {
  position: relative;
}

/* Hide default CF7 file input */
.cf7-file-upload .wpcf7-file {
  display: none !important;
}

.file-drop-zone {
  border: 2px dashed #cdd5e0;
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  background: #fafbfc;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
  cursor: pointer;
  position: relative;
}

.file-drop-zone.dragover {
  border-color: #1a4db3;
  background: #f0f4ff;
}

.file-input-hidden {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.file-drop-content {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.file-drop-content i {
  font-size: 36px;
  color: #aab4c8;
  margin-bottom: 12px;
  display: block;
}

.file-drop-content p {
  font-size: 15px;
  color: #444;
  margin-bottom: 8px;
}

.browse-link {
  color: #1a4db3;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  pointer-events: all;
}

.file-formats {
  font-size: 13px;
  color: #999;
}

/* File Selected State */
.file-selected {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.file-selected i {
  font-size: 24px;
  color: #1a4db3;
}

.file-selected span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-remove {
  background: none;
  border: none;
  color: #e74c3c;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: background 0.2s;
}

.file-remove:hover {
  background: rgba(231, 76, 60, 0.1);
}

/* Error state */
.file-drop-zone.error {
  border-color: #e74c3c;
  background: #fff5f5;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  padding: 15px 30px;
  border-radius: var(--rounded-sm);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.btn i,
.btn svg,
.btn img {
  transition: var(--transition-base);
}

.btn:hover i,
.btn:hover svg,
.btn:hover img {
  transform: translateX(3px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #1e7aad;
  border-color: #1e7aad;
  color: var(--bg-white);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-light-color);
  border-color: var(--secondary-light-color);
  color: var(--secondary-color);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.site-logo img {
  width: 120px;
}

.navbar-nav > li {
  margin-right: 40px;
}

.navbar-nav > li:last-child {
  margin-right: 0;
}

.site-header.fixed-header {
  background-color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.home .site-header {
  position: fixed;
  width: 100%;
  z-index: 9999;
}

/* ============================================
   Breadcrumb
   ============================================ */

.breadcrumb-wrap {
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 10px 0;
  background-color: var(--secondary-light-color);
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item {
  color: var(--secondary-color);
}

.breadcrumb-item a,
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-color);
}

/* ============================================
   Header & Navigation
   ============================================ */

.hero-section {
  position: relative;
  min-height: 600px;
  height: 100vh;
  overflow: hidden;
}

.hero-section .hero-img img {
  width: 100%;
  height: 100%;
}

.hero-section .hero-content {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
}

.hero-btn-wrap .hero-btn {
  font-size: var(--fs-h6);
  color: var(--bg-white);
  font-weight: 700;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--bg-white);
  border-radius: var(--rounded-sm);
  width: 200px;
  backdrop-filter: blur(2px);
  transition: var(--transition-base);
}

.hero-btn-wrap .hero-btn i,
.hero-btn-wrap .hero-btn svg,
.hero-btn-wrap .hero-btn img {
  transform: rotate(-45deg);
  transition: var(--transition-base);
}

.hero-btn-wrap .hero-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.hero-btn-wrap .hero-btn:hover i,
.hero-btn-wrap .hero-btn:hover svg,
.hero-btn-wrap .hero-btn:hover img {
  transform: rotate(0);
}

.since span {
  font-size: 70px;
  padding-left: 15px;
  border-left: 8px solid var(--bg-white);
}
/* ============================================
   Global Network
   ============================================ */
.global-network-content-wrap {
  padding: 40px;
  background-color: var(--primary-light-color);
  border-radius: var(--rounded);
}

.global-network-content-wrap .lft {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--rounded);
}

.global-network-content-wrap .global-logo img {
  width: 220px;
}

.global-network-content ul li,
.check-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}

.global-network-content ul li:last-child,
.check-list li:last-child {
  margin-bottom: 0;
}

.global-network-content ul li:before,
.check-list li:before {
  content: '\f058';
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Fontawesome';
  color: var(--secondary-color);
}

.accordion-item,
.accordion-button {
  background-color: transparent;
  border: none;
}

.club-society-accordion .accordion-item {
  color: #c2c2c2;
  border-bottom: 1px solid var(--bg-white);
}

.club-society-accordion .accordion-button {
  color: var(--bg-white);
  font-size: var(--fs-h5);
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  color: var(--bg-white);
  background-color: transparent;
}
.accordion-button:not(.collapsed),
.accordion-button:focus {
  box-shadow: none;
}

.accordion-item:last-of-type {
  border-radius: 0;
}

.club-society-accordion .accordion-button::after {
  filter: brightness(50);
}

.fame-card {
  color: var(--heading-text);
  padding: 20px;
  border-radius: var(--rounded-sm);
  background-color: var(--primary-light-color);
}

.fame-card figure img {
  width: 100%;
  border-radius: var(--rounded-sm);
  aspect-ratio: 127/153;
}

.fame-card .fame-card-body {
  padding-top: 20px;
}

.swiper-slide.swiper-slide-active .fame-card {
  color: var(--bg-white);
  background-color: var(--primary-dark-color);
}

/* ============================================
   Event Card
   ============================================ */

/* ── Featured Card (Left) ── */
.event-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-img {
  position: relative;
  overflow: hidden;
}

.event-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.event-card:hover .event-img img {
  transform: scale(1.04);
}

/* Date Badge */
.date-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #c0392b;
  color: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  text-align: center;
  min-width: 56px;
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

.date-badge .day {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.date-badge .month {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 2px;
  opacity: 0.9;
}

/* event Body */
.event-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-title a {
  color: inherit;
  transition: var(--transition-base);
}

.event-title a:hover {
  color: var(--primary-color);
}

/* ── News List (Right) ── */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 0.3s ease,
    transform 0.2s ease;
  flex: 1;
}

.news-list-item:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  color: inherit;
  text-decoration: none;
}

/* Thumbnail */
.news-list-thumb {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-base);
}

.news-list-item:hover .news-list-thumb img {
  transform: scale(1.06);
}

/* Body */
.news-list-body {
  flex: 1;
  min-width: 0;
}

.news-date {
  font-size: var(--fs-sm);
  color: var(--secondary-color);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.news-title,
.event-title {
  color: var(--heading-text);
}

.news-title {
  font-size: var(--fs-h5);
  font-weight: 700;
  margin-bottom: 6px;
  transition: var(--transition-base);
}

.news-list-item:hover .news-title {
  color: #1a4db3;
}

.cta-section {
  background-color: var(--primary-dark-color);
}

.faqs .accordion-button {
  color: var(--heading-text);
  font-size: var(--fs-h6);
  font-weight: 700;
  padding: 25px 0;
}

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

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

.faqs .accordion-button::after,
.curricular-accordion .accordion-button::after {
  content: '\f055';
  background-image: none;
  font-family: 'Fontawesome';
  color: var(--primary-color);
}

.faqs .accordion-button:not(.collapsed)::after,
.curricular-accordion .accordion-button:not(.collapsed)::after {
  content: '\f056';
}

.intro-feature {
  max-width: 200px;
}

.floating-tag {
  position: absolute;
  bottom: -40px;
  background-color: var(--primary-color);
  padding: 10px 25px;
  border-radius: var(--rounded-sm);
  font-size: var(--fs-h6);
  color: var(--bg-white);
}

.intro-feature:first-child {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid var(--secondary-text-color);
}

.mv-card {
  position: relative;
  border-radius: var(--rounded);
  overflow: hidden;
}

.col-md-6:first-child .mv-card p {
  color: #d5e3ff !important;
}

.mv-card-img {
  position: relative;
  aspect-ratio: 271 / 225;
  overflow: hidden;
}

.mv-card .mv-card-img img {
  transition: var(--transition-slow);
}

.mv-card:hover .mv-card-img img {
  transform: scale(1.08);
}

.mv-card-img:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e5799+0,001e40+100&0+0,0.6+51 */
  background: linear-gradient(
    to bottom,
    rgba(30, 87, 153, 0) 0%,
    rgba(15, 58, 108, 0.6) 51%,
    rgba(0, 30, 64, 0.8) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  z-index: 1;
}

.col-md-6:last-child .mv-card-img:before {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b80f1b+0,b80f1b+100&0+0,0.6+51 */
  background: linear-gradient(
    to bottom,
    rgba(184, 15, 27, 0) 0%,
    rgba(184, 15, 27, 0.6) 51%,
    rgba(184, 15, 27, 0.8) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.mv-card-body {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 30px;
  z-index: 2;
}

.roadmap-card {
  color: var(--bg-white);
  height: 100%;
  padding: 30px 30px 40px 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--rounded);
}

.roadmap-card .num {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: var(--secondary-color);
  border-radius: var(--rounded-sm);
}

.icon-text-box {
  padding: 40px;
  background-color: var(--primary-light-color);
  border-radius: var(--rounded);
}

.icon-text-box .icon {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: var(--rounded-sm);
  background-color: rgba(0, 30, 64, 0.05);
}

.accredited-item {
  padding: 20px 10px;
  border-radius: var(--rounded-sm);
}

.accredited-item figure img {
  height: 120px;
  object-fit: contain;
}

.accredited-item .title span {
  color: var(--secondary-color);
}

.message-item {
  margin-bottom: 50px;
}

.message-item:last-child {
  margin-bottom: 0;
}

.message-item .message-img {
  position: relative;
  padding: 8px;
  border-radius: var(--rounded);
  background-color: var(--bg-white);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.message-item .message-img:before,
.message-item .message-img:after {
  content: '';
  position: absolute;
  z-index: -1;
}

.message-item .message-img:before {
  top: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(0, 30, 64, 0.05);
}

.message-item .message-img:after {
  right: -30px;
  bottom: -30px;
  width: 80px;
  height: 80px;
  border-radius: var(--rounded-sm);
  background-color: var(--primary-light-color);
}

.message-item .message-img img {
  border-radius: var(--rounded-sm);
}

.member-card {
  border: 1px solid var(--border-color);
  border-radius: var(--rounded-sm);
  overflow: hidden;
}

.member-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.member-card .member-img img {
  transition: var(--transition-slow);
}

.member-card:hover .member-img img {
  transform: scale(1.05);
}

.member-card-body {
  padding: 15px 20px;
}

.nav-pills .nav-link {
  color: var(--heading-text);
  font-weight: 500;
  padding-left: 20px;
  padding-right: 20px;
  background-color: var(--primary-light-color);
  border-radius: 0;
}

.nav-pills .nav-item:first-child .nav-link {
  border-top-left-radius: var(--rounded-sm);
  border-bottom-left-radius: var(--rounded-sm);
}
.nav-pills .nav-item:last-child .nav-link {
  border-top-right-radius: var(--rounded-sm);
  border-bottom-right-radius: var(--rounded-sm);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bg-white);
  background-color: var(--primary-color);
}

.mv-item {
  color: var(--primary-light-color);
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--rounded);
}

.mv-item .icon {
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: var(--rounded-sm);
  background-color: rgba(255, 255, 255, 0.2);
}

.achivement-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  padding: 10px;
  border-radius: var(--rounded-sm);
  background-color: var(--bg-white);
}

.industry-partner-card {
  position: relative;
  border-radius: var(--rounded);
  overflow: hidden;
}

.industry-partner-card .title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  padding: 10px;
  font-weight: 500;
  background-color: var(--secondary-color);
}

.logo-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.logo-wrap .corporate-logo {
  padding: 30px;
  aspect-ratio: 4/2.5;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.logo-wrap .corporate-logo:hover {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
}

.logo-wrap .corporate-logo img,
.logo-wrap .corporate-logo {
  transition: var(--transition-base);
}

.logo-wrap .corporate-logo:hover img {
  transform: scale(1.05);
}

.logo-wrap .corporate-logo:nth-child(4n),
.logo-wrap .corporate-logo:last-child {
  border-right: none;
}

.galley-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    'item-1 item-1 item-2'
    'item-3 item-4 item-2';
  gap: 20px;
}

.galley-grid .item-1 {
  grid-area: item-1;
}
.galley-grid .item-2 {
  grid-area: item-2;
}
.galley-grid .item-3 {
  grid-area: item-3;
}
.galley-grid .item-4 {
  grid-area: item-4;
}

.galley-grid .gallery-item.item-1 img,
.galley-grid .gallery-item.item-4 img,
.galley-grid .gallery-item.item-3 img {
  height: 300px;
}

.galley-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galley-grid .gallery-item figcaption {
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  padding: 20px;
  background-color: rgba(0, 30, 64, 0.6);
  backdrop-filter: blur(3px);
  transition: var(--transition-base);
}

.galley-grid .gallery-item:hover figcaption {
  bottom: 0;
}

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

.album-item .album-thumb {
  aspect-ratio: 1440/961;
}

.count-img {
  padding: 8px 15px;
  border-radius: 12px 0 0 0;
}

.album-item .album-body {
  padding: 20px;
}

.image-item {
  aspect-ratio: 4/3;
}

.image-item:before,
.image-item .plus {
  opacity: 0;
  transition: var(--transition-base);
}

.image-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 30, 64, 0.5);
  z-index: 1;
}

.image-item:hover .plus,
.image-item:hover:before {
  opacity: 1;
}

.video-thumb {
  aspect-ratio: 4/2.8;
}

.play-btn {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: var(--rounded-sm);
  background-color: rgba(0, 30, 64, 0.8);
}

.download-item {
  margin-bottom: 50px;
}

.download-item:last-child {
  margin-bottom: 0;
}

.download-item .title-line:before {
  content: '';
  position: absolute;
  top: 46%;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
}

.course-features {
  background-color: #001e40;
}

.course-feature-item {
  border-right: 1px solid var(--border-color);
}

.course-feature-item:last-child {
  border-right: none;
}

.codinator-area {
  padding: 50px 40px;
  border-radius: var(--rounded-sm);
  border-left: 4px solid var(--secondary-color);
}

.codinator-detail figure {
  width: 45px;
  height: 45px;
}

.requirement-item .icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: var(--primary-color);
  background-color: var(--primary-light-color);
}

.requirement-item:nth-child(2) .icon {
  color: var(--secondary-color);
  background-color: var(--secondary-light-color);
}

.requirement-item:nth-child(3) .icon {
  color: #01ac01;
  background-color: #dbffdb;
}

.process-item:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 23px;
  width: 1px;
  height: 100%;
  background-color: var(--bg-white);
}

.process-item:last-child:before {
  content: unset;
}

.process-item .num {
  width: 45px;
  height: 45px;
  line-height: 45px;
}

.icon-wrap {
  width: 45px;
  height: 45px;
  line-height: 45px;
}
.large-card-why-us figure img {
  height: 150px;
}
.side-card-why-us {
  background-color: #001e40;
}
.side-card-why-us .icon-wrap,
.side-card-why-us .focus-area {
  background-color: rgba(255, 255, 255, 0.2);
}

.curricular-accordion ul li {
  position: relative;
  padding: 15px 0 15px 22px;
  border-bottom: 1px solid var(--bg-white);
}

.curricular-accordion ul li:last-child {
  border-bottom: none;
}

.curricular-accordion ul li:before {
  content: '\f192';
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -9px;
  font-family: 'Fontawesome';
  font-size: var(--fs-xs);
  color: var(--primary-color);
}

.curricular-accordion .accordion-button:not(.collapsed) {
  color: var(--heading-text);
}

.fee-card {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.discount-contents ul {
  column-count: 2;
}

.discount-contents ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.discount-contents ul li:before {
  content: '\f058';
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Fontawesome';
  color: var(--secondary-color);
}

.internship-logo img {
  height: 60px;
  object-fit: contain;
}

.student-testimonials-slider .swiper-slide {
  padding: 30px;
}

.student-testimonials-slider .swiper-slide .quote {
  width: 25px;
}

.student-area figure {
  width: 45px;
  height: 45px;
}

.opportunity-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.industry_integration {
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-bar-wrap .progress {
  background-color: rgba(255, 255, 255, 0.1);
}

.club-item {
  font-size: var(--fs-h6);
  padding: 20px;
  background-color: var(--primary-color);
  margin-bottom: 15px;
  transition: var(--transition-base);
}

.club-item:last-child {
  margin-bottom: 0;
}

.club-item:hover {
  background-color: var(--secondary-color);
}

.intro-item .intro-descsription {
  padding-left: 20px;
  border-left: 4px solid var(--primary-color);
}

.lic-library .floating-tag {
  left: -20px;
  width: 300px;
}

.event-grid-img-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  grid-template-areas:
    'item-1 item-2'
    'item-1 item-3';
}

.item-1 {
  grid-area: item-1;
}
.item-2 {
  grid-area: item-2;
}
.item-3 {
  grid-area: item-3;
}

.club-event-section ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-weight: 600;
}

.club-event-section ul li:last-child {
  margin-bottom: 0;
}

.club-event-section ul li::before {
  content: '\f058';
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Fontawesome';
  color: var(--primary-color);
}

.almuni-cta-section {
  position: relative;
  padding: 150px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  isolation: isolate;
}

.almuni-cta-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 78, 153, 0.9);
  z-index: -1;
}

.contact-page .contact-item a {
  color: var(--text-white);
}

.notice .accordion-button:not(.collapsed) {
  color: var(--heading-text);
}

/* ============================================
   Student Card
   ============================================ */

.student-card {
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--rounded);
}

.student-card .student-card-img {
  position: relative;
  aspect-ratio: 262 / 209;
  border-radius: var(--rounded-sm);
}

.student-card .student-card-img .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px 12px;
}

/* ============================================
   Footer Section
   ============================================ */

.site-footer {
  background-color: var(--heading-text);
}

.footer-top {
  padding: 50px 0;
}
.site-footer,
.footer-top a,
.si-wrap a {
  color: rgba(255, 255, 255, 0.6);
}

.si-wrap a {
  display: inline-block;
  margin-right: 15px;
}

.si-wrap a:hover,
.site-footer a:hover,
.footer a:hover,
.si-wrap a:hover {
  color: var(--bg-white);
}

.footer-title {
  color: var(--bg-white);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

#footer-menu li {
  margin-bottom: 8px;
}

#footer-menu li.current_page_item > a {
  color: var(--bg-white);
}

#footer-menu li:last-child,
.contact-item:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.4);
  padding: 15px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: var(--bg-white);
}

.footer-bottom a:hover {
  color: var(--secondary-color);
}

.page-banner {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.page-banner-img {
  position: absolute;
  top: 0;
  left: 0;
}

.page-banner-img:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.page-banner-img,
.page-banner-img:before {
  width: 100%;
  height: 100%;
}

/* ============================================
   Blog Card
   ============================================ */

/* ── Blog Card ── */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px);
}

/* ── Image ── */
.blog-card-img {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4/2.8;
  flex-shrink: 0;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

/* ── Body ── */
.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Date ── */
.post-date {
  color: var(--secondary-text-color);
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: 400;
}

/* ── Title ── */
.blog-title {
  color: var(--heading-text);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-title:hover {
  color: var(--secondary-color);
}

/* ── Excerpt ── */
.blog-excerpt {
  color: var(--text-color);
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Read More ── */
.read-link {
  font-size: 14px;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-base);
  margin-top: auto;
}

.read-link:hover {
  color: var(--secondary-color);
  gap: 10px;
}

.read-link i {
  font-size: 13px;
  transition: var(--transition-base);
}

.read-link:hover i {
  transform: translateX(2px);
}

/* ============================================
   Course Card
   ============================================ */
.course-card .course-card-img {
  aspect-ratio: 30/23;
  overflow: hidden;
}

.course-card .course-card-img img {
  transition: var(--transition-slow);
}

.course-card:hover .course-card-img img {
  transform: scale(1.05);
}

.course-card .course-card-body {
  padding: 10px 20px;
  background-color: var(--secondary-color);
  height: 90px;
}

.course-card .course-card-body .right-arrow {
  transform: rotate(-45deg);
  transition: var(--transition-base);
}

.course-card:hover .course-card-body .right-arrow {
  transform: rotate(0);
}
