:root {
  --section-height: min(90vh, 1200px);
  --overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.40) 80%);
  --text-color: #fff;
  --content-max-width: 1100px;
  --content-padding: clamp(16px, 4vw, 40px);
}

.hero-video {
  position: relative;
  height: var(--section-height);
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--text-color);
  isolation: isolate;
  background: #000;
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: -1;
}

.hero-content {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: var(--content-padding);
  text-wrap: balance;
}

.hero-content h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 6vw, 56px);
  line-height: 1.5;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.hero-content p {
  margin: 0;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.5;
  max-width: 100%;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  opacity: 0.95;
  text-align: center;
}

/* rev2 */
.page-header {
  background-size: cover;
}

body .main-nav__main-navigation .main-nav__navigation-box>li ul>li>a {
  font-size: 14px;
}

.center-logo .main-nav-one .logo-box {
  padding-left: 20px;
  padding-right: 20px !important;
}

/* end rev2 */

/* rev 3 */
.btn-link {
  color: #004f93;
}

#accordion .btn-link {
  font-size: 22px;
}

.about-four.sade::before {
  background-image: url(../images/backgrounds/event-bg-1-2.jpg);
}

.ss-image {
  width: 100%;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
}

body .main-nav__main-navigation .main-nav__navigation-box>li ul {
  width: 300px;
}

/* Card Container */
.glass-card {
  position: relative;
  border-radius: 5px;
  /* Smooth rounded corners */
  overflow: hidden;
  /* Keeps image inside the corners */
  height: 450px;
  /* Fixed height for uniformity */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* The Image */
.glass-card .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures image fills the box without stretching */
  transition: transform 0.6s ease;
}

/* Hover Effect: Zoom Image */
.glass-card:hover .card-img {
  transform: scale(1.05);
}

/* The Glass Overlay */
.glass-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;

  /* The Magic Glass Effect */
  background: rgba(0, 79, 147, 0.75);
  /* Dark Blue/Black with opacity */
  backdrop-filter: blur(12px);
  /* Blurs the image behind */
  -webkit-backdrop-filter: blur(12px);
  /* Safari support */
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  /* Subtle top shine */

  color: white;
  transition: background 0.3s ease;
}

/* Make overlay slightly darker on hover for readability */
.glass-card:hover .glass-overlay {
  background: rgba(0, 79, 147, 0.85);
}

/* Typography Styling */
.badge-category {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fcbb76;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.card-title {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.card-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Limits text to 2 lines with ... */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.read-more-link:hover {
  color: #fcbb76;
  text-decoration: none;
}

/* end rev 3 */

.navbar-brand img {
  zoom: 1.2;
}

/* 1. General Navbar Styling */
body .navbar-nav .nav-link {
  color: #004f93;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  padding: 0 15px !important;
  font-family: "Raleway", sans-serif;
}

body .navbar-light .navbar-nav .nav-link {
  color: #004f93;
}

.navbar-nav .dropdown-item {
  color: #000;
}

.navbar-nav .nav-link:hover {
  color: #fcbb76;
  /* Your Brand Gold */
}

/* 2. Make Dropdowns open on Hover (Desktop Only) */
@media (min-width: 992px) {
  .dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* 3. Nested Dropdown Support (Submenus) */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  /* Push it to the right side */
  margin-top: -6px;
  margin-left: -1px;
  border-radius: 0.25rem;
}

/* Ensure nested menu opens on hover */
.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

/* Arrow indicator for submenus */
.dropdown-submenu>a::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
  float: right;
  margin-top: 6px;
}

nav.navbar {
  position: fixed;
  width: 100%;

  background: rgba(255, 255, 255, 0.75);
  /* Dark Blue/Black with opacity */
  backdrop-filter: blur(12px);
  /* Blurs the image behind */
  -webkit-backdrop-filter: blur(12px);
  /* Safari support */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  /* Subtle top shine */
}

.page-header {
  padding-top: 210px;
}

.bb-gray {
  border-bottom: 1px solid #e5e5e5;
}

.history-one__image>img {
  width: 90%;
}

.about-four__content {
  font-size: 16px;
  line-height: 28px;
  color: #252930;
}

.dropdown-menu {
      background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}