/* ==========================================================
   ACREX INDIA 2026 — Global Stylesheet
   Technology: Bootstrap 5 + Custom CSS
   Font: Montserrat (Google Fonts)
   ========================================================== */

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --acrex-blue: #0054A6;
  --acrex-blue-dark: #003f80;
  --acrex-blue-light: #1a68b8;
  --acrex-red: #ED1C24;
  --acrex-red-dark: #c0141b;
  --ishrae-blue: #1B3664;
  --ishrae-blue-dark: #122549;
  --gold: #FDB913;
  --gold-dark: #e0a50f;
  --dark: #212529;
  --gray: #6c757d;
  --light-bg: #F8F9FA;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(0,84,166,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Global Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: var(--acrex-blue);
  transition: color var(--transition);
}

a:hover { color: var(--acrex-red); }

img { max-width: 100%; height: auto; }

/* ─── Utility Classes ───────────────────────────────────── */
.text-acrex-blue { color: var(--acrex-blue) !important; }
.text-acrex-red  { color: var(--acrex-red) !important; }
.text-ishrae     { color: var(--ishrae-blue) !important; }
.text-gold       { color: var(--gold) !important; }

.bg-acrex-blue  { background-color: var(--acrex-blue) !important; }
.bg-acrex-red   { background-color: var(--acrex-red) !important; }
.bg-ishrae      { background-color: var(--ishrae-blue) !important; }
.bg-gold        { background-color: var(--gold) !important; }

.btn-acrex-blue {
  background-color: var(--acrex-blue);
  color: #fff;
  border: 2px solid var(--acrex-blue);
  padding: 12px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.btn-acrex-blue:hover {
  background-color: var(--acrex-blue-dark);
  border-color: var(--acrex-blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,84,166,0.35);
}

.btn-acrex-red {
  background-color: var(--acrex-red);
  color: #fff;
  border: 2px solid var(--acrex-red);
  padding: 12px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.btn-acrex-red:hover {
  background-color: var(--acrex-red-dark);
  border-color: var(--acrex-red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(237,28,36,0.35);
}

.btn-outline-white {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 12px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-outline-white:hover {
  background-color: #fff;
  color: var(--acrex-blue);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
  padding: 12px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-gold:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(253,185,19,0.4);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  position: relative;
  margin-bottom: 1rem;
}
.section-title span { color: var(--acrex-red); }

.section-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--acrex-red);
  margin-bottom: 0.5rem;
}

.section-divider {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--acrex-blue), var(--acrex-red));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.badge-edition {
  background: linear-gradient(135deg, var(--acrex-red), #c0141b);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
}

/* ─── HEADER REDESIGN ─────────────────────────────────── */
:root {
  --acrex-teal: #46B6B7;
  --acrex-teal-dark: #3a9798;
}

.header-top-branding {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  z-index: 1050;
}

.btn-interest-top {
  display: inline-block;
  background: #008894;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 136, 148, 0.25);
  transition: all var(--transition);
  text-decoration: none;
}
.btn-interest-top:hover {
  background: #00707a;
  color: #fff;
  transform: translateY(-2px);
}

.header-nav {
  background-color: var(--acrex-teal) !important;
  padding: 0 !important;
  position: sticky;
  top: 0;
  z-index: 1040;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.header-nav .nav-link {
  color: #fff !important;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 18px 10px !important;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.header-nav .nav-link:hover,
.header-nav .nav-link.active {
  background: rgba(0,0,0,0.08);
}

.header-nav .dropdown-menu {
  border: none;
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow-md);
  margin-top: 0;
  padding: 0.5rem 0;
}

.header-nav .dropdown-item {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  color: var(--dark);
}

.header-nav .dropdown-item:hover {
  background: var(--light-bg);
  color: var(--acrex-teal);
}

.btn-register-header {
  display: inline-block;
  background: linear-gradient(to right, #46B6B7, #26ab8c);
  color: #fff;
  padding: 6px 18px;
  border: 2px solid #fff;
  border-radius: 3px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-register-header:hover {
  background: #fff;
  color: var(--acrex-teal);
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

/* Mobile Toggle Icon Color */
.navbar-toggler i {
  color: #fff !important;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
  .header-top-branding { padding: 10px 0; }
  .header-top-branding img { height: 60px !important; }
  .header-nav .nav-link {
    padding: 12px 20px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin: 0;
  }
  .btn-register-header {
    margin: 15px 20px;
    display: block;
    text-align: center;
  }
}

/* ─── Page Header / Breadcrumb ──────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--ishrae-blue) 0%, var(--acrex-blue) 60%, #1a68b8 100%);
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.page-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.page-hero .breadcrumb-item {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.8); }
.page-hero .breadcrumb-item a:hover { color: var(--gold); }

/* ─── HERO SLIDER (Swiper) ──────────────────────────────── */
.hero-slider {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--ishrae-blue);
}

.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: transform 6s ease;
}

.swiper-slide-active .slide-img {
  transform: scale(1.1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,84,166,0.9) 0%, rgba(0,84,166,0.4) 50%, transparent 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 0 15px;
}

.slide-subtitle {
  display: inline-block;
  background: rgba(253,185,19,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.3s;
}

.slide-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.5s;
}

.slide-desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.7s;
}

.slide-cta {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.9s;
}

.swiper-slide-active .slide-subtitle,
.swiper-slide-active .slide-title,
.swiper-slide-active .slide-desc,
.swiper-slide-active .slide-cta {
  opacity: 1;
  transform: translateY(0);
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  transition: all var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: 900;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--acrex-red);
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
  width: 12px;
  height: 12px;
  transition: all var(--transition);
}

.swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
  width: 30px;
  border-radius: 10px;
}

/* ─── Hero Scroll Down ────────────────────────────────── */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: #fff;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
  40% {transform: translateX(-50%) translateY(-10px);}
  60% {transform: translateX(-50%) translateY(-5px);}
}
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--ishrae-blue) 0%, var(--acrex-blue) 55%, #1a68b8 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Animated grid pattern */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
  from { transform: translateY(0); }
  to   { transform: translateY(60px); }
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: var(--acrex-red);
  top: -150px; right: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: var(--gold);
  bottom: -100px; left: -80px;
  animation-delay: 3s;
}
.hero-orb-3 {
  width: 250px; height: 250px;
  background: #fff;
  top: 40%; left: 40%;
  animation-delay: 6s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.05); }
  66%       { transform: translate(-15px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-title .brand-name {
  display: block;
  font-size: 1.1em;
  background: linear-gradient(90deg, #fff, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-bottom: 1.5rem;
  max-width: 540px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2.5rem;
}

.hero-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 8px 16px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-meta .meta-item i {
  color: var(--gold);
  font-size: 1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-graphic {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Central glowing card in hero */
.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 40px 35px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(253,185,19,0.08) 30%, transparent 60%);
  animation: rotateBg 6s linear infinite;
}

@keyframes rotateBg {
  to { transform: rotate(360deg); }
}

.hero-card .event-year {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #fff, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-card .event-edition {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.hero-card .event-name {
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
}

.hero-card .climo-badge {
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 10px 18px;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* Floating countdown / stats badge */
.hero-badge {
  position: absolute;
  background: var(--acrex-red);
  color: #fff;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  animation: badgeFloat 3s ease-in-out infinite;
}

.hero-badge-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.hero-badge-2 {
  bottom: 15%;
  left: -10%;
  background: var(--gold);
  color: var(--dark);
  animation-delay: 1.5s;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ─── STATISTICS / MARKET INSIGHTS ─────────────────────── */
#stats {
  background: var(--ishrae-blue);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  top: -2px; left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--acrex-red), var(--gold), var(--acrex-blue));
}

.stat-card {
  text-align: center;
  color: #fff;
  padding: 20px;
  position: relative;
}

.stat-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.stat-card:last-child::after { display: none; }

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-card .stat-icon {
  font-size: 2rem;
  color: rgba(255,255,255,0.2);
  display: block;
  margin-bottom: 0.5rem;
}

/* ─── MARKET GROWTH SECTION ─────────────────────────────── */
#market-growth {
  background: var(--light-bg);
  padding: 80px 0;
}

.growth-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 35px;
  border: 1px solid rgba(0,84,166,0.08);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.growth-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.growth-value {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--acrex-blue);
  line-height: 1;
}

.growth-value.red { color: var(--acrex-red); }
.growth-value.gold { color: var(--gold-dark); }

.growth-arrow {
  font-size: 2rem;
  color: var(--acrex-blue);
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(8px); }
}

/* ─── ABOUT SECTION ─────────────────────────────────────── */
#about {
  padding: 90px 0;
  background: var(--white);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1.4rem;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--acrex-blue), var(--acrex-blue-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.about-feature-text h6 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--dark);
}

.about-feature-text p {
  font-size: 0.84rem;
  color: var(--gray);
  margin: 0;
}

.about-image-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.about-image-box::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid var(--acrex-blue);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--acrex-blue) 0%, var(--ishrae-blue) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* ─── THEMES / HIGHLIGHTS SECTION ──────────────────────── */
#highlights {
  padding: 90px 0;
  background: var(--light-bg);
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(0,84,166,0.08);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--acrex-blue), var(--acrex-red));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  transition: all var(--transition);
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.1) rotate(-5deg);
}

.hi-blue    { background: rgba(0,84,166,0.1);   color: var(--acrex-blue); }
.hi-red     { background: rgba(237,28,36,0.1);  color: var(--acrex-red);  }
.hi-gold    { background: rgba(253,185,19,0.12); color: var(--gold-dark);  }
.hi-ishrae  { background: rgba(27,54,100,0.1);  color: var(--ishrae-blue); }
.hi-green   { background: rgba(40,167,69,0.1);  color: #28a745; }
.hi-purple  { background: rgba(111,66,193,0.1); color: #6f42c1; }

.highlight-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.highlight-card p {
  font-size: 0.84rem;
  color: var(--gray);
  margin: 0;
}

/* ─── CONCURRENT EVENTS ─────────────────────────────────── */
#concurrent {
  padding: 90px 0;
  background: var(--white);
}

.concurrent-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  height: 100%;
}

.concurrent-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.concurrent-banner {
  padding: 40px 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.concurrent-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='20' cy='20' r='10'/%3E%3C/g%3E%3C/svg%3E");
}

.concurrent-banner .cc-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.8rem;
  position: relative;
}

.concurrent-banner h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  position: relative;
}

.concurrent-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 0.83rem;
  position: relative;
  margin: 0;
}

.concurrent-body {
  padding: 24px 28px;
  background: #fff;
}

.concurrent-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.concurrent-body ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--dark);
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}

.concurrent-body ul li:last-child { border-bottom: none; }

.concurrent-body ul li i {
  color: var(--acrex-blue);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ─── MARQUEE / ASSOCIATIONS ────────────────────────────── */
#associations {
  padding: 60px 0;
  background: var(--light-bg);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.assoc-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  padding: 16px 28px;
  min-width: 160px;
  height: 72px;
  box-shadow: var(--shadow-sm);
  color: var(--gray);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  transition: all var(--transition);
  white-space: nowrap;
}

/* ─── CTA STRIP ─────────────────────────────────────────── */
#cta-strip {
  background: linear-gradient(135deg, var(--acrex-blue) 0%, var(--ishrae-blue) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(253,185,19,0.08) 0%, transparent 50%);
}

#cta-strip .cta-text {
  color: #fff;
  position: relative;
}

#cta-strip h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
}

#cta-strip p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

/* ─── FOOTER ────────────────────────────────────────────── */
#footer {
  background: var(--ishrae-blue);
  color: rgba(255,255,255,0.85);
  padding: 70px 0 0;
}

#footer h5 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

#footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

#footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer ul li {
  margin-bottom: 0.6rem;
}

#footer ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.87rem;
  font-weight: 500;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}

#footer ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

#footer ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

#footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.9rem;
}

#footer .footer-contact li::before { display: none; }
#footer .footer-contact li a::before { display: none; }
#footer .footer-contact li a { color: var(--gold); }

#footer .footer-contact li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

#footer .footer-logo {
  height: 50px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 1rem;
}

#footer .footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  margin-right: 6px;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 18px 0;
  margin-top: 50px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.footer-bottom a {
  color: var(--gold);
  font-weight: 600;
}

/* ─── FLOATING SOCIAL SIDEBAR ───────────────────────────── */
#social-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.social-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 1rem;
  transition: all var(--transition);
  position: relative;
}

.social-float-btn:hover {
  width: 52px;
  color: #fff;
}

.sf-fb   { background: #1877f2; }
.sf-li   { background: #0a66c2; }
.sf-ig   { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sf-wa   { background: #25d366; }
.sf-yt   { background: #ff0000; }

/* ─── SCROLL TO TOP ─────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 50px;
  width: 44px;
  height: 44px;
  background: var(--acrex-blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 999;
}

#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
}

#scrollTop:hover {
  background: var(--acrex-red);
  transform: translateY(-3px);
}

/* ─── ANIMATIONS ────────────────────────────────────────── */
[data-aos] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-up"]   { transform: translateY(30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-right"]{ transform: translateX(-30px); }
[data-aos].aos-animate { opacity: 1; transform: translate(0); }

/* ─── INNER PAGE CONTENT ────────────────────────────────── */
.content-section {
  padding: 80px 0;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px;
  border: 1px solid rgba(0,84,166,0.08);
  box-shadow: var(--shadow-sm);
  height: auto;
  transition: all var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.info-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 35px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--acrex-blue), var(--acrex-red));
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--acrex-blue);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--acrex-blue);
}

.timeline-item h6 {
  font-weight: 700;
  color: var(--acrex-blue);
  margin-bottom: 0.25rem;
}

.timeline-item p {
  font-size: 0.87rem;
  color: var(--gray);
  margin: 0;
}

/* ─── CONTACT FORM ──────────────────────────────────────── */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 45px;
  box-shadow: var(--shadow-md);
}

.form-control, .form-select {
  border-radius: var(--radius-sm);
  border: 1.5px solid #dee2e6;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  transition: all var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--acrex-blue);
  box-shadow: 0 0 0 3px rgba(0,84,166,0.12);
}

.form-label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.45rem;
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 991.98px) {
  #mainNav .navbar-nav .nav-link {
    padding: 0.6rem 1rem;
    border-bottom: 1px solid #f0f0f0;
  }
  #mainNav .navbar-nav .nav-link::after { display: none; }
  .btn-register-nav { margin: 10px; }
  #mainNav .navbar-collapse {
    padding: 1rem 0;
    border-top: 2px solid var(--acrex-blue);
    margin-top: 0.5rem;
  }
  .hero-content { padding: 80px 0 60px; }
  .hero-card { margin-top: 30px; }
  .hero-badge { display: none; }
  #social-float { display: none; }
  .section-title { font-size: 1.6rem; }
  .hero-title { font-size: 1.9rem; }
}

@media (max-width: 575.98px) {
  #hero { min-height: auto; }
  .hero-content { padding: 60px 0 40px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-acrex-blue,
  .hero-cta .btn-outline-white { width: 100%; text-align: center; }
  #stats .col-4 { flex: 0 0 100%; max-width: 100%; }
  #stats .stat-card::after { display: none; }
  .concurrent-banner { padding: 28px 22px; }
  .contact-form-wrap { padding: 25px; }
  .page-hero h1 { font-size: 1.6rem; }
}

/* ─── MARKET INTELLIGENCE REDESIGN ─────────────────────── */
.stats-section-dark {
  background: var(--ishrae-blue);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--gold);
}

.stat-item-premium {
  padding: 10px;
}

.stat-item-premium i {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-bottom: 0.8rem;
}

.stat-number-wrap {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-number-wrap.highlight {
  color: var(--gold);
}

.stat-number-wrap span {
  font-size: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.stat-label-wrap {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  margin-top: 5px;
}

.market-intelligence-premium {
  padding: 90px 0;
  background: #fff;
}

.mi-subtitle {
  font-size: 0.85rem;
  font-weight: 800;
  color: #ff3c3b; /* Accent red from screenshot */
  letter-spacing: 1px;
  display: block;
  margin-bottom: 1rem;
}

.mi-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.mi-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--acrex-blue), var(--acrex-red));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.mi-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.btn-mi-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background: var(--acrex-blue);
  color: #fff;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-mi-primary:hover {
  background: #004085;
  transform: translateY(-2px);
  color: #fff;
}

.growth-card-modern {
  background: #fff;
  padding: 45px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.02);
  transition: transform 0.3s ease;
}

.growth-card-modern:hover {
  transform: translateY(-8px);
}

.growth-card-modern .val {
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--acrex-blue);
  line-height: 1;
}

.growth-card-modern.highlight .val {
  color: #fd2c2b; /* Matches red in screenshot */
}

.growth-card-modern .lab {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 15px;
}

.growth-card-modern .lab span {
  font-weight: 500;
  color: var(--gray);
}

.mi-cagr-wrap .cagr-arrow {
  font-size: 2.5rem;
  color: var(--acrex-blue);
  margin-bottom: 5px;
}

.mi-cagr-wrap .cagr-val {
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--acrex-blue);
}

.mi-cagr-wrap .cagr-period {
  font-size: 0.8rem;
  color: var(--gray);
}

.mi-small-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 25px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.01);
}

.mi-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.mi-icon.blue {
  background: rgba(0,84,166,0.08);
  color: var(--acrex-blue);
}

.mi-icon.red {
  background: rgba(253,44,43,0.08);
  color: #fd2c2b;
}

.mi-info .v {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--acrex-blue);
}

.mi-info .l {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
}

@media (max-width: 767.98px) {
  .growth-card-modern { padding: 30px 20px; }
  .growth-card-modern .val { font-size: 2.8rem; }
  .stat-number-wrap { font-size: 2.5rem; }
  .mi-title { font-size: 2rem; }
}

/* ─── MOBILE SIDEBAR PREMIUM ──────────────────────────── */
.mobile-sidebar {
  width: 320px !important;
  border-right: none !important;
  box-shadow: 10px 0 40px rgba(0,0,0,0.1) !important;
}

.sidebar-header-premium {
  padding: 35px 25px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-profile-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-profile-header .avatar-wrap img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 2px solid #f8f9fa;
  padding: 2px;
}

.user-profile-header .user-info h6 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}

.user-profile-header .user-info span {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 500;
}

.sidebar-theme-switcher {
  background: #fff;
}

.sidebar-theme-switcher .section-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.theme-btn-group {
  display: flex;
  gap: 5px;
  background: #f1f3f5;
  padding: 5px;
  border-radius: 12px;
}

.theme-btn-group .btn {
  flex: 1;
  border: none;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px;
  border-radius: 10px;
  color: #666;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-btn-group .btn i {
  margin-right: 5px;
}

.theme-btn-group .btn.active {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.sidebar-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav-list li {
  margin-bottom: 4px;
}

.sidebar-nav-list li a,
.sidebar-nav-list li button {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  color: #444;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s ease;
  background: transparent;
  border: none;
  width: 100%;
}

.sidebar-nav-list li a i,
.sidebar-nav-list li button i {
  font-size: 1.25rem;
  color: #999;
  transition: color 0.2s ease;
}

.sidebar-nav-list li a:hover,
.sidebar-nav-list li button:hover {
  background: rgba(0,84,166,0.06);
  color: var(--acrex-blue);
}

.sidebar-nav-list li a:hover i,
.sidebar-nav-list li button:hover i {
  color: var(--acrex-blue);
}

.sidebar-nav-list li a.active {
  background: rgba(0,84,166,0.08);
  color: var(--acrex-blue);
}

.sidebar-nav-list li a.active i {
  color: var(--acrex-blue);
}

.sidebar-submenu {
  margin: 5px 0 10px;
}

.sidebar-submenu a {
  display: block;
  padding: 10px 0 10px 60px !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  color: #777 !important;
  border-radius: 0 !important;
}

.sidebar-submenu a:hover {
  background: transparent !important;
  color: var(--acrex-blue) !important;
}

.btn-register-sidebar {
  display: block;
  padding: 16px;
  background: var(--acrex-blue);
  color: var(--white);
  border-radius: 15px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 20px rgba(0,84,166,0.15);
  transition: all 0.3s ease;
}

.btn-register-sidebar:hover {
  background: #004085;
  transform: translateY(-2px);
  color: #fff;
}

.logout-wrap {
  margin-top: 20px;
}

.logout-wrap a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #888;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 22px;
  transition: color 0.2s ease;
}

.logout-wrap a:hover {
  color: #dc3545;
}

.logout-wrap a i {
  font-size: 1.2rem;
}

/* =========================================
   PREMIUM HEADER REDESIGN STYLES
   ========================================= */

/* Navbar Main Container & Background */
.bg-acrex {
  background: linear-gradient(135deg, var(--acrex-blue), var(--ishrae-blue)) !important;
}

.navbar {
  transition: all 0.3s ease;
  padding: 0.8rem 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

/* Navbar Links */
.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--white) !important;
  transition: all 0.3s ease;
  padding: 1.25rem 0.85rem !important;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold-dark) !important;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--gold-dark);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 70%;
}

/* Dropdown Menus */
.dropdown-menu {
  border: none;
  border-top: 3px solid var(--gold-dark);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  animation: fadeInDown 0.3s ease forwards;
}

.dropdown-item {
  font-weight: 500;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  color: #444;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(0, 84, 166, 0.05);
  color: var(--acrex-blue);
  padding-left: 1.8rem;
}

/* Mobile Dropdown Menu Adjustments */
@media (max-width: 991.98px) {
  .offcanvas-header {
    padding: 1.5rem;
    display: flex !important;
  }

  .offcanvas-body {
    padding: 0 1.5rem 2rem 1.5rem;
  }

  .navbar-nav {
    width: 100%;
    align-items: stretch !important;
  }
  
  .navbar-nav .nav-link {
    padding: 1.2rem 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1.05rem;
    text-align: left;
    display: block;
    width: 100%;
  }

  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  .navbar-nav .nav-link::before {
    display: none;
  }
  
  .dropdown-menu {
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 1rem;
    padding-bottom: 0.5rem;
    animation: none;
    margin-top: 0;
  }
  
  .dropdown-item {
    color: rgba(255,255,255,0.8);
    padding: 0.6rem 0;
    font-size: 0.95rem;
    border-bottom: 1px dashed rgba(255,255,255,0.05);
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }
  
  .dropdown-item:hover {
    background-color: transparent;
    color: var(--gold);
    padding-left: 0.5rem;
  }
}

/* Keyframes */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   HERO SLIDER
   ========================================= */
.hero-slider {
  position: relative;
  width: 100%;
}

.slide-content {
  color: var(--white);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.slide-subtitle {
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1rem;
}

.slide-title {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.slide-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Adds a slight dark overlay to ensure white text is readable against images */
  z-index: 1;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 0;
}

.slide-content {
  position: relative;
  z-index: 2;
}
