/* ===================================
   GOOGLE FONT
=================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* ===================================
   ROOT
=================================== */
:root {
  --primary: #0a2540;
  --secondary: #008a4b;
  --accent: #f9a826;
  --dark: #0f172a;
  --light: #f8fafc;
  --white: #ffffff;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
}
/* ===================================
           CSS VARIABLES & BASE SETUP
        =================================== */
:root {
  --primary: #0a2540;
  --primary-light: #183a5e;
  --secondary: #008a4b;
  --secondary-light: #e6f6ee;
  --accent: #f9a826;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --font-headings: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;
  --transition: all 0.3s ease-in-out;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* h1,
h4,
h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
} */

a {
  text-decoration: none;
  transition: var(--transition);
}

section {
  padding: 100px 0;
  position: relative;
}

.bg-light-gray {
  background-color: var(--bg-light);
}

/* Buttons */
.btn-corporate {
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.btn-corporate:hover {
  background-color: transparent;
  color: var(--primary);
}

.btn-corporate-alt {
  background-color: var(--secondary);
  color: var(--white);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.btn-corporate-alt:hover {
  background-color: transparent;
  color: var(--secondary);
}

/* Section Headers */
.section-header {
  margin-bottom: 50px;
}
.sub-heading {
  color: var(--secondary);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.sub-heading::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
  margin-right: 15px;
}
.section-header h2 {
  font-size: 38px;
}

/* ===================================
           1. ELEVATED HERO SECTION STYLES
        =================================== */
.hero-section {
  padding: 140px 0 120px;
  background: linear-gradient(to bottom right, #ffffff, #f1f5f9);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}

.hero-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(10, 37, 64, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 1;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 138, 75, 0.08) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  background: var(--white);
  color: var(--primary);
  padding: 8px 20px;
  font-size: 13px;
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 0 0 0 rgba(0, 138, 75, 0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 138, 75, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(0, 138, 75, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 138, 75, 0);
  }
}

.hero-title {
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -1px;
}
.text-gradient {
  background: linear-gradient(120deg, var(--secondary), #00b362);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 95%;
}

.hero-slider-container {
  position: relative;
  z-index: 2;
  padding: 0 20px 20px 0;
}
.hero-slider-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 85%;
  height: 85%;
  background-color: var(--secondary);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.15;
}

.hero-slider-wrapper {
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(10, 37, 64, 0.25);
  overflow: hidden;
  position: relative;
  background: var(--white);
  border: 6px solid var(--white);
}

.hero-slider-wrapper .carousel-item img {
  width: 100%;
  height: 480px;
  object-fit: contain;
  background-color: #f8fafc;
  border-radius: 6px;
}

#heroCarousel .carousel-item {
  display: block !important;
  position: absolute;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

#heroCarousel .carousel-item.active {
  position: relative;
  opacity: 1;
}

.custom-carousel-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.custom-carousel-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  backdrop-filter: blur(5px);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.custom-carousel-btn:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===================================
           2. FLOATING STATS
        =================================== */
.stats-wrapper {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}
.stats-container {
  background: var(--white);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  display: flex;
  border-bottom: 5px solid var(--secondary);
  padding: 10px 0;
}
.stat-box {
  flex: 1;
  text-align: center;
  padding: 40px 20px;
  position: relative;
}
.stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: #e2e8f0;
}
.stat-box h3 {
  font-size: 46px;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 800;
}
.stat-box p {
  color: var(--text-muted);
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* ===================================
           3. ABOUT SECTION
        =================================== */
.about-text-content p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 25px;
}
.about-features-list li {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.about-features-list i {
  color: var(--secondary);
  font-size: 20px;
  margin-right: 15px;
  background: var(--secondary-light);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.about-image {
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}

/* ===================================
           4. CORE FOCUS AREAS 
        =================================== */
.focus-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: var(--transition);
}
.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary);
}
.focus-icon {
  font-size: 40px;
  color: var(--secondary);
  margin-bottom: 25px;
}
.focus-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* ===================================
           5. MEMBERSHIP BENEFITS
        =================================== */
.benefit-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.benefit-number {
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  background: var(--primary);
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-right: 20px;
  flex-shrink: 0;
}
.benefit-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.benefit-content p {
  color: var(--text-muted);
  margin: 0;
}

/* ===================================
           6. PRESIDENT MESSAGE
        =================================== */
.president-box {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  padding: 60px;
  position: relative;
}

.quote-mark {
  position: absolute;
  top: 40px;
  right: 50px;
  font-size: 120px;
  color: var(--bg-light);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 1;
}

.president-text {
  position: relative;
  z-index: 2;
  font-size: 20px;
  font-style: italic;
  color: var(--primary);
  line-height: 1.8;
  border-left: 4px solid var(--secondary);
  padding-left: 30px;
  margin-bottom: 30px;
}

.president-img-wrap {
  position: relative;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}

.president-img-wrap::after {
  content: "";
  position: absolute;
  top: 15px;
  left: -15px;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-light);
  border-radius: 8px;
  z-index: 1;
}

.president-portrait-img {
  position: relative;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(10, 37, 64, 0.15);
}

/* ===================================
           8. PREMIUM OVERLAPPING CTA
        =================================== */
.premium-cta-section {
  position: relative;
  padding: 60px 0;
  background-color: #f8fafc;
  overflow: hidden;
}

.cta-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    rgba(10, 37, 64, 0.05) 1.5px,
    transparent 1.5px
  );
  background-size: 24px 24px;
  z-index: 1;
}

.cta-card-wrapper {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 60px;
  box-shadow: 0 20px 40px -15px rgba(10, 37, 64, 0.12);
  border: 1px solid #e2e8f0;
  border-left: 6px solid var(--secondary);
}

.cta-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #e6f6ee;
  padding: 6px 14px;
  border-radius: 30px;
}
.cta-badge-text {
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cta-pulse-indicator {
  width: 6px;
  height: 6px;
  background-color: var(--secondary);
  border-radius: 50%;
  position: relative;
}
.cta-pulse-indicator::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--secondary);
  animation: ctaPulse 2s infinite;
}
@keyframes ctaPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.cta-card-title {
  color: var(--primary);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta-card-desc {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 650px;
}

.btn-premium-cta {
  background-color: var(--primary);
  color: var(--white) !important;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.15);
}
.btn-premium-cta i {
  font-size: 18px;
  transition: transform 0.2s ease;
}
.btn-premium-cta:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 138, 75, 0.25);
}
.btn-premium-cta:hover i {
  transform: translateX(4px);
}

.cta-meta-info {
  font-size: 13px;
  color: var(--text-muted);
}
.cta-meta-info a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.cta-meta-info a:hover {
  color: var(--secondary);
}

/* ===================================
           GLOBAL RESPONSIVE BREAKPOINTS
        =================================== */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 44px;
  }
  .hero-subtitle {
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  section {
    padding: 80px 0;
  }
  .hero-section {
    padding: 120px 0 80px;
  }
  .hero-title {
    font-size: 38px;
  }
  .hero-slider-container {
    padding: 0 15px 15px 0;
    margin-top: 30px;
  }
  .hero-slider-wrapper .carousel-item img {
    height: 380px;
  }

  .stats-wrapper {
    margin-top: -40px;
  }
  .stats-container {
    flex-wrap: wrap;
    border-bottom: none;
    border-top: 5px solid var(--secondary);
  }
  .stat-box {
    flex: 0 0 50%;
    border-bottom: 1px solid #e2e8f0;
    padding: 30px 15px;
  }
  .stat-box:nth-child(even)::after {
    display: none;
  }
  .stat-box:nth-child(3),
  .stat-box:nth-child(4) {
    border-bottom: none;
  }

  .section-header h2 {
    font-size: 32px;
  }
  .president-box {
    padding: 40px 24px;
  }
  .quote-mark {
    display: none;
  }
  .president-img-wrap {
    margin-bottom: 30px;
  }

  .premium-cta-section {
    padding: 40px 0;
  }
  .cta-card-wrapper {
    padding: 40px 35px;
    border-left: none;
    border-top: 6px solid var(--secondary);
  }
  .cta-card-title {
    font-size: 26px;
  }
  .cta-card-desc {
    font-size: 15px;
  }
  .btn-premium-cta {
    width: 100%;
    justify-content: center;
  }
  .cta-action-box {
    text-align: center !important;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 16px;
    max-width: 100%;
  }
  .hero-slider-wrapper .carousel-item img {
    height: 300px;
  }

  .stat-box {
    flex: 0 0 100%;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }
  .stat-box:last-child {
    border-bottom: none;
  }
  .stat-box h3 {
    font-size: 38px;
  }

  .benefit-row {
    flex-direction: column;
  }
  .benefit-number {
    margin-bottom: 15px;
  }

  .president-portrait-img {
    height: 280px;
  }
}

@media (max-width: 575px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  .hero-badge {
    font-size: 11px;
    padding: 6px 16px;
  }
  .hero-slider-container {
    padding: 0 10px 10px 0;
  }
  .custom-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .section-header h2 {
    font-size: 26px;
  }
  .cta-card-wrapper {
    padding: 30px 20px;
  }
  .cta-card-title {
    font-size: 22px;
  }
  .d-flex.flex-wrap.gap-3 {
    flex-direction: column;
    width: 100%;
  }
  .d-flex.flex-wrap.gap-3 .btn-corporate,
  .d-flex.flex-wrap.gap-3 .btn-corporate-alt {
    width: 100%;
    justify-content: center;
  }
}
/* ===================================
   RESET
=================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

section {
  position: relative;
  overflow: hidden;
}

/* =========================
TOP BAR
========================= */
.top-bar {
  background: #081120;
  color: #d4af37;
  font-size: 14px;
  padding: 10px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1051;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact a {
  color: #d4af37;
  text-decoration: none;
}

.top-contact i {
  margin-right: 8px;
}
/* ===================================
   CORPORATE NAVBAR STYLES (DESKTOP)
=================================== */
.corporate-navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 15px rgba(10, 37, 64, 0.08);
  padding: 12px 0;
  transition: all 0.3s ease;
}

.navbar-logo {
  height: 60px;
  object-fit: contain;
}

.corporate-navbar .nav-link {
  color: var(--primary) !important;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 18px !important;
  position: relative;
  transition: color 0.3s ease;
}

.corporate-navbar .nav-link:hover,
.corporate-navbar .nav-link.active {
  color: var(--secondary) !important;
}

.corporate-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.corporate-navbar .nav-link:hover::after,
.corporate-navbar .nav-link.active::after {
  width: 60%;
}

/* Hover Dropdown */
@media (min-width: 992px) {
  .hover-dropdown .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease;
    margin-top: 0;
    border: none;
    border-top: 3px solid var(--secondary);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    min-width: 230px;
  }
  .hover-dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

.corporate-navbar .dropdown-item {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
  padding: 10px 20px;
  transition: all 0.2s ease;
}

.corporate-navbar .dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--secondary);
  padding-left: 25px;
}

.highlight-item {
  color: var(--secondary) !important;
  font-weight: 700 !important;
}

.dropdown-toggle::after {
  display: none;
}

.btn-header-cta {
  background-color: var(--primary);
  color: var(--white) !important;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 4px;
  border: 2px solid var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-header-cta:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 138, 75, 0.2);
}

/* ===================================
   MOBILE/TABLET SLIDE DRAWER
=================================== */
.custom-toggler {
  border: none;
  outline: none;
  padding: 5px;
}
.custom-toggler i {
  font-size: 32px;
  color: var(--primary);
}
.custom-toggler:focus {
  box-shadow: none;
}

.corporate-mobile-drawer {
  width: 320px !important;
  background-color: var(--white);
  border-right: none;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
}

.drawer-logo {
  height: 45px;
  object-fit: contain;
}

.drawer-close-btn {
  font-size: 18px;
}
.drawer-close-btn:focus {
  box-shadow: none;
}

.drawer-nav li {
  border-bottom: 1px solid #f1f5f9;
}

.drawer-link {
  display: flex;
  padding: 16px 10px;
  color: var(--primary);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.drawer-link:hover,
.drawer-link:focus {
  color: var(--secondary);
  background-color: var(--bg-light);
  border-radius: 4px;
}

.drawer-link i.me-2 {
  color: var(--secondary);
  font-size: 18px;
  width: 24px;
  text-align: center;
}

/* Submenu Accordion */
.drawer-submenu {
  background-color: #f8fafc;
  border-radius: 6px;
  margin: 5px 10px 15px 10px;
  padding: 10px 0;
}

.drawer-submenu li {
  border-bottom: none;
}

.drawer-submenu a {
  display: block;
  padding: 10px 20px 10px 45px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.drawer-submenu a:hover {
  color: var(--secondary);
}

.drawer-dropdown-wrapper .collapsed .dropdown-indicator {
  transform: rotate(0deg);
}
.drawer-dropdown-wrapper .dropdown-indicator {
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

/* ===================================
   CORPORATE FOOTER DESIGN SYSTEM
=================================== */
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff; /* Solid corporate white badge backdrop */
  padding: 10px 18px;
  border-radius: 8px; /* Clean structured look matching your sliders */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.footer-logo-wrap:hover {
  transform: translateY(-2px);
}

.footer-logo-img {
  height: 55px; /* Perfect structural height balance */
  width: auto;
  object-fit: contain;
}

/* Tablet & Mobile Alignment Adjustments */
@media (max-width: 767px) {
  .footer-logo-wrap {
    margin-bottom: 20px;
  }
}
.corporate-footer {
  background-color: var(--primary); /* Deep Navy #0A2540 */
  color: #94a3b8; /* Slate gray text */
  padding: 90px 0 30px;
  font-family: var(--font-body);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  color: var(--white);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-heading {
  color: var(--white);
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary); /* Green brand accent */
  border-radius: 2px;
}

/* Links */
.footer-links {
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a::before {
  content: "\F285"; /* Bootstrap Icon Chevron Right */
  font-family: "bootstrap-icons";
  font-size: 11px;
  margin-right: 8px;
  color: var(--secondary);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-action-link {
  color: var(--secondary) !important;
  font-weight: 600;
  font-size: 15px;
}
.footer-action-link i {
  transition: transform 0.2s ease;
}
.footer-action-link:hover i {
  transform: translateX(4px);
}

/* Contact Module Layout */
.footer-contact {
  padding-left: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.6;
}

.footer-contact i {
  color: var(--secondary);
  font-size: 18px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact span,
.footer-contact a {
  color: #94a3b8;
}

.footer-contact a {
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-contact a:hover {
  color: var(--white);
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-radius: 50%;
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-3px);
  color: var(--white);
}

/* Bottom Strip */
.footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright-text {
  font-size: 14px;
  color: #64748b;
}

.text-muted-custom {
  color: #64748b;
}

.developer-link {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.developer-link:hover {
  color: var(--white);
}

/* ===================================
   FLOATING ACTION BUTTONS
=================================== */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-btn:hover {
  color: var(--white);
  transform: scale(1.08);
}

.float-wa {
  background-color: #25d366;
}
.float-call {
  background-color: var(--primary);
  border: 2px solid var(--white);
}
.float-top {
  background-color: var(--secondary);
}
.float-wa {
  position: fixed !important;
  bottom: 20px !important;
  left: 20px !important; /* Forces it to the left corner */
  right: auto !important; /* Clears any right side placement */
}
/* ===================================
   CROSS DEVICE RESPONSIVE SYSTEM
=================================== */
@media (max-width: 991px) {
  .corporate-footer {
    padding: 60px 0 30px;
  }
  .footer-heading {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .footer-bottom {
    margin-top: 35px;
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  .corporate-footer {
    text-align: left !important;
  }
  .footer-heading::after {
    left: 0 !important;
  }
  .footer-social {
    justify-content: flex-start;
  }

  /* Adds safety layout space at bottom of mobile to prevent floating icon conflicts */
  .corporate-footer {
    padding-bottom: 90px;
  }

  .footer-bottom .text-md-end {
    text-align: left !important;
    margin-top: 8px;
  }

  .floating-actions {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  /* Isolates WhatsApp to the left edge to prevent UI overlaps */
  .float-wa {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important; /* Forces it to the left corner */
    right: auto !important; /* Clears any right side placement */
  }
}
/* ===================================
ABOUT HERO
=================================== */

.about-hero {
  position: relative;
  padding: 180px 0 120px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("../images/about-banner.jpg");
  background-size: cover;
  background-position: center;
  color: white;
}

.about-hero h1 {
  font-size: 70px;
  font-weight: 800;
}

.breadcrumb-custom {
  color: #8bc34a;
  margin-bottom: 15px;
}

.section-tag {
  color: #8bc34a;
  font-weight: 600;
  letter-spacing: 2px;
}

.about-intro h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 20px 0;
}

/* ===================================
VISION MISSION
=================================== */

.vm-section {
  background: #f8fafc;
  padding: 100px 0;
}

.vm-card {
  background: white;
  padding: 45px;
  border-radius: 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.vm-card:hover {
  transform: translateY(-10px);
}

.vm-card i {
  font-size: 55px;
  color: #8bc34a;
  margin-bottom: 20px;
}

/* ===================================
PRESIDENT
=================================== */

.president-section {
  padding: 100px 0;
}

.message-box {
  background: white;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ===================================
WHY UPSIA
=================================== */

.why-upsia {
  padding: 100px 0;
  background: #f8fafc;
}

.benefit-card {
  background: white;
  padding: 35px;
  text-align: center;
  border-radius: 20px;
  height: 100%;
  transition: 0.4s;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-card i {
  font-size: 50px;
  color: #2f6ea5;
}

/* ===================================
TIMELINE
=================================== */
.timeline-section {
  padding: 100px 0;
  background: #f8fafc;
}

.timeline-tag {
  color: #8bc34a;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 14px;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  margin: 15px 0;
}

.section-title p {
  max-width: 700px;
  margin: auto;
  color: #64748b;
}

/* Timeline */
.timeline-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 70px;
  flex-wrap: wrap;
}

.timeline-line {
  position: absolute;
  top: 40px;
  left: 5%;
  width: 90%;
  height: 4px;
  background: linear-gradient(to right, #8bc34a, #ffc107);
  border-radius: 10px;
}

.timeline-item {
  flex: 1;
  min-width: 250px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-dot {
  width: 24px;
  height: 24px;
  background: #8bc34a;
  border: 5px solid #fff;
  border-radius: 50%;
  margin: 0 auto 25px;
  box-shadow: 0 0 0 6px rgba(139, 195, 74, 0.2);
}

.timeline-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.timeline-card:hover {
  transform: translateY(-10px);
}

.year {
  display: inline-block;
  background: #8bc34a;
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 15px;
}

.timeline-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.timeline-card p {
  color: #64748b;
  margin: 0;
}

/* Mobile */
@media (max-width: 992px) {
  .timeline-wrapper {
    flex-direction: column;
  }

  .timeline-line {
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
  }

  .timeline-item {
    margin-bottom: 30px;
  }
}
/* ===================================
STATS
=================================== */

.about-stats {
  padding: 25px 0;
  background: #2f6ea5;
  color: white;
}

.about-stats h2 {
  font-size: 55px;
  font-weight: 700;
}

/* ===================================
CTA
=================================== */

.about-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #2f6ea5, #8bc34a);
  color: white;
}

/* ===================================
RESPONSIVE
=================================== */

@media (max-width: 991px) {
  .about-hero h1 {
    font-size: 48px;
  }

  .about-intro {
    text-align: center;
  }

  .about-image {
    margin-bottom: 40px;
  }

  .message-box {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 140px 0 80px;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .about-intro h2 {
    font-size: 32px;
  }

  .vm-card,
  .benefit-card,
  .timeline-item {
    padding: 25px;
  }

  .about-stats h2 {
    font-size: 38px;
  }

  .about-stats .col-md-3 {
    margin-bottom: 25px;
  }
}

/* ===================================
COMMITTEE HERO
=================================== */

.committee-hero {
  padding: 180px 0 120px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("../images/committee-banner.jpg");
  background-size: cover;
  background-position: center;
  color: white;
}

.page-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.committee-hero h1 {
  font-size: 70px;
  font-weight: 800;
}

/* ===================================
CHAIRMAN
=================================== */

.chairman-section {
  padding: 100px 0;
}

.chairman-card {
  background: white;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.chairman-image img {
  width: 100%;
  border-radius: 25px;
}

.chairman-badge {
  display: inline-block;
  background: #8bc34a;
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.chairman-social {
  margin-top: 20px;
}

.chairman-social a {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2f6ea5;
  color: white;
  margin-right: 10px;
}

/* ===================================
MEMBERS
=================================== */

.committee-members {
  padding: 100px 0;
  background: #f8fafc;
}

.member-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.member-card:hover {
  transform: translateY(-10px);
}

.member-img {
  height: 400px;
  overflow: hidden;
}

.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.member-card:hover img {
  transform: scale(1.1);
}

.member-content {
  padding: 25px;
  text-align: center;
}

.member-content h4 {
  font-weight: 700;
}

.member-content span {
  color: #2f6ea5;
  font-weight: 600;
}

.member-social {
  margin-top: 15px;
}

.member-social a {
  color: #2f6ea5;
  font-size: 20px;
  margin: 0 8px;
}

/* ===================================
STRUCTURE
=================================== */

.structure-section {
  padding: 100px 0;
}

.structure-wrapper {
  text-align: center;
  margin-top: 50px;
}

.structure-box {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-weight: 600;
}

.chairman {
  background: #2f6ea5;
  color: white;
}

.structure-line {
  width: 2px;
  height: 60px;
  background: #2f6ea5;
  margin: 20px auto;
}

/* ===================================
CTA
=================================== */

.committee-cta {
  padding: 25px 0;
  background: linear-gradient(135deg, #2f6ea5, #8bc34a);
  color: white;
}

/* ===================================
RESPONSIVE
=================================== */

@media (max-width: 991px) {
  .committee-hero h1 {
    font-size: 48px;
  }

  .chairman-card {
    text-align: center;
  }

  .chairman-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .committee-hero {
    padding: 140px 0 80px;
  }

  .committee-hero h1 {
    font-size: 36px;
  }

  .chairman-card {
    padding: 25px;
  }

  .member-img {
    height: 385px;
  }
}

/* ===================================
MEMBERS HERO
=================================== */

.members-hero {
  padding: 180px 0 120px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("../images/members-banner.jpg");

  background-size: cover;
  background-position: center;
  color: white;
}

.page-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
}

.members-hero h1 {
  font-size: 72px;
  font-weight: 800;
  margin: 20px 0;
}

/* ===================================
STATS
=================================== */

.member-stats {
  padding: 80px 0 80px;
  background: #f8fafc;
}

.stats-card {
  background: white;
  padding: 35px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.stats-card:hover {
  transform: translateY(-10px);
}

.stats-card i {
  font-size: 50px;
  color: #8bc34a;
}

/* ===================================
SEARCH
=================================== */

.member-search {
  padding: 40px 0;
}

.search-box {
  background: white;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.search-btn {
  background: #2f6ea5;
  color: white;
}

/* ===================================
FEATURED
=================================== */

/* ==========================
   FEATURED MEMBERS SECTION
========================== */

.featured-members {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
  position: relative;
  overflow: hidden;
}

/* Decorative Background */

.featured-members::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(13, 110, 253, 0.05);
  border-radius: 50%;
  top: -120px;
  left: -120px;
}

.featured-members::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(13, 110, 253, 0.05);
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
}

/* ==========================
   FEATURED CARD
========================== */

.featured-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;

  border: 1px solid rgba(0, 0, 0, 0.05);

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.05),
    0 20px 60px rgba(0, 0, 0, 0.08);

  transition: all 0.4s ease;
}

/* Top Gradient Line */

.featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0d6efd, #4f8cff, #8cb5ff);
}

/* Hover Effect */

.featured-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 20px 40px rgba(13, 110, 253, 0.15),
    0 30px 80px rgba(0, 0, 0, 0.12);
}

/* Member Icon */

.featured-card .member-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6efd, #4f8cff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 38px;

  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
}

/* Name */

.featured-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

/* Designation */

.featured-card p {
  color: #6c757d;
  font-size: 15px;
  margin-bottom: 20px;
}

/* Button */

.featured-card .btn-profile {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #0d6efd, #4f8cff);
  transition: 0.3s;
}

.featured-card .btn-profile:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
}

/* Responsive */

@media (max-width: 991px) {
  .featured-members {
    padding: 80px 0;
  }

  .featured-card {
    padding: 35px 25px;
  }
}

@media (max-width: 576px) {
  .featured-members {
    padding: 60px 0;
  }

  .featured-card {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .featured-card h4 {
    font-size: 20px;
  }

  .featured-card .member-icon {
    width: 75px;
    height: 75px;
    font-size: 30px;
  }
}

/* ===================================
DIRECTORY
=================================== */

.member-directory {
  padding: 100px 0;
  background: #f8fafc;
}

.member-directory-card {
  background: white;
  border-radius: 25px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.member-directory-card:hover {
  transform: translateY(-10px);
}

.member-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.member-top img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.member-directory-card ul li {
  margin-bottom: 12px;
}

.member-directory-card i {
  color: #2f6ea5;
  margin-right: 8px;
}

.btn-profile {
  background: #8bc34a;
  color: white;
  width: 100%;
}

/* ===================================
BENEFITS
=================================== */

.benefits-section {
  padding: 100px 0;
}

.benefit-box {
  text-align: center;
  background: white;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-box i {
  font-size: 50px;
  color: #2f6ea5;
}

/* ===================================
CTA
=================================== */

.members-cta {
  padding: 20px 0;
  background: linear-gradient(135deg, #2f6ea5, #8bc34a);
  color: white;
}

/* ===================================
RESPONSIVE
=================================== */

@media (max-width: 991px) {
  .members-hero h1 {
    font-size: 48px;
  }

  .search-box .row {
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .members-hero {
    padding: 140px 0 80px;
  }

  .members-hero h1 {
    font-size: 36px;
  }

  .search-box {
    padding: 20px;
  }
}

/* ==========================
CONTACT HERO
========================== */

.contact-hero {
  padding: 180px 0 120px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("../images/contact-banner.jpg");

  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.contact-hero h1 {
  font-size: 72px;
  font-weight: 800;
  margin: 20px 0;
}

/* ==========================
CONTACT INFO
========================== */

.contact-info-section {
  padding: 100px 0;
  background: #f8fafc;
}

.contact-card {
  background: white;
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  height: 100%;
  transition: 0.4s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-card:hover {
  transform: translateY(-10px);
}

.icon-box {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f6ea5, #8bc34a);

  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box i {
  color: white;
  font-size: 30px;
}

/* ==========================
FORM
========================== */

.contact-form-section {
  padding: 100px 0;
}

.form-wrapper {
  background: white;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
  margin-bottom: 30px;
  font-weight: 700;
}

.form-control {
  border-radius: 12px;
  padding: 14px;
  border: 1px solid #ddd;
}

.form-control:focus {
  box-shadow: none;
  border-color: #2f6ea5;
}

.submit-btn {
  background: #2f6ea5;
  color: white;
  padding: 14px 35px;
  border-radius: 50px;
}

/* ==========================
IMAGE
========================== */

.contact-image img {
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* ==========================
MAP
========================== */

.map-section iframe {
  width: 100%;
  height: 500px;
  border: none;
}

/* ==========================
FAQ
========================== */

.faq-section {
  padding: 100px 0;
  background: #f8fafc;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 20px;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: #2f6ea5;
  color: white;
}

/* ==========================
CTA
========================== */

.contact-cta {
  padding: 20px 0;
  background: linear-gradient(135deg, #2f6ea5, #8bc34a);
  color: white;
}
.corporate-contact-section {
  padding: 100px 0;
  background-color: var(--bg-light); /* Soft corporate gray background */
}

.corporate-contact-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 8px; /* Clean structural edges, not overly rounded */
  border: 1px solid #e2e8f0;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.04);
}

.corporate-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(10, 37, 64, 0.1);
  border-color: var(--secondary);
}

/* Premium Icon Styling */
.contact-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: rgba(0, 138, 75, 0.08); /* Transparent Green Tint */
  color: var(--secondary); /* Corporate Green */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: var(--transition);
}

.corporate-contact-card:hover .contact-icon-wrapper {
  background: var(--secondary);
  color: var(--white);
}

.corporate-contact-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

/* Link Resets */
.contact-link-list li {
  margin-bottom: 8px;
}

.contact-link-list a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link-list a:hover {
  color: var(--secondary);
}

/* ===================================
   FULL BLEED MAP
=================================== */
.corporate-map-section {
  line-height: 0; /* Prevents tiny gaps below the iframe */
}

.contact-map-iframe {
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(
    20%
  ); /* Slightly mutes map colors for a professional look */
}

/* ===================================
   BOTTOM CTA BLOCK
=================================== */
/* ===================================
   BOTTOM CTA BLOCK (VIBRANT GREEN)
=================================== */
.corporate-bottom-cta {
  padding: 80px 0;
  /* Rich corporate green gradient */
  background: linear-gradient(135deg, var(--secondary) 0%, #00b362 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative subtle circles to add premium texture */
.corporate-bottom-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 1;
}

.corporate-bottom-cta::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 1;
}

.corporate-bottom-cta .z-index-2 {
  z-index: 2; /* Ensures text stays above the decorative circles */
}

.cta-heading {
  color: var(--white);
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-subtext {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto;
}

/* Special High-Contrast White Button for Green Background */
.btn-white-action {
  background-color: var(--white);
  color: var(--secondary) !important;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 35px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-white-action i {
  transition: transform 0.3s ease;
}

.btn-white-action:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  color: var(--primary) !important; /* Shifts text to navy on hover */
}

.btn-white-action:hover i {
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .corporate-bottom-cta {
    padding: 60px 20px;
  }
  .cta-heading {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .cta-heading {
    font-size: 28px;
  }
  .cta-subtext {
    font-size: 16px;
  }
  .btn-white-action {
    padding: 14px 28px;
    font-size: 15px;
  }
}
/* Responsive Adjustments */
@media (max-width: 991px) {
  .corporate-contact-section {
    padding: 70px 0;
  }
  .corporate-bottom-cta {
    padding: 60px 20px;
  }
  .cta-heading {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .corporate-contact-card {
    padding: 30px 20px;
  }
  .contact-map-iframe {
    height: 350px;
  }
  .cta-heading {
    font-size: 26px;
  }
  .cta-subtext {
    font-size: 16px;
  }
}
/* ==========================
RESPONSIVE
========================== */

@media (max-width: 991px) {
  .contact-hero h1 {
    font-size: 48px;
  }

  .form-wrapper {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .contact-hero {
    padding: 140px 0 80px;
  }

  .contact-hero h1 {
    font-size: 36px;
  }

  .form-wrapper {
    padding: 25px;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .map-section iframe {
    height: 350px;
  }
}
/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
}

.section-title p {
  max-width: 700px;
  margin: auto;
}

/* Accordion */
.custom-faq .accordion-item {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.custom-faq .accordion-button {
  background: #fff;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  padding: 22px 25px;
  box-shadow: none;
}

.custom-faq .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #fff;
}

.custom-faq .accordion-button i {
  font-size: 22px;
}

.custom-faq .accordion-body {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  padding: 25px;
}

.custom-faq .accordion-button:focus {
  box-shadow: none;
}

.custom-faq .accordion-item:hover {
  transform: translateY(-3px);
  transition: 0.3s ease;
}

/* Section */
.renewable-section {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.section-badge {
  display: inline-block;
  background: #fff8e1;
  color: #d97706;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid #fde68a;
}

.section-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0f172a;
}

.section-subtitle {
  max-width: 800px;
  margin: auto;
  color: #64748b;
  font-size: 17px;
}

/* Cards */
.energy-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 20px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.energy-card:hover {
  transform: translateY(-10px);
}

.energy-icon {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
}

.energy-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #0f172a;
}

.energy-card p {
  color: #64748b;
  line-height: 1.8;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.highlight-box h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.highlight-box p {
  color: #cbd5e1;
}

.highlight-box .btn {
  font-weight: 600;
  border-radius: 50px;
}
/* ==========================================
FAQ HERO
========================================== */

.faq-hero {
  position: relative;
  padding: 180px 0 150px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)),
    url("../images/faq-banner.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  font-weight: 600;
  margin-bottom: 20px;
}

.faq-hero h1 {
  font-size: 72px;
  font-weight: 800;
  margin-bottom: 20px;
}

.faq-hero p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
FAQ STATS
========================================== */

.faq-stats {
  margin-top: -90px;
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
}

.faq-stat-card {
  background: #fff;
  padding: 35px;
  border-radius: 25px;
  text-align: center;
  height: 100%;
  transition: 0.4s;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.faq-stat-card:hover {
  transform: translateY(-10px);
}

.faq-stat-card i {
  font-size: 48px;
  color: #8bc34a;
  margin-bottom: 15px;
}

.faq-stat-card h3 {
  font-size: 42px;
  font-weight: 800;
  color: #2f6ea5;
}

.faq-stat-card p {
  margin: 0;
  color: #64748b;
}

/* ==========================================
FILTER BUTTONS
========================================== */

.faq-filter-section {
  padding: 0 0 80px;
}

.faq-filter-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.faq-filter {
  border: none;
  background: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  color: #0f172a;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.faq-filter:hover,
.faq-filter.active {
  background: linear-gradient(135deg, #2f6ea5, #8bc34a);
  color: #fff;
}

/* ==========================================
FAQ SECTION
========================================== */

.premium-faq-section {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title span {
  display: block;
  color: #8bc34a;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 50px;
  font-weight: 800;
  color: #0f172a;
}

.section-title p {
  color: #64748b;
  max-width: 700px;
  margin: auto;
}

.premium-faq {
  max-width: 1000px;
  margin: auto;
}

.premium-faq .accordion-item {
  border: none;
  overflow: hidden;
  border-radius: 24px !important;
  margin-bottom: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.premium-faq .accordion-button {
  padding: 28px 30px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: none !important;
}

.premium-faq .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #2f6ea5, #8bc34a);
  color: #fff;
}

.premium-faq .accordion-button:focus {
  box-shadow: none;
}

.premium-faq .accordion-body {
  padding: 30px;
  line-height: 1.9;
  color: #475569;
  font-size: 16px;
}

/* ==========================================
NO RESULT
========================================== */

.no-faq-result {
  display: none;
  text-align: center;
  margin-top: 50px;
}

.no-faq-result i {
  font-size: 60px;
  color: #2f6ea5;
}

.no-faq-result h4 {
  margin-top: 15px;
  font-weight: 700;
}

/* ==========================================
SEO CONTENT
========================================== */

.faq-seo-content {
  background: #f8fafc;
  padding: 100px 0;
}

.seo-content-card {
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.seo-content-card h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

.seo-content-card p {
  color: #475569;
  line-height: 1.9;
  margin-bottom: 15px;
}

/* ==========================================
SUPPORT CTA
========================================== */

.faq-support-cta {
  padding: 100px 0;
  background: #0f172a;
}

.support-glass-card {
  padding: 60px;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(47, 110, 165, 0.95),
    rgba(139, 195, 74, 0.95)
  );
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.support-glass-card h2 {
  font-size: 42px;
  font-weight: 800;
}

.support-glass-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.faq-contact-btn {
  background: #fff;
  color: #2f6ea5;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s;
}

.faq-contact-btn:hover {
  background: #f5a623;
  color: #fff;
}

/* ==========================================
RESPONSIVE
========================================== */

@media (max-width: 991px) {
  .faq-hero {
    padding: 150px 0 120px;
  }

  .faq-hero h1 {
    font-size: 50px;
  }

  .faq-stats {
    margin-top: 0;
    padding-top: 70px;
  }

  .support-glass-card {
    text-align: center;
  }

  .faq-contact-btn {
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  .faq-hero {
    padding: 130px 0 100px;
  }

  .faq-hero h1 {
    font-size: 34px;
  }

  .faq-hero p {
    font-size: 15px;
  }

  .faq-stat-card {
    padding: 25px;
  }

  .faq-stat-card h3 {
    font-size: 30px;
  }

  .faq-filter {
    width: 100%;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .premium-faq .accordion-button {
    font-size: 16px;
    padding: 20px;
  }

  .premium-faq .accordion-body {
    padding: 20px;
  }

  .seo-content-card {
    padding: 25px;
  }

  .seo-content-card h2 {
    font-size: 26px;
  }

  .support-glass-card {
    padding: 30px;
  }

  .support-glass-card h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .faq-hero h1 {
    font-size: 28px;
  }

  .faq-badge {
    font-size: 13px;
  }

  .faq-filter {
    font-size: 14px;
    padding: 12px 20px;
  }
}
/* ===================================
   MEMBERSHIP HERO
=================================== */

.membership-hero {
  padding: 190px 0 120px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.82)),
    url("../images/membership-banner.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.membership-hero h1 {
  font-size: 72px;
  font-weight: 500;
  margin: 22px 0;
}

.membership-hero p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 780px;
  margin: auto;
}

.page-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
}

/* ===================================
   MEMBERSHIP TYPES
=================================== */

.membership-types {
  padding: 100px 0;
  background: #fff;
}

.section-title {
  margin-bottom: 55px;
}

.section-title span {
  color: #8bc34a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 500;
  margin: 12px 0;
  color: #0f172a;
}

.section-title p {
  max-width: 650px;
  margin: auto;
  color: #64748b;
}

.membership-plan {
  position: relative;
  height: 100%;
  padding: 40px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
}

.membership-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.14);
}

.featured-plan {
  border: 2px solid #8bc34a;
  background: linear-gradient(
    180deg,
    rgba(139, 195, 74, 0.08),
    rgba(255, 255, 255, 1)
  );
}

.popular-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 14px;
  background: #f5a623;
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}

.plan-icon {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(47, 110, 165, 0.1);
  color: #2f6ea5;
  font-size: 36px;
  margin-bottom: 25px;
}

.membership-plan h4 {
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 15px;
}

.membership-plan p {
  color: #64748b;
  line-height: 1.7;
}

.membership-plan ul {
  margin-top: 25px;
}

.membership-plan ul li {
  margin-bottom: 12px;
  color: #334155;
  font-size: 15px;
}

.membership-plan ul li i {
  color: #8bc34a;
  margin-right: 8px;
}

/* ===================================
   APPLICATION SECTION
=================================== */

.application-section {
  padding: 110px 0;
  background: #f8fafc;
}

.sticky-box {
  position: sticky;
  top: 110px;
}

.application-info {
  padding: 38px;
  border-radius: 30px;
  background: linear-gradient(145deg, #0f172a, #1e3a5f);
  color: #fff;
  box-shadow: 0 25px 65px rgba(15, 23, 42, 0.22);
}

.form-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  margin-bottom: 18px;
  font-size: 14px;
}

.application-info h3 {
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 18px;
}

.application-info > p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.process-list {
  margin-top: 35px;
}

.process-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-item.active {
  background: rgba(139, 195, 74, 0.22);
}

.process-item span {
  min-width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #8bc34a;
  color: #fff;
  border-radius: 50%;
  font-weight: 500;
}

.process-item h6 {
  margin-bottom: 5px;
  font-weight: 700;
}

.process-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

/* ===================================
   FORM CARD
=================================== */

.membership-form-card {
  background: #fff;
  border-radius: 32px;
  padding: 45px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.1);
}

.form-header {
  margin-bottom: 35px;
}

.form-header h3 {
  font-size: 34px;
  font-weight: 500;
  color: #0f172a;
}

.form-header p {
  color: #64748b;
}

.form-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
}

.progress-step {
  text-align: center;
  position: relative;
}

.progress-step span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  color: #64748b;
  border-radius: 50%;
  font-weight: 500;
  transition: 0.35s;
}

.progress-step p {
  margin: 8px 0 0;
  font-size: 14px;
  color: #64748b;
}

.progress-step.active span {
  background: #8bc34a;
  color: #fff;
  box-shadow: 0 10px 25px rgba(139, 195, 74, 0.35);
}

.progress-step.active p {
  color: #0f172a;
  font-weight: 700;
}

.progress-line {
  flex: 1;
  height: 3px;
  background: #e5e7eb;
  margin: 0 15px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 28px;
  color: #0f172a;
}

.membership-form-card label {
  display: block;
  margin-bottom: 9px;
  font-weight: 600;
  color: #334155;
}

.membership-form-card .form-control,
.membership-form-card .form-select {
  height: 56px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 12px 16px;
  color: #0f172a;
  box-shadow: none;
}

.membership-form-card textarea.form-control {
  height: auto;
}

.membership-form-card .form-control:focus,
.membership-form-card .form-select:focus {
  border-color: #8bc34a;
  box-shadow: 0 0 0 4px rgba(139, 195, 74, 0.14);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 38px;
}

.next-btn,
.submit-btn {
  background: #2f6ea5;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
}

.next-btn:hover,
.submit-btn:hover {
  background: #245b8b;
  color: #fff;
}

.prev-btn {
  background: #e2e8f0;
  color: #0f172a;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
}

.prev-btn:hover {
  background: #cbd5e1;
}

/* ===================================
   DOCUMENT CHECKLIST
=================================== */

.document-checklist {
  display: grid;
  gap: 18px;
  margin-bottom: 25px;
}

.doc-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.doc-item i {
  width: 55px;
  height: 55px;
  min-width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 110, 165, 0.1);
  color: #2f6ea5;
  border-radius: 16px;
  font-size: 26px;
}

.doc-item h6 {
  font-weight: 500;
  margin-bottom: 6px;
}

.doc-item p {
  margin-bottom: 0;
  color: #64748b;
  font-size: 14px;
}

.declaration-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 18px;
  background: rgba(139, 195, 74, 0.1);
  border: 1px solid rgba(139, 195, 74, 0.25);
}

.declaration-box input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
}

.declaration-box label {
  margin-bottom: 0;
  line-height: 1.7;
}

/* ===================================
   BENEFITS
=================================== */

.membership-benefits {
  padding: 100px 0;
  background: #fff;
}

.member-benefit-card {
  height: 100%;
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  transition: 0.35s;
}

.member-benefit-card:hover {
  transform: translateY(-10px);
}

.member-benefit-card i {
  font-size: 46px;
  color: #8bc34a;
  margin-bottom: 18px;
}

.member-benefit-card h5 {
  font-weight: 500;
  color: #0f172a;
}

.member-benefit-card p {
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.7;
}

/* ===================================
   CTA
=================================== */

.membership-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #2f6ea5, #8bc34a);
  color: #fff;
}

.membership-cta h2 {
  font-size: 48px;
  font-weight: 500;
}

.membership-cta p {
  max-width: 680px;
  margin: 18px auto 30px;
  font-size: 18px;
}

/* ===================================
   FOOTER EXTRA
=================================== */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 45px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.7);
}

.mobile-join-btn {
  background: #f5a623;
  color: #fff;
  border-radius: 14px;
  padding: 14px;
  font-weight: 700;
}
.membership-hero {
  position: relative;
  width: 100%;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.membership-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.membership-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 40, 90, 0.35);
  z-index: 2;
}

.membership-hero .container {
  position: relative;
  z-index: 3;
}

.page-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: #ffffff;
  color: #0b5eb8;
  font-weight: 600;
  margin-bottom: 18px;
}

.membership-hero h1 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 18px;
}

.membership-hero p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.7;
  max-width: 850px;
  margin: auto;
}

@media (max-width: 768px) {
  .membership-hero {
    min-height: 380px;
  }

  .membership-hero h1 {
    font-size: 38px;
  }

  .membership-hero p {
    font-size: 16px;
  }
}

.membership-cta {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.membership-cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.membership-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 90, 0.55);
  z-index: 2;
}

.membership-cta .container {
  position: relative;
  z-index: 3;
}

.membership-cta h2 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 16px;
}

.membership-cta p {
  color: #ffffff;
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.membership-cta .btn {
  border-radius: 50px;
  padding: 12px 34px;
  font-weight: 700;
  color: #0056a8;
}

/* Responsive */
@media (max-width: 768px) {
  .membership-cta {
    min-height: 330px;
  }

  .membership-cta h2 {
    font-size: 32px;
  }

  .membership-cta p {
    font-size: 16px;
  }
}
/* ===================================
   MEMBERSHIP RESPONSIVE
=================================== */

@media (max-width: 1199px) {
  .membership-hero h1 {
    font-size: 58px;
  }

  .membership-form-card {
    padding: 35px;
  }
}

@media (max-width: 991px) {
  .membership-hero {
    padding: 150px 0 90px;
  }

  .membership-hero h1 {
    font-size: 46px;
  }

  .membership-types,
  .application-section,
  .membership-benefits {
    padding: 80px 0;
  }

  .sticky-box {
    position: relative;
    top: 0;
  }

  .application-info {
    margin-bottom: 20px;
  }

  .section-title h2 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .membership-hero {
    padding: 130px 0 75px;
  }

  .membership-hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .membership-hero p {
    font-size: 16px;
  }

  .membership-plan {
    padding: 28px;
  }

  .application-section {
    padding: 65px 0;
  }

  .application-info {
    padding: 28px;
  }

  .membership-form-card {
    padding: 24px;
    border-radius: 24px;
  }

  .form-header h3 {
    font-size: 26px;
  }

  .form-progress {
    gap: 8px;
    margin-bottom: 35px;
  }

  .progress-step span {
    width: 42px;
    height: 42px;
  }

  .progress-step p {
    font-size: 12px;
  }

  .progress-line {
    margin: 0 4px;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  .doc-item {
    flex-direction: column;
  }

  .membership-cta {
    padding: 70px 20px;
  }

  .membership-cta h2 {
    font-size: 30px;
  }

  footer {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .membership-hero h1 {
    font-size: 30px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .popular-badge {
    position: static;
    display: inline-block;
    margin-bottom: 18px;
  }

  .membership-form-card .form-control,
  .membership-form-card .form-select {
    height: 52px;
  }
}

/* ===================================
   objectiveS HERO
=================================== */

.objectives-hero {
  padding: 190px 0 120px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.84)),
    url("../images/objectives-banner.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.objectives-hero h1 {
  font-size: 72px;
  font-weight: 500;
  margin: 22px 0;
}

.objectives-hero p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 780px;
  margin: auto;
}

/* ===================================
   objective INTRO
=================================== */

.objective-intro {
  padding: 110px 0;
  background: #fff;
}

.objective-image {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.14);
}

.objective-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(47, 110, 165, 0.2),
    rgba(139, 195, 74, 0.2)
  );
  z-index: 1;
}

.objective-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.objective-intro h2 {
  font-size: 46px;
  font-weight: 500;
  color: #0f172a;
  margin: 18px 0;
  line-height: 1.25;
}

.objective-intro p {
  color: #64748b;
  line-height: 1.8;
  font-size: 16px;
}

.objective-highlight {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.objective-highlight div {
  flex: 1;
  padding: 25px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.objective-highlight h3 {
  font-size: 38px;
  font-weight: 500;
  color: #2f6ea5;
  margin-bottom: 5px;
}

.objective-highlight span {
  color: #334155;
  font-weight: 600;
}

.objectives-hero {
  position: relative;
  width: 100%;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.objectives-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.objectives-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 90, 0.45);
  z-index: 2;
}

.objectives-hero .container {
  position: relative;
  z-index: 3;
}

.page-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: #ffffff;
  color: #0b5eb8;
  font-weight: 600;
  margin-bottom: 18px;
}

.objectives-hero h1 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 18px;
}

.objectives-hero p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.7;
  max-width: 850px;
  margin: auto;
}

@media (max-width: 768px) {
  .objectives-hero {
    min-height: 380px;
  }

  .objectives-hero h1 {
    font-size: 38px;
  }

  .objectives-hero p {
    font-size: 16px;
  }
}

.objectives-cta {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.objectives-cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.objectives-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 90, 0.55);
  z-index: 2;
}

.objectives-cta .container {
  position: relative;
  z-index: 3;
}

.objectives-cta h2 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 16px;
}

.objectives-cta p {
  color: #ffffff;
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.objectives-cta .btn {
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 700;
  color: #0056a8;
  border: none;
}

@media (max-width: 768px) {
  .objectives-cta {
    min-height: 330px;
  }

  .objectives-cta h2 {
    font-size: 32px;
  }

  .objectives-cta p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .objectives-cta {
    min-height: 300px;
  }

  .objectives-cta h2 {
    font-size: 28px;
  }
}

.featured-event-section {
  padding: 90px 0;
  background: #f5f8fb;
}

.section-title {
  max-width: 850px;
  margin: 0 auto 45px;
}

.event-category {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  background: #eaf7df;
  color: #2f7d18;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 18px;
}

.section-title p {
  font-size: 18px;
  line-height: 1.8;
  color: #5b6f8a;
  margin: 0 auto;
}

.featured-event-card {
  background: #ffffff;
  border-radius: 36px;
  padding: 55px;
  border: 1px solid #e5edf5;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

/* 3 IMAGE DESIGN */
.featured-event-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  grid-template-rows: 180px 180px;
  gap: 18px;
}

.featured-event-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Big image */
.main-event-img {
  grid-row: span 2;
  border-radius: 28px;
  overflow: hidden;
}

/* Small images */
.small-event-img {
  border-radius: 24px;
  overflow: hidden;
}

.event-date-badge {
  position: absolute;
  left: 22px;
  top: 22px;
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.event-date-badge span {
  font-size: 30px;
  font-weight: 900;
  color: #0b5eb8;
  line-height: 1;
}

.event-date-badge small {
  font-size: 14px;
  font-weight: 500;
  color: #2f7d18;
}

/* Right Content */
.event-content {
  max-width: 520px;
  margin: auto;
}

.event-meta {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.event-meta div {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 700;
  color: #183153;
}

.event-meta i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #eef4fb;
  color: #0b66c3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.event-main-btn {
  background: #2f78b7;
  color: #ffffff;
  padding: 15px 38px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  border: none;
}

.event-main-btn:hover {
  background: #185f9d;
  color: #ffffff;
}

.featured-event-section {
  padding: 90px 0;
  background: #f5f8fb;
}

.section-title {
  max-width: 850px;
  margin: 0 auto 45px;
}

.event-category {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  background: #eaf7df;
  color: #2f7d18;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 16px;
}

.section-title p {
  font-size: 18px;
  line-height: 1.8;
  color: #5b6f8a;
}

.featured-event-card {
  background: #ffffff;
  border-radius: 34px;
  padding: 45px;
  border: 1px solid #e5edf5;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

/* Image Row */
.event-image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 45px;
}

.event-photo-box {
  background: #ffffff;
}

.event-photo-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
}

.event-photo-box h5 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.5;
  margin-top: 14px;
  margin-bottom: 0;
}

/* Event Details */
.event-content {
  max-width: 900px;
  margin: auto;
}

.event-meta {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.event-meta div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f3f7fb;
  padding: 14px 20px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 700;
  color: #183153;
}

.event-meta i {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #e7f0fa;
  color: #0b66c3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.event-main-btn {
  background: #2f78b7;
  color: #ffffff;
  padding: 14px 38px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 500;
  border: none;
}

.event-main-btn:hover {
  background: #185f9d;
  color: #ffffff;
}

/* Tablet */
@media (max-width: 991px) {
  .featured-event-card {
    padding: 32px;
  }

  .event-image-row {
    grid-template-columns: 1fr;
  }

  .event-photo-box img {
    height: 330px;
  }

  .section-title h2 {
    font-size: 36px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .featured-event-section {
    padding: 60px 0;
  }

  .featured-event-card {
    padding: 22px;
    border-radius: 24px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .section-title p {
    font-size: 16px;
  }

  .event-photo-box img {
    height: 230px;
    border-radius: 18px;
  }

  .event-photo-box h5 {
    font-size: 15px;
  }

  .event-meta {
    gap: 14px;
  }

  .event-meta div {
    width: 100%;
    justify-content: flex-start;
  }
}

.events-hero {
  position: relative;
  width: 100%;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.events-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.events-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 90, 0.48);
  z-index: 2;
}

.events-hero .container {
  position: relative;
  z-index: 3;
}

.page-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: #ffffff;
  color: #0b5eb8;
  font-weight: 700;
  margin-bottom: 18px;
}

.events-hero h1 {
  color: #ffffff;
  font-size: 58px;
  font-weight: 500;
  margin-bottom: 18px;
}

.events-hero p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.7;
  max-width: 850px;
  margin: auto;
}

@media (max-width: 768px) {
  .events-hero {
    min-height: 380px;
  }

  .events-hero h1 {
    font-size: 40px;
  }

  .events-hero p {
    font-size: 16px;
  }
}

.events-cta {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.events-cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.events-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 90, 0.55);
  z-index: 2;
}

.events-cta .container {
  position: relative;
  z-index: 3;
}

.events-cta h2 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 16px;
}

.events-cta p {
  color: #ffffff;
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.events-cta .btn {
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 700;
  color: #0056a8;
  border: none;
}

@media (max-width: 768px) {
  .events-cta {
    min-height: 330px;
  }

  .events-cta h2 {
    font-size: 32px;
  }

  .events-cta p {
    font-size: 16px;
  }
}
/* Responsive */
@media (max-width: 991px) {
  .featured-event-card {
    padding: 35px;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .featured-event-gallery {
    grid-template-rows: 160px 160px;
  }

  .event-meta div {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .featured-event-section {
    padding: 60px 0;
  }

  .featured-event-card {
    padding: 22px;
    border-radius: 24px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .section-title p {
    font-size: 16px;
  }

  .featured-event-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 150px 150px;
  }

  .main-event-img {
    grid-row: span 1;
  }

  .event-meta div {
    font-size: 15px;
  }
}

/* ===================================
   MAIN objectiveS
=================================== */

.main-objectives {
  padding: 110px 0;
  background: #f8fafc;
}

.objective-card {
  height: 100%;
  padding: 38px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.objective-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -55px;
  top: -55px;
  border-radius: 50%;
  background: rgba(139, 195, 74, 0.12);
}

.objective-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.14);
}

.objective-icon {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(47, 110, 165, 0.12),
    rgba(139, 195, 74, 0.16)
  );
  color: #2f6ea5;
  font-size: 36px;
  margin-bottom: 24px;
}

.objective-card h4 {
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 15px;
}

.objective-card p {
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ===================================
   IMPACT SECTION
=================================== */

.impact-section {
  padding: 110px 0;
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  color: #fff;
}

.impact-section h2 {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.25;
  margin: 18px 0;
}

.impact-section p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.impact-box {
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(15px);
  transition: 0.35s ease;
}

.impact-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
}

.impact-box i {
  font-size: 42px;
  color: #8bc34a;
  margin-bottom: 18px;
}

.impact-box h5 {
  font-weight: 500;
  margin-bottom: 10px;
}

.impact-box p {
  margin-bottom: 0;
  font-size: 15px;
}

/* ===================================
   ROADMAP
=================================== */

.roadmap-section {
  padding: 110px 0;
  background: #fff;
}

.roadmap-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.roadmap-wrapper::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background: #e2e8f0;
  left: 36px;
  top: 0;
}

.roadmap-item {
  position: relative;
  display: flex;
  gap: 28px;
  margin-bottom: 34px;
}

.roadmap-item:last-child {
  margin-bottom: 0;
}

.roadmap-number {
  width: 76px;
  height: 76px;
  min-width: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f6ea5, #8bc34a);
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 28px rgba(47, 110, 165, 0.25);
}

.roadmap-content {
  padding: 30px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  flex: 1;
}

.roadmap-content h4 {
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 10px;
}

.roadmap-content p {
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ===================================
   GOALS
=================================== */

.goals-section {
  padding: 100px 0;
  background: #f8fafc;
}

.goal-card {
  height: 100%;
  padding: 40px;
  border-radius: 28px;
  color: #fff;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  transition: 0.35s ease;
}

.goal-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -70px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.goal-card:hover {
  transform: translateY(-10px);
}

.goal-card i {
  font-size: 48px;
  margin-bottom: 22px;
}

.goal-card h4 {
  font-weight: 500;
  margin-bottom: 14px;
}

.goal-card p {
  line-height: 1.8;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.blue-card {
  background: linear-gradient(135deg, #2f6ea5, #18476f);
}

.green-card {
  background: linear-gradient(135deg, #8bc34a, #4f8a22);
}

.orange-card {
  background: linear-gradient(135deg, #f5a623, #c77a00);
}

/* ===================================
   objectiveS CTA
=================================== */

.objectives-cta {
  padding: 105px 0;
  background:
    linear-gradient(135deg, rgba(47, 110, 165, 0.95), rgba(139, 195, 74, 0.95)),
    url("../images/solar-cta.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.objectives-cta h2 {
  font-size: 48px;
  font-weight: 500;
}

.objectives-cta p {
  max-width: 700px;
  margin: 18px auto 30px;
  font-size: 18px;
  line-height: 1.8;
}

/* ===================================
   objectiveS RESPONSIVE
=================================== */

@media (max-width: 1199px) {
  .objectives-hero h1 {
    font-size: 58px;
  }

  .objective-intro h2,
  .impact-section h2 {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  .objectives-hero {
    padding: 150px 0 90px;
  }

  .objectives-hero h1 {
    font-size: 46px;
  }

  .objective-intro,
  .main-objectives,
  .impact-section,
  .roadmap-section,
  .goals-section {
    padding: 80px 0;
  }

  .objective-intro {
    text-align: center;
  }

  .objective-image img {
    height: 420px;
  }

  .objective-highlight {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .objectives-hero {
    padding: 130px 0 75px;
  }

  .objectives-hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .objectives-hero p {
    font-size: 16px;
  }

  .objective-intro h2,
  .impact-section h2 {
    font-size: 30px;
  }

  .objective-image img {
    height: 300px;
  }

  .objective-highlight {
    flex-direction: column;
  }

  .objective-card,
  .impact-box,
  .goal-card {
    padding: 28px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-wrapper::before {
    left: 28px;
  }

  .roadmap-item {
    gap: 18px;
  }

  .roadmap-number {
    width: 58px;
    height: 58px;
    min-width: 58px;
    font-size: 16px;
  }

  .roadmap-content {
    padding: 22px;
  }

  .objectives-cta {
    padding: 75px 20px;
  }

  .objectives-cta h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .objectives-hero h1 {
    font-size: 30px;
  }

  .objective-card h4,
  .goal-card h4 {
    font-size: 20px;
  }

  .roadmap-item {
    flex-direction: column;
  }

  .roadmap-wrapper::before {
    display: none;
  }
}

/* ===================================
   EVENTS HERO
=================================== */

.events-hero {
  padding: 190px 0 120px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.84)),
    url("../images/events-banner.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.events-hero h1 {
  font-size: 72px;
  font-weight: 500;
  margin: 22px 0;
}

.events-hero p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 780px;
  margin: auto;
}

/* ===================================
   FEATURED EVENT
=================================== */

.featured-event-section {
  padding: 110px 0;
  background: #fff;
}

.featured-event-card {
  padding: 45px;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
}

.featured-event-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.featured-event-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.event-date-badge {
  position: absolute;
  left: 25px;
  top: 25px;
  width: 86px;
  height: 86px;
  border-radius: 22px;
  background: #fff;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.18);
}

.event-date-badge span {
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.event-date-badge small {
  font-weight: 500;
  color: #8bc34a;
}

.event-category {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 50px;
  background: rgba(139, 195, 74, 0.14);
  color: #4f8a22;
  font-weight: 500;
  margin-bottom: 18px;
}

.featured-event-card h2 {
  font-size: 42px;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 18px;
}

.featured-event-card p {
  color: #64748b;
  line-height: 1.8;
}

.event-meta {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.event-meta div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #334155;
  font-weight: 600;
}

.event-meta i {
  width: 42px;
  height: 42px;
  background: rgba(47, 110, 165, 0.1);
  color: #2f6ea5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-main-btn {
  background: #2f6ea5;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  border: none;
}

.event-main-btn:hover {
  background: #245b8b;
  color: #fff;
}

/* ===================================
   EVENT STATS
=================================== */

.event-stats-section {
  padding: 80px 0;
  background: #f8fafc;
}

.event-stat-card {
  height: 100%;
  padding: 35px;
  text-align: center;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
}

.event-stat-card:hover {
  transform: translateY(-10px);
}

.event-stat-card i {
  font-size: 46px;
  color: #8bc34a;
  margin-bottom: 16px;
}

.event-stat-card h2 {
  font-size: 42px;
  font-weight: 500;
  color: #2f6ea5;
}

.event-stat-card p {
  margin-bottom: 0;
  font-weight: 600;
  color: #64748b;
}

/* ===================================
   UPCOMING EVENTS
=================================== */

.upcoming-events-section {
  padding: 110px 0;
  background: #fff;
}

.event-filter {
  margin-bottom: 45px;
}

.filter-btn {
  border: none;
  padding: 12px 22px;
  margin: 6px;
  border-radius: 50px;
  background: #f1f5f9;
  color: #334155;
  font-weight: 700;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #2f6ea5;
  color: #fff;
}

.premium-event-card {
  height: 100%;
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
}

.premium-event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.14);
}

.event-card-img {
  position: relative;
  height: 245px;
  overflow: hidden;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.premium-event-card:hover .event-card-img img {
  transform: scale(1.08);
}

.event-date {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: #fff;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.event-date span {
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
}

.event-date small {
  color: #8bc34a;
  font-weight: 500;
}

.event-card-content {
  padding: 28px;
}

.event-type {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}

.event-type.conference {
  background: rgba(47, 110, 165, 0.12);
  color: #2f6ea5;
}

.event-type.workshop {
  background: rgba(139, 195, 74, 0.14);
  color: #4f8a22;
}

.event-type.training {
  background: rgba(245, 166, 35, 0.16);
  color: #b66d00;
}

.event-type.meeting {
  background: rgba(99, 102, 241, 0.12);
  color: #4f46e5;
}

.event-card-content h4 {
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.35;
}

.event-card-content p {
  color: #64748b;
  line-height: 1.7;
}

.event-card-content ul {
  margin: 20px 0;
}

.event-card-content ul li {
  margin-bottom: 10px;
  color: #334155;
  font-size: 15px;
}

.event-card-content ul li i {
  color: #2f6ea5;
  margin-right: 8px;
}

.event-link {
  color: #2f6ea5;
  font-weight: 500;
  text-decoration: none;
}

.event-link i {
  margin-left: 5px;
  transition: 0.3s;
}

.event-link:hover i {
  margin-left: 10px;
}

/* ===================================
   WORKSHOP SECTION
=================================== */

.workshop-section {
  padding: 110px 0;
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  color: #fff;
}

.workshop-section h2 {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.25;
  margin: 18px 0;
}

.workshop-section p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.workshop-box {
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(15px);
  transition: 0.35s ease;
}

.workshop-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
}

.workshop-box i {
  font-size: 42px;
  color: #8bc34a;
  margin-bottom: 18px;
}

.workshop-box h5 {
  font-weight: 500;
  margin-bottom: 10px;
}

.workshop-box p {
  margin-bottom: 0;
  font-size: 15px;
}

/* ===================================
   PAST EVENTS
=================================== */

.past-events-section {
  padding: 110px 0;
  background: #f8fafc;
}

.past-timeline {
  max-width: 900px;
  margin: auto;
  position: relative;
}

.past-timeline::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #e2e8f0;
}

.past-event-item {
  display: flex;
  gap: 30px;
  position: relative;
  margin-bottom: 30px;
}

.past-year {
  width: 140px;
  min-width: 140px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2f6ea5, #8bc34a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 30px rgba(47, 110, 165, 0.25);
}

.past-content {
  flex: 1;
  padding: 28px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.past-content h4 {
  font-weight: 500;
  color: #0f172a;
}

.past-content p {
  color: #64748b;
  margin-bottom: 0;
}

/* ===================================
   CTA
=================================== */

.events-cta {
  padding: 105px 0;
  background:
    linear-gradient(135deg, rgba(47, 110, 165, 0.95), rgba(139, 195, 74, 0.95)),
    url("../images/events-cta.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.events-cta h2 {
  font-size: 48px;
  font-weight: 500;
}

.events-cta p {
  max-width: 700px;
  margin: 18px auto 30px;
  font-size: 18px;
  line-height: 1.8;
}

/* ===================================
   EVENT RESPONSIVE
=================================== */

@media (max-width: 1199px) {
  .events-hero h1 {
    font-size: 58px;
  }

  .featured-event-card h2,
  .workshop-section h2 {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .events-hero {
    padding: 150px 0 90px;
  }

  .events-hero h1 {
    font-size: 46px;
  }

  .featured-event-section,
  .upcoming-events-section,
  .workshop-section,
  .past-events-section {
    padding: 80px 0;
  }

  .featured-event-card {
    padding: 30px;
    text-align: center;
  }

  .event-meta div {
    justify-content: center;
  }

  .event-filter {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 8px;
    padding-bottom: 10px;
  }

  .filter-btn {
    flex: 0 0 auto;
  }
}

@media (max-width: 767px) {
  .events-hero {
    padding: 130px 0 75px;
  }

  .events-hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .events-hero p {
    font-size: 16px;
  }

  .featured-event-card {
    padding: 22px;
    border-radius: 24px;
  }

  .featured-event-image img {
    height: 280px;
  }

  .featured-event-card h2,
  .workshop-section h2 {
    font-size: 30px;
  }

  .event-card-img {
    height: 220px;
  }

  .event-card-content {
    padding: 24px;
  }

  .workshop-grid {
    grid-template-columns: 1fr;
  }

  .workshop-box {
    padding: 26px;
  }

  .past-timeline::before {
    display: none;
  }

  .past-event-item {
    flex-direction: column;
    gap: 16px;
  }

  .past-year {
    width: 100%;
    min-width: 100%;
  }

  .events-cta {
    padding: 75px 20px;
  }

  .events-cta h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .events-hero h1 {
    font-size: 30px;
  }

  .event-date-badge {
    width: 72px;
    height: 72px;
  }

  .event-date-badge span {
    font-size: 24px;
  }

  .premium-event-card {
    border-radius: 22px;
  }
}

/* ===================================
   GALLERY HERO
=================================== */

.gallery-hero {
  padding: 190px 0 120px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.84)),
    url("../images/gallery-banner.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.gallery-hero h1 {
  font-size: 72px;
  font-weight: 500;
  margin: 22px 0;
}

.gallery-hero p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 780px;
  margin: auto;
}

.gallery-hero {
  position: relative;
  width: 100%;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gallery-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 90, 0.5);
  z-index: 2;
}

.gallery-hero .container {
  position: relative;
  z-index: 3;
}

.gallery-hero h1 {
  color: #ffffff;
  font-size: 58px;
  font-weight: 500;
  margin-bottom: 18px;
}

.gallery-hero p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.7;
  max-width: 850px;
  margin: auto;
}

.page-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: #ffffff;
  color: #0b5eb8;
  font-weight: 700;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .gallery-hero {
    min-height: 380px;
  }

  .gallery-hero h1 {
    font-size: 40px;
  }

  .gallery-hero p {
    font-size: 16px;
  }
}

.gallery-cta {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gallery-cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.gallery-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 90, 0.55);
  z-index: 2;
}

.gallery-cta .container {
  position: relative;
  z-index: 3;
}

.gallery-cta h2 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 16px;
}

.gallery-cta p {
  color: #ffffff;
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.gallery-cta .btn {
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 700;
  color: #0056a8;
  border: none;
}

@media (max-width: 768px) {
  .gallery-cta {
    min-height: 330px;
  }

  .gallery-cta h2 {
    font-size: 32px;
  }

  .gallery-cta p {
    font-size: 16px;
  }
}

/* ===================================
   GALLERY INTRO STATS
=================================== */

.gallery-intro {
  padding: 80px 0;
  background: #f8fafc;
}

.gallery-stat-card {
  height: 100%;
  padding: 35px;
  text-align: center;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
}

.gallery-stat-card:hover {
  transform: translateY(-10px);
}

.gallery-stat-card i {
  font-size: 46px;
  color: #8bc34a;
  margin-bottom: 16px;
}

.gallery-stat-card h2 {
  font-size: 42px;
  font-weight: 500;
  color: #2f6ea5;
}

.gallery-stat-card p {
  margin-bottom: 0;
  color: #64748b;
  font-weight: 600;
}

/* ===================================
   ALBUMS
=================================== */

.albums-section {
  padding: 110px 0;
  background: #f8fafc;
}

.album-card {
  height: 100%;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
}

.album-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.14);
}

.album-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.album-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.album-card:hover .album-img img {
  transform: scale(1.08);
}

.album-img span {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 16px;
  border-radius: 50px;
  background: #fff;
  color: #2f6ea5;
  font-size: 13px;
  font-weight: 500;
}

.album-content {
  padding: 28px;
}

.album-content h4 {
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 12px;
}

.album-content p {
  color: #64748b;
  line-height: 1.7;
}

.album-content a {
  color: #2f6ea5;
  font-weight: 500;
  text-decoration: none;
}

.album-content a i {
  margin-left: 6px;
  transition: 0.3s;
}

.album-content a:hover i {
  margin-left: 12px;
}

/* ===================================
   VIDEO GALLERY
=================================== */

.video-gallery-section {
  padding: 110px 0;
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  color: #fff;
}

.light-title h2 {
  color: #fff;
}

.light-title p {
  color: rgba(255, 255, 255, 0.74);
}

.video-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: 0.35s ease;
}

.video-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
}

.video-thumb {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  color: #2f6ea5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.25);
}

.video-content {
  padding: 28px;
}

.video-content h4 {
  font-weight: 500;
  color: #fff;
}

.video-content p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
  line-height: 1.7;
}
/* ===================================
   LIGHTBOX
=================================== */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(15, 23, 42, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox img {
  max-width: 95%;
  max-height: 88vh;
  border-radius: 22px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* ===================================
   CTA
=================================== */

.gallery-cta {
  padding: 105px 0;
  background:
    linear-gradient(135deg, rgba(47, 110, 165, 0.95), rgba(139, 195, 74, 0.95)),
    url("../images/gallery-cta.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.gallery-cta h2 {
  font-size: 48px;
  font-weight: 500;
}

.gallery-cta p {
  max-width: 700px;
  margin: 18px auto 30px;
  font-size: 18px;
  line-height: 1.8;
}

/* ===================================
   GALLERY RESPONSIVE
=================================== */

@media (max-width: 1199px) {
  .gallery-hero h1 {
    font-size: 58px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .gallery-hero {
    padding: 150px 0 90px;
  }

  .gallery-hero h1 {
    font-size: 46px;
  }

  .photo-gallery-section,
  .albums-section,
  .video-gallery-section {
    padding: 80px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
  }

  .gallery-filter {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 8px;
    padding-bottom: 10px;
  }

  .gallery-filter-btn {
    flex: 0 0 auto;
  }
}

@media (max-width: 767px) {
  .gallery-hero {
    padding: 130px 0 75px;
  }

  .gallery-hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .gallery-hero p {
    font-size: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-overlay {
    opacity: 1;
  }

  .album-img,
  .video-thumb {
    height: 230px;
  }

  .gallery-cta {
    padding: 75px 20px;
  }

  .gallery-cta h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .gallery-hero h1 {
    font-size: 30px;
  }

  .gallery-stat-card,
  .album-content,
  .video-content {
    padding: 24px;
  }

  .gallery-view-btn {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .lightbox-close {
    top: 18px;
    right: 18px;
  }
}

/* ======================================
   PAST EVENT HIGHLIGHTS - CLEAN STYLE
====================================== */

.past-events-section {
  padding: 100px 0;
  background: #f6f9fc;
  overflow: hidden;
}

.past-events-section .section-title {
  max-width: 850px;
  margin: 0 auto 55px;
}

.past-events-section .section-title span {
  display: inline-block;
  color: #6fbd35;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.past-events-section .section-title h2 {
  font-size: 46px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 14px;
}

.past-events-section .section-title p {
  color: #526987;
  font-size: 18px;
  line-height: 1.7;
}

/* Timeline Wrapper */
.past-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  display: grid;
  gap: 32px;
}

/* Left Line */
.past-timeline::before {
  content: "";
  position: absolute;
  left: 95px;
  top: 20px;
  bottom: 20px;
  width: 4px;
  border-radius: 50px;
  background: linear-gradient(to bottom, #2f78b7, #8bc34a);
  animation: timelineGrow 1.2s ease forwards;
  transform-origin: top;
}

/* Item */
.past-event-item {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(35px);
  animation: eventFadeUp 0.8s ease forwards;
}

.past-event-item:nth-child(1) {
  animation-delay: 0.15s;
}

.past-event-item:nth-child(2) {
  animation-delay: 0.35s;
}

.past-event-item:nth-child(3) {
  animation-delay: 0.55s;
}

/* Year Box */
.past-year {
  width: 140px;
  height: 72px;
  margin: 0 auto;
  border-radius: 22px;
  background: linear-gradient(135deg, #2f78b7, #8bc34a);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(47, 120, 183, 0.25);
  position: relative;
  z-index: 2;
  transition: 0.35s ease;
}

/* Small Dot */
.past-year::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ffffff;
  opacity: 0;
}

/* Glow Ring */
.past-year::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 28px;
  background: linear-gradient(135deg, #2f78b7, #8bc34a);
  opacity: 0.14;
  z-index: -1;
  animation: yearPulse 2.2s infinite;
}

/* Content Card */
.past-content {
  background: #ffffff;
  padding: 30px 34px;
  border-radius: 26px;
  border: 1px solid #e2eaf3;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}

/* Right Decoration */
.past-content::before {
  content: "";
  position: absolute;
  right: -45px;
  top: -45px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: rgba(139, 195, 74, 0.12);
  transition: 0.35s ease;
}

/* Left Arrow */
.past-content::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 22px;
  height: 22px;
  background: #ffffff;
  transform: translateY(-50%) rotate(45deg);
  border-left: 1px solid #e2eaf3;
  border-bottom: 1px solid #e2eaf3;
}

.past-content h4 {
  position: relative;
  z-index: 2;
  color: #0f172a;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
}

.past-content p {
  position: relative;
  z-index: 2;
  color: #526987;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Hover Effects */
.past-event-item:hover .past-year {
  transform: scale(1.08);
  box-shadow: 0 24px 55px rgba(47, 120, 183, 0.38);
}

.past-event-item:hover .past-content {
  transform: translateX(10px);
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.14);
}

.past-event-item:hover .past-content::before {
  transform: scale(1.25);
}

/* Animations */
@keyframes eventFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes timelineGrow {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes yearPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.18;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.08;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.18;
  }
}

/* ======================================
   TABLET RESPONSIVE
====================================== */

@media (max-width: 991px) {
  .past-events-section {
    padding: 80px 0;
  }

  .past-events-section .section-title h2 {
    font-size: 38px;
  }

  .past-timeline {
    max-width: 100%;
  }

  .past-event-item {
    grid-template-columns: 160px 1fr;
    gap: 24px;
  }

  .past-timeline::before {
    left: 80px;
  }

  .past-year {
    width: 125px;
    height: 66px;
  }

  .past-content h4 {
    font-size: 22px;
  }
}

/* ======================================
   MOBILE RESPONSIVE
====================================== */

@media (max-width: 767px) {
  .past-events-section {
    padding: 60px 0;
  }

  .past-events-section .section-title {
    margin-bottom: 38px;
  }

  .past-events-section .section-title h2 {
    font-size: 30px;
  }

  .past-events-section .section-title p {
    font-size: 15px;
  }

  .past-timeline {
    gap: 22px;
  }

  .past-timeline::before {
    left: 24px;
    top: 10px;
    bottom: 10px;
  }

  .past-event-item {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: flex-start;
  }

  .past-year {
    width: 100px;
    height: 48px;
    margin: 0;
    border-radius: 16px;
    font-size: 14px;
  }

  .past-year::after {
    border-radius: 20px;
  }

  .past-content {
    padding: 22px;
    border-radius: 20px;
    width: 100%;
  }

  .past-content::after {
    display: none;
  }

  .past-content h4 {
    font-size: 20px;
  }

  .past-content p {
    font-size: 15px;
  }

  .past-event-item:hover .past-content {
    transform: translateY(-5px);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .past-timeline::before {
    left: 18px;
  }

  .past-year {
    width: 90px;
    height: 46px;
  }
}

/* ===============================
   SUSTAINABILITY ROADMAP EFFECT
================================ */

.roadmap-section {
  padding: 110px 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(47, 110, 165, 0.08),
      transparent 32%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(139, 195, 74, 0.12),
      transparent 35%
    ),
    #ffffff;
  overflow: hidden;
}

.roadmap-section .section-title {
  max-width: 850px;
  margin: 0 auto 55px;
}

.roadmap-section .section-title span {
  color: #75bd35;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.roadmap-section .section-title h2 {
  font-size: 46px;
  font-weight: 900;
  color: #0f172a;
  margin: 14px 0;
}

.roadmap-section .section-title p {
  color: #526987;
  font-size: 18px;
}

/* Roadmap Wrapper */
.roadmap-wrapper {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

/* Vertical Line */
.roadmap-wrapper::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 10px;
  width: 4px;
  height: calc(100% - 20px);
  background: linear-gradient(to bottom, #2f78b7, #8bc34a);
  border-radius: 50px;
  transform: scaleY(0);
  transform-origin: top;
  animation: roadmapLine 1.3s ease forwards;
}

/* Roadmap Item */
.roadmap-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 34px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateX(-40px);
  animation: roadmapFade 0.75s ease forwards;
}

.roadmap-item:nth-child(1) {
  animation-delay: 0.15s;
}

.roadmap-item:nth-child(2) {
  animation-delay: 0.35s;
}

.roadmap-item:nth-child(3) {
  animation-delay: 0.55s;
}

.roadmap-item:nth-child(4) {
  animation-delay: 0.75s;
}

.roadmap-item:last-child {
  margin-bottom: 0;
}

/* Number Circle */
.roadmap-number {
  width: 78px;
  height: 78px;
  min-width: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f78b7, #8bc34a);
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  box-shadow: 0 18px 42px rgba(47, 120, 183, 0.28);
  transition: 0.35s ease;
}

/* Pulse Ring */
.roadmap-number::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f78b7, #8bc34a);
  opacity: 0.18;
  z-index: -1;
  animation: roadmapPulse 2.2s infinite;
}

/* Small White Dot */
.roadmap-number::after {
  content: "";
  position: absolute;
  right: -8px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 4px solid #8bc34a;
  border-radius: 50%;
}

/* Content Card */
.roadmap-content {
  flex: 1;
  padding: 32px 36px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #dbe6f1;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}

/* Card Glow Shape */
.roadmap-content::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(139, 195, 74, 0.13);
  transition: 0.35s ease;
}

/* Left Arrow */
.roadmap-content::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 22px;
  height: 22px;
  background: #ffffff;
  transform: translateY(-50%) rotate(45deg);
  border-left: 1px solid #dbe6f1;
  border-bottom: 1px solid #dbe6f1;
}

.roadmap-content h4 {
  position: relative;
  z-index: 2;
  color: #0f172a;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

.roadmap-content p {
  position: relative;
  z-index: 2;
  color: #526987;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Hover Effect */
.roadmap-item:hover .roadmap-number {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 25px 55px rgba(47, 120, 183, 0.38);
}

.roadmap-item:hover .roadmap-content {
  transform: translateX(12px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14);
  border-color: rgba(139, 195, 74, 0.45);
}

.roadmap-item:hover .roadmap-content::before {
  transform: scale(1.35);
}

/* Animations */
@keyframes roadmapFade {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes roadmapLine {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes roadmapPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.22;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.08;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.22;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .roadmap-section {
    padding: 80px 0;
  }

  .roadmap-section .section-title h2 {
    font-size: 38px;
  }

  .roadmap-content {
    padding: 28px;
  }

  .roadmap-content h4 {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .roadmap-section {
    padding: 60px 0;
  }

  .roadmap-section .section-title {
    margin-bottom: 40px;
  }

  .roadmap-section .section-title h2 {
    font-size: 30px;
  }

  .roadmap-section .section-title p {
    font-size: 15px;
  }

  .roadmap-wrapper::before {
    left: 29px;
  }

  .roadmap-item {
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .roadmap-number {
    width: 58px;
    height: 58px;
    min-width: 58px;
    font-size: 16px;
  }

  .roadmap-number::after {
    display: none;
  }

  .roadmap-content {
    padding: 22px;
    border-radius: 20px;
  }

  .roadmap-content::after {
    display: none;
  }

  .roadmap-content h4 {
    font-size: 20px;
  }

  .roadmap-content p {
    font-size: 15px;
  }

  .roadmap-item:hover .roadmap-content {
    transform: translateY(-5px);
  }
}

/* ===================================
   RESPONSIVE
=================================== */

.membership-hero {
  padding: 190px 0 120px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.82)),
    url("../images/membership-banner.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.membership-hero h1 {
  font-size: 72px;
  font-weight: 500;
  margin: 22px 0;
}

.membership-hero p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 780px;
  margin: auto;
}

.page-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
}

/* ===================================
   MEMBERSHIP TYPES
=================================== */

.membership-types {
  padding: 100px 0;
  background: #fff;
}

.section-title {
  margin-bottom: 55px;
}

.section-title span {
  color: #8bc34a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 500;
  margin: 12px 0;
  color: #0f172a;
}

.section-title p {
  max-width: 650px;
  margin: auto;
  color: #64748b;
}

.membership-plan {
  position: relative;
  height: 100%;
  padding: 40px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
}

.membership-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.14);
}

.featured-plan {
  border: 2px solid #8bc34a;
  background: linear-gradient(
    180deg,
    rgba(139, 195, 74, 0.08),
    rgba(255, 255, 255, 1)
  );
}

.popular-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 14px;
  background: #f5a623;
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}

.plan-icon {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(47, 110, 165, 0.1);
  color: #2f6ea5;
  font-size: 36px;
  margin-bottom: 25px;
}

.membership-plan h4 {
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 15px;
}

.membership-plan p {
  color: #64748b;
  line-height: 1.7;
}

.membership-plan ul {
  margin-top: 25px;
}

.membership-plan ul li {
  margin-bottom: 12px;
  color: #334155;
  font-size: 15px;
}

.membership-plan ul li i {
  color: #8bc34a;
  margin-right: 8px;
}

/* ===================================
   APPLICATION SECTION
=================================== */

.application-section {
  padding: 110px 0;
  background: #f8fafc;
}

.sticky-box {
  position: sticky;
  top: 110px;
}

.application-info {
  padding: 38px;
  border-radius: 30px;
  background: linear-gradient(145deg, #0f172a, #1e3a5f);
  color: #fff;
  box-shadow: 0 25px 65px rgba(15, 23, 42, 0.22);
}

.form-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  margin-bottom: 18px;
  font-size: 14px;
}

.application-info h3 {
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 18px;
}

.application-info > p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.process-list {
  margin-top: 35px;
}

.process-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-item.active {
  background: rgba(139, 195, 74, 0.22);
}

.process-item span {
  min-width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #8bc34a;
  color: #fff;
  border-radius: 50%;
  font-weight: 500;
}

.process-item h6 {
  margin-bottom: 5px;
  font-weight: 700;
}

.process-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

/* ===================================
   FORM CARD
=================================== */

.membership-form-card {
  background: #fff;
  border-radius: 32px;
  padding: 45px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.1);
}

.form-header {
  margin-bottom: 35px;
}

.form-header h3 {
  font-size: 34px;
  font-weight: 500;
  color: #0f172a;
}

.form-header p {
  color: #64748b;
}

.form-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
}

.progress-step {
  text-align: center;
  position: relative;
}

.progress-step span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  color: #64748b;
  border-radius: 50%;
  font-weight: 500;
  transition: 0.35s;
}

.progress-step p {
  margin: 8px 0 0;
  font-size: 14px;
  color: #64748b;
}

.progress-step.active span {
  background: #8bc34a;
  color: #fff;
  box-shadow: 0 10px 25px rgba(139, 195, 74, 0.35);
}

.progress-step.active p {
  color: #0f172a;
  font-weight: 700;
}

.progress-line {
  flex: 1;
  height: 3px;
  background: #e5e7eb;
  margin: 0 15px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 28px;
  color: #0f172a;
}

.membership-form-card label {
  display: block;
  margin-bottom: 9px;
  font-weight: 600;
  color: #334155;
}

.membership-form-card .form-control,
.membership-form-card .form-select {
  height: 56px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 12px 16px;
  color: #0f172a;
  box-shadow: none;
}

.membership-form-card textarea.form-control {
  height: auto;
}

.membership-form-card .form-control:focus,
.membership-form-card .form-select:focus {
  border-color: #8bc34a;
  box-shadow: 0 0 0 4px rgba(139, 195, 74, 0.14);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 38px;
}

.next-btn,
.submit-btn {
  background: #2f6ea5;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
}

.next-btn:hover,
.submit-btn:hover {
  background: #245b8b;
  color: #fff;
}

.prev-btn {
  background: #e2e8f0;
  color: #0f172a;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
}

.prev-btn:hover {
  background: #cbd5e1;
}

/* ===================================
   DOCUMENT CHECKLIST
=================================== */

.document-checklist {
  display: grid;
  gap: 18px;
  margin-bottom: 25px;
}

.doc-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.doc-item i {
  width: 55px;
  height: 55px;
  min-width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 110, 165, 0.1);
  color: #2f6ea5;
  border-radius: 16px;
  font-size: 26px;
}

.doc-item h6 {
  font-weight: 500;
  margin-bottom: 6px;
}

.doc-item p {
  margin-bottom: 0;
  color: #64748b;
  font-size: 14px;
}

.declaration-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 18px;
  background: rgba(139, 195, 74, 0.1);
  border: 1px solid rgba(139, 195, 74, 0.25);
}

.declaration-box input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
}

.declaration-box label {
  margin-bottom: 0;
  line-height: 1.7;
}

/* ===================================
   BENEFITS
=================================== */

.membership-benefits {
  padding: 100px 0;
  background: #fff;
}

.member-benefit-card {
  height: 100%;
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  transition: 0.35s;
}

.member-benefit-card:hover {
  transform: translateY(-10px);
}

.member-benefit-card i {
  font-size: 46px;
  color: #8bc34a;
  margin-bottom: 18px;
}

.member-benefit-card h5 {
  font-weight: 500;
  color: #0f172a;
}

.member-benefit-card p {
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.7;
}

/* ===================================
   CTA
=================================== */

.membership-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #2f6ea5, #8bc34a);
  color: #fff;
}

.membership-cta h2 {
  font-size: 48px;
  font-weight: 500;
}

.membership-cta p {
  max-width: 680px;
  margin: 18px auto 30px;
  font-size: 18px;
}

/* ===================================
   FOOTER EXTRA
=================================== */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 45px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.7);
}

.mobile-join-btn {
  background: #f5a623;
  color: #fff;
  border-radius: 14px;
  padding: 14px;
  font-weight: 700;
}
.membership-hero {
  position: relative;
  width: 100%;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.membership-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.membership-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 40, 90, 0.35);
  z-index: 2;
}

.membership-hero .container {
  position: relative;
  z-index: 3;
}

.page-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: #ffffff;
  color: #0b5eb8;
  font-weight: 600;
  margin-bottom: 18px;
}

.membership-hero h1 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 18px;
}

.membership-hero p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.7;
  max-width: 850px;
  margin: auto;
}

@media (max-width: 768px) {
  .membership-hero {
    min-height: 380px;
  }

  .membership-hero h1 {
    font-size: 38px;
  }

  .membership-hero p {
    font-size: 16px;
  }
}

.membership-cta {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.membership-cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.membership-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 90, 0.55);
  z-index: 2;
}

.membership-cta .container {
  position: relative;
  z-index: 3;
}

.membership-cta h2 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 16px;
}

.membership-cta p {
  color: #ffffff;
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.membership-cta .btn {
  border-radius: 50px;
  padding: 12px 34px;
  font-weight: 700;
  color: #0056a8;
}

/* Responsive */
@media (max-width: 768px) {
  .membership-cta {
    min-height: 330px;
  }

  .membership-cta h2 {
    font-size: 32px;
  }

  .membership-cta p {
    font-size: 16px;
  }
}
/* ===================================
   MEMBERSHIP RESPONSIVE
=================================== */

@media (max-width: 1199px) {
  .membership-hero h1 {
    font-size: 58px;
  }

  .membership-form-card {
    padding: 35px;
  }
}

@media (max-width: 991px) {
  .membership-hero {
    padding: 150px 0 90px;
  }

  .membership-hero h1 {
    font-size: 46px;
  }

  .membership-types,
  .application-section,
  .membership-benefits {
    padding: 80px 0;
  }

  .sticky-box {
    position: relative;
    top: 0;
  }

  .application-info {
    margin-bottom: 20px;
  }

  .section-title h2 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .membership-hero {
    padding: 130px 0 75px;
  }

  .membership-hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .membership-hero p {
    font-size: 16px;
  }

  .membership-plan {
    padding: 28px;
  }

  .application-section {
    padding: 65px 0;
  }

  .application-info {
    padding: 28px;
  }

  .membership-form-card {
    padding: 24px;
    border-radius: 24px;
  }

  .form-header h3 {
    font-size: 26px;
  }

  .form-progress {
    gap: 8px;
    margin-bottom: 35px;
  }

  .progress-step span {
    width: 42px;
    height: 42px;
  }

  .progress-step p {
    font-size: 12px;
  }

  .progress-line {
    margin: 0 4px;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  .doc-item {
    flex-direction: column;
  }

  .membership-cta {
    padding: 70px 20px;
  }

  .membership-cta h2 {
    font-size: 30px;
  }

  footer {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .membership-hero h1 {
    font-size: 30px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .popular-badge {
    position: static;
    display: inline-block;
    margin-bottom: 18px;
  }

  .membership-form-card .form-control,
  .membership-form-card .form-select {
    height: 52px;
  }
}
/* ===================================
   objectiveS HERO
=================================== */

.objectives-hero {
  padding: 190px 0 120px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.84)),
    url("../images/objectives-banner.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.objectives-hero h1 {
  font-size: 72px;
  font-weight: 500;
  margin: 22px 0;
}

.objectives-hero p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 780px;
  margin: auto;
}

/* ===================================
   objective INTRO
=================================== */

.objective-intro {
  padding: 110px 0;
  background: #fff;
}

.objective-image {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.14);
}

.objective-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(47, 110, 165, 0.2),
    rgba(139, 195, 74, 0.2)
  );
  z-index: 1;
}

.objective-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.objective-intro h2 {
  font-size: 46px;
  font-weight: 500;
  color: #0f172a;
  margin: 18px 0;
  line-height: 1.25;
}

.objective-intro p {
  color: #64748b;
  line-height: 1.8;
  font-size: 16px;
}

.objective-highlight {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.objective-highlight div {
  flex: 1;
  padding: 25px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.objective-highlight h3 {
  font-size: 38px;
  font-weight: 500;
  color: #2f6ea5;
  margin-bottom: 5px;
}

.objective-highlight span {
  color: #334155;
  font-weight: 600;
}

.objectives-hero {
  position: relative;
  width: 100%;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.objectives-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.objectives-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 90, 0.45);
  z-index: 2;
}

.objectives-hero .container {
  position: relative;
  z-index: 3;
}

.page-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: #ffffff;
  color: #0b5eb8;
  font-weight: 600;
  margin-bottom: 18px;
}

.objectives-hero h1 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 18px;
}

.objectives-hero p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.7;
  max-width: 850px;
  margin: auto;
}

@media (max-width: 768px) {
  .objectives-hero {
    min-height: 380px;
  }

  .objectives-hero h1 {
    font-size: 38px;
  }

  .objectives-hero p {
    font-size: 16px;
  }
}

.objectives-cta {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.objectives-cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.objectives-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 90, 0.55);
  z-index: 2;
}

.objectives-cta .container {
  position: relative;
  z-index: 3;
}

.objectives-cta h2 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 16px;
}

.objectives-cta p {
  color: #ffffff;
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.objectives-cta .btn {
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 700;
  color: #0056a8;
  border: none;
}

@media (max-width: 768px) {
  .objectives-cta {
    min-height: 330px;
  }

  .objectives-cta h2 {
    font-size: 32px;
  }

  .objectives-cta p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .objectives-cta {
    min-height: 300px;
  }

  .objectives-cta h2 {
    font-size: 28px;
  }
}

.featured-event-section {
  padding: 90px 0;
  background: #f5f8fb;
}

.section-title {
  max-width: 850px;
  margin: 0 auto 45px;
}

.event-category {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  background: #eaf7df;
  color: #2f7d18;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 18px;
}

.section-title p {
  font-size: 18px;
  line-height: 1.8;
  color: #5b6f8a;
  margin: 0 auto;
}

.featured-event-card {
  background: #ffffff;
  border-radius: 36px;
  padding: 55px;
  border: 1px solid #e5edf5;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

/* 3 IMAGE DESIGN */
.featured-event-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  grid-template-rows: 180px 180px;
  gap: 18px;
}

.featured-event-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Big image */
.main-event-img {
  grid-row: span 2;
  border-radius: 28px;
  overflow: hidden;
}

/* Small images */
.small-event-img {
  border-radius: 24px;
  overflow: hidden;
}

.event-date-badge {
  position: absolute;
  left: 22px;
  top: 22px;
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.event-date-badge span {
  font-size: 30px;
  font-weight: 900;
  color: #0b5eb8;
  line-height: 1;
}

.event-date-badge small {
  font-size: 14px;
  font-weight: 500;
  color: #2f7d18;
}

/* Right Content */
.event-content {
  max-width: 520px;
  margin: auto;
}

.event-meta {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.event-meta div {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 700;
  color: #183153;
}

.event-meta i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #eef4fb;
  color: #0b66c3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.event-main-btn {
  background: #2f78b7;
  color: #ffffff;
  padding: 15px 38px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  border: none;
}

.event-main-btn:hover {
  background: #185f9d;
  color: #ffffff;
}

.featured-event-section {
  padding: 90px 0;
  background: #f5f8fb;
}

.section-title {
  max-width: 850px;
  margin: 0 auto 45px;
}

.event-category {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  background: #eaf7df;
  color: #2f7d18;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 16px;
}

.section-title p {
  font-size: 18px;
  line-height: 1.8;
  color: #5b6f8a;
}

.featured-event-card {
  background: #ffffff;
  border-radius: 34px;
  padding: 45px;
  border: 1px solid #e5edf5;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

/* Image Row */
.event-image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 45px;
}

.event-photo-box {
  background: #ffffff;
}

.event-photo-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
}

.event-photo-box h5 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.5;
  margin-top: 14px;
  margin-bottom: 0;
}

/* Event Details */
.event-content {
  max-width: 900px;
  margin: auto;
}

.event-meta {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.event-meta div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f3f7fb;
  padding: 14px 20px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 700;
  color: #183153;
}

.event-meta i {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #e7f0fa;
  color: #0b66c3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.event-main-btn {
  background: #2f78b7;
  color: #ffffff;
  padding: 14px 38px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 500;
  border: none;
}

.event-main-btn:hover {
  background: #185f9d;
  color: #ffffff;
}

/* Tablet */
@media (max-width: 991px) {
  .featured-event-card {
    padding: 32px;
  }

  .event-image-row {
    grid-template-columns: 1fr;
  }

  .event-photo-box img {
    height: 330px;
  }

  .section-title h2 {
    font-size: 36px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .featured-event-section {
    padding: 60px 0;
  }

  .featured-event-card {
    padding: 22px;
    border-radius: 24px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .section-title p {
    font-size: 16px;
  }

  .event-photo-box img {
    height: 230px;
    border-radius: 18px;
  }

  .event-photo-box h5 {
    font-size: 15px;
  }

  .event-meta {
    gap: 14px;
  }

  .event-meta div {
    width: 100%;
    justify-content: flex-start;
  }
}

.events-hero {
  position: relative;
  width: 100%;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.events-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.events-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 90, 0.48);
  z-index: 2;
}

.events-hero .container {
  position: relative;
  z-index: 3;
}

.page-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: #ffffff;
  color: #0b5eb8;
  font-weight: 700;
  margin-bottom: 18px;
}

.events-hero h1 {
  color: #ffffff;
  font-size: 58px;
  font-weight: 500;
  margin-bottom: 18px;
}

.events-hero p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.7;
  max-width: 850px;
  margin: auto;
}

@media (max-width: 768px) {
  .events-hero {
    min-height: 380px;
  }

  .events-hero h1 {
    font-size: 40px;
  }

  .events-hero p {
    font-size: 16px;
  }
}

.events-cta {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.events-cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.events-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 90, 0.55);
  z-index: 2;
}

.events-cta .container {
  position: relative;
  z-index: 3;
}

.events-cta h2 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 16px;
}

.events-cta p {
  color: #ffffff;
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.events-cta .btn {
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 700;
  color: #0056a8;
  border: none;
}

@media (max-width: 768px) {
  .events-cta {
    min-height: 330px;
  }

  .events-cta h2 {
    font-size: 32px;
  }

  .events-cta p {
    font-size: 16px;
  }
}
/* Responsive */
@media (max-width: 991px) {
  .featured-event-card {
    padding: 35px;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .featured-event-gallery {
    grid-template-rows: 160px 160px;
  }

  .event-meta div {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .featured-event-section {
    padding: 60px 0;
  }

  .featured-event-card {
    padding: 22px;
    border-radius: 24px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .section-title p {
    font-size: 16px;
  }

  .featured-event-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 150px 150px;
  }

  .main-event-img {
    grid-row: span 1;
  }

  .event-meta div {
    font-size: 15px;
  }
}

/* ===================================
   MAIN objectiveS
=================================== */

.main-objectives {
  padding: 110px 0;
  background: #f8fafc;
}

.objective-card {
  height: 100%;
  padding: 38px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.objective-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -55px;
  top: -55px;
  border-radius: 50%;
  background: rgba(139, 195, 74, 0.12);
}

.objective-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.14);
}

.objective-icon {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(47, 110, 165, 0.12),
    rgba(139, 195, 74, 0.16)
  );
  color: #2f6ea5;
  font-size: 36px;
  margin-bottom: 24px;
}

.objective-card h4 {
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 15px;
}

.objective-card p {
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ===================================
   IMPACT SECTION
=================================== */

.impact-section {
  padding: 110px 0;
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  color: #fff;
}

.impact-section h2 {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.25;
  margin: 18px 0;
}

.impact-section p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.impact-box {
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(15px);
  transition: 0.35s ease;
}

.impact-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
}

.impact-box i {
  font-size: 42px;
  color: #8bc34a;
  margin-bottom: 18px;
}

.impact-box h5 {
  font-weight: 500;
  margin-bottom: 10px;
}

.impact-box p {
  margin-bottom: 0;
  font-size: 15px;
}

/* ===================================
   ROADMAP
=================================== */

.roadmap-section {
  padding: 110px 0;
  background: #fff;
}

.roadmap-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.roadmap-wrapper::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background: #e2e8f0;
  left: 36px;
  top: 0;
}

.roadmap-item {
  position: relative;
  display: flex;
  gap: 28px;
  margin-bottom: 34px;
}

.roadmap-item:last-child {
  margin-bottom: 0;
}

.roadmap-number {
  width: 76px;
  height: 76px;
  min-width: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f6ea5, #8bc34a);
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 28px rgba(47, 110, 165, 0.25);
}

.roadmap-content {
  padding: 30px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  flex: 1;
}

.roadmap-content h4 {
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 10px;
}

.roadmap-content p {
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ===================================
   GOALS
=================================== */

.goals-section {
  padding: 100px 0;
  background: #f8fafc;
}

.goal-card {
  height: 100%;
  padding: 40px;
  border-radius: 28px;
  color: #fff;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  transition: 0.35s ease;
}

.goal-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -70px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.goal-card:hover {
  transform: translateY(-10px);
}

.goal-card i {
  font-size: 48px;
  margin-bottom: 22px;
}

.goal-card h4 {
  font-weight: 500;
  margin-bottom: 14px;
}

.goal-card p {
  line-height: 1.8;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.blue-card {
  background: linear-gradient(135deg, #2f6ea5, #18476f);
}

.green-card {
  background: linear-gradient(135deg, #8bc34a, #4f8a22);
}

.orange-card {
  background: linear-gradient(135deg, #f5a623, #c77a00);
}

/* ===================================
   objectiveS CTA
=================================== */

.objectives-cta {
  padding: 105px 0;
  background:
    linear-gradient(135deg, rgba(47, 110, 165, 0.95), rgba(139, 195, 74, 0.95)),
    url("../images/solar-cta.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.objectives-cta h2 {
  font-size: 48px;
  font-weight: 500;
}

.objectives-cta p {
  max-width: 700px;
  margin: 18px auto 30px;
  font-size: 18px;
  line-height: 1.8;
}

/* ===================================
   objectiveS RESPONSIVE
=================================== */

@media (max-width: 1199px) {
  .objectives-hero h1 {
    font-size: 58px;
  }

  .objective-intro h2,
  .impact-section h2 {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  .objectives-hero {
    padding: 150px 0 90px;
  }

  .objectives-hero h1 {
    font-size: 46px;
  }

  .objective-intro,
  .main-objectives,
  .impact-section,
  .roadmap-section,
  .goals-section {
    padding: 80px 0;
  }

  .objective-intro {
    text-align: center;
  }

  .objective-image img {
    height: 420px;
  }

  .objective-highlight {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .objectives-hero {
    padding: 130px 0 75px;
  }

  .objectives-hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .objectives-hero p {
    font-size: 16px;
  }

  .objective-intro h2,
  .impact-section h2 {
    font-size: 30px;
  }

  .objective-image img {
    height: 300px;
  }

  .objective-highlight {
    flex-direction: column;
  }

  .objective-card,
  .impact-box,
  .goal-card {
    padding: 28px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-wrapper::before {
    left: 28px;
  }

  .roadmap-item {
    gap: 18px;
  }

  .roadmap-number {
    width: 58px;
    height: 58px;
    min-width: 58px;
    font-size: 16px;
  }

  .roadmap-content {
    padding: 22px;
  }

  .objectives-cta {
    padding: 75px 20px;
  }

  .objectives-cta h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .objectives-hero h1 {
    font-size: 30px;
  }

  .objective-card h4,
  .goal-card h4 {
    font-size: 20px;
  }

  .roadmap-item {
    flex-direction: column;
  }

  .roadmap-wrapper::before {
    display: none;
  }
}

/* ===================================
   EVENTS HERO
=================================== */

.events-hero {
  padding: 190px 0 120px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.84)),
    url("../images/events-banner.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.events-hero h1 {
  font-size: 72px;
  font-weight: 500;
  margin: 22px 0;
}

.events-hero p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 780px;
  margin: auto;
}

/* ===================================
   FEATURED EVENT
=================================== */

.featured-event-section {
  padding: 110px 0;
  background: #fff;
}

.featured-event-card {
  padding: 45px;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
}

.featured-event-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.featured-event-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.event-date-badge {
  position: absolute;
  left: 25px;
  top: 25px;
  width: 86px;
  height: 86px;
  border-radius: 22px;
  background: #fff;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.18);
}

.event-date-badge span {
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.event-date-badge small {
  font-weight: 500;
  color: #8bc34a;
}

.event-category {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 50px;
  background: rgba(139, 195, 74, 0.14);
  color: #4f8a22;
  font-weight: 500;
  margin-bottom: 18px;
}

.featured-event-card h2 {
  font-size: 42px;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 18px;
}

.featured-event-card p {
  color: #64748b;
  line-height: 1.8;
}

.event-meta {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.event-meta div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #334155;
  font-weight: 600;
}

.event-meta i {
  width: 42px;
  height: 42px;
  background: rgba(47, 110, 165, 0.1);
  color: #2f6ea5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-main-btn {
  background: #2f6ea5;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  border: none;
}

.event-main-btn:hover {
  background: #245b8b;
  color: #fff;
}

/* ===================================
   EVENT STATS
=================================== */

.event-stats-section {
  padding: 80px 0;
  background: #f8fafc;
}

.event-stat-card {
  height: 100%;
  padding: 35px;
  text-align: center;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
}

.event-stat-card:hover {
  transform: translateY(-10px);
}

.event-stat-card i {
  font-size: 46px;
  color: #8bc34a;
  margin-bottom: 16px;
}

.event-stat-card h2 {
  font-size: 42px;
  font-weight: 500;
  color: #2f6ea5;
}

.event-stat-card p {
  margin-bottom: 0;
  font-weight: 600;
  color: #64748b;
}

/* ===================================
   UPCOMING EVENTS
=================================== */

.upcoming-events-section {
  padding: 110px 0;
  background: #fff;
}

.event-filter {
  margin-bottom: 45px;
}

.filter-btn {
  border: none;
  padding: 12px 22px;
  margin: 6px;
  border-radius: 50px;
  background: #f1f5f9;
  color: #334155;
  font-weight: 700;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #2f6ea5;
  color: #fff;
}

.premium-event-card {
  height: 100%;
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
}

.premium-event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.14);
}

.event-card-img {
  position: relative;
  height: 245px;
  overflow: hidden;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.premium-event-card:hover .event-card-img img {
  transform: scale(1.08);
}

.event-date {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: #fff;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.event-date span {
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
}

.event-date small {
  color: #8bc34a;
  font-weight: 500;
}

.event-card-content {
  padding: 28px;
}

.event-type {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}

.event-type.conference {
  background: rgba(47, 110, 165, 0.12);
  color: #2f6ea5;
}

.event-type.workshop {
  background: rgba(139, 195, 74, 0.14);
  color: #4f8a22;
}

.event-type.training {
  background: rgba(245, 166, 35, 0.16);
  color: #b66d00;
}

.event-type.meeting {
  background: rgba(99, 102, 241, 0.12);
  color: #4f46e5;
}

.event-card-content h4 {
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.35;
}

.event-card-content p {
  color: #64748b;
  line-height: 1.7;
}

.event-card-content ul {
  margin: 20px 0;
}

.event-card-content ul li {
  margin-bottom: 10px;
  color: #334155;
  font-size: 15px;
}

.event-card-content ul li i {
  color: #2f6ea5;
  margin-right: 8px;
}

.event-link {
  color: #2f6ea5;
  font-weight: 500;
  text-decoration: none;
}

.event-link i {
  margin-left: 5px;
  transition: 0.3s;
}

.event-link:hover i {
  margin-left: 10px;
}

/* ===================================
   WORKSHOP SECTION
=================================== */

.workshop-section {
  padding: 110px 0;
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  color: #fff;
}

.workshop-section h2 {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.25;
  margin: 18px 0;
}

.workshop-section p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.workshop-box {
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(15px);
  transition: 0.35s ease;
}

.workshop-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
}

.workshop-box i {
  font-size: 42px;
  color: #8bc34a;
  margin-bottom: 18px;
}

.workshop-box h5 {
  font-weight: 500;
  margin-bottom: 10px;
}

.workshop-box p {
  margin-bottom: 0;
  font-size: 15px;
}

/* ===================================
   PAST EVENTS
=================================== */

.past-events-section {
  padding: 110px 0;
  background: #f8fafc;
}

.past-timeline {
  max-width: 900px;
  margin: auto;
  position: relative;
}

.past-timeline::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #e2e8f0;
}

.past-event-item {
  display: flex;
  gap: 30px;
  position: relative;
  margin-bottom: 30px;
}

.past-year {
  width: 140px;
  min-width: 140px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2f6ea5, #8bc34a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 30px rgba(47, 110, 165, 0.25);
}

.past-content {
  flex: 1;
  padding: 28px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.past-content h4 {
  font-weight: 500;
  color: #0f172a;
}

.past-content p {
  color: #64748b;
  margin-bottom: 0;
}
/* ===================================
   CTA
=================================== */

.events-cta {
  padding: 105px 0;
  background:
    linear-gradient(135deg, rgba(47, 110, 165, 0.95), rgba(139, 195, 74, 0.95)),
    url("../images/events-cta.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.events-cta h2 {
  font-size: 48px;
  font-weight: 500;
}

.events-cta p {
  max-width: 700px;
  margin: 18px auto 30px;
  font-size: 18px;
  line-height: 1.8;
}

/* ===================================
   EVENT RESPONSIVE
=================================== */

@media (max-width: 1199px) {
  .events-hero h1 {
    font-size: 58px;
  }

  .featured-event-card h2,
  .workshop-section h2 {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .events-hero {
    padding: 150px 0 90px;
  }

  .events-hero h1 {
    font-size: 46px;
  }

  .featured-event-section,
  .upcoming-events-section,
  .workshop-section,
  .past-events-section {
    padding: 80px 0;
  }

  .featured-event-card {
    padding: 30px;
    text-align: center;
  }

  .event-meta div {
    justify-content: center;
  }

  .event-filter {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 8px;
    padding-bottom: 10px;
  }

  .filter-btn {
    flex: 0 0 auto;
  }
}

@media (max-width: 767px) {
  .events-hero {
    padding: 130px 0 75px;
  }

  .events-hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .events-hero p {
    font-size: 16px;
  }

  .featured-event-card {
    padding: 22px;
    border-radius: 24px;
  }

  .featured-event-image img {
    height: 280px;
  }

  .featured-event-card h2,
  .workshop-section h2 {
    font-size: 30px;
  }

  .event-card-img {
    height: 220px;
  }

  .event-card-content {
    padding: 24px;
  }

  .workshop-grid {
    grid-template-columns: 1fr;
  }

  .workshop-box {
    padding: 26px;
  }

  .past-timeline::before {
    display: none;
  }

  .past-event-item {
    flex-direction: column;
    gap: 16px;
  }

  .past-year {
    width: 100%;
    min-width: 100%;
  }

  .events-cta {
    padding: 75px 20px;
  }

  .events-cta h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .events-hero h1 {
    font-size: 30px;
  }

  .event-date-badge {
    width: 72px;
    height: 72px;
  }

  .event-date-badge span {
    font-size: 24px;
  }

  .premium-event-card {
    border-radius: 22px;
  }
}

/* ===================================
   GALLERY HERO
=================================== */

.gallery-hero {
  padding: 190px 0 120px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.84)),
    url("../images/gallery-banner.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.gallery-hero h1 {
  font-size: 72px;
  font-weight: 500;
  margin: 22px 0;
}

.gallery-hero p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 780px;
  margin: auto;
}

.gallery-hero {
  position: relative;
  width: 100%;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gallery-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 90, 0.5);
  z-index: 2;
}

.gallery-hero .container {
  position: relative;
  z-index: 3;
}

.gallery-hero h1 {
  color: #ffffff;
  font-size: 58px;
  font-weight: 500;
  margin-bottom: 18px;
}

.gallery-hero p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.7;
  max-width: 850px;
  margin: auto;
}

.page-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: #ffffff;
  color: #0b5eb8;
  font-weight: 700;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .gallery-hero {
    min-height: 380px;
  }

  .gallery-hero h1 {
    font-size: 40px;
  }

  .gallery-hero p {
    font-size: 16px;
  }
}

.gallery-cta {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gallery-cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.gallery-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 90, 0.55);
  z-index: 2;
}

.gallery-cta .container {
  position: relative;
  z-index: 3;
}

.gallery-cta h2 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 16px;
}

.gallery-cta p {
  color: #ffffff;
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.gallery-cta .btn {
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 700;
  color: #0056a8;
  border: none;
}

@media (max-width: 768px) {
  .gallery-cta {
    min-height: 330px;
  }

  .gallery-cta h2 {
    font-size: 32px;
  }

  .gallery-cta p {
    font-size: 16px;
  }
}

/* ===================================
   GALLERY INTRO STATS
=================================== */

.gallery-intro {
  padding: 80px 0;
  background: #f8fafc;
}

.gallery-stat-card {
  height: 100%;
  padding: 35px;
  text-align: center;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
}

.gallery-stat-card:hover {
  transform: translateY(-10px);
}

.gallery-stat-card i {
  font-size: 46px;
  color: #8bc34a;
  margin-bottom: 16px;
}

.gallery-stat-card h2 {
  font-size: 42px;
  font-weight: 500;
  color: #2f6ea5;
}

.gallery-stat-card p {
  margin-bottom: 0;
  color: #64748b;
  font-weight: 600;
}
/* ===================================
   ALBUMS
=================================== */

.albums-section {
  padding: 110px 0;
  background: #f8fafc;
}

.album-card {
  height: 100%;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
}

.album-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.14);
}

.album-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.album-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.album-card:hover .album-img img {
  transform: scale(1.08);
}

.album-img span {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 16px;
  border-radius: 50px;
  background: #fff;
  color: #2f6ea5;
  font-size: 13px;
  font-weight: 500;
}

.album-content {
  padding: 28px;
}

.album-content h4 {
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 12px;
}

.album-content p {
  color: #64748b;
  line-height: 1.7;
}

.album-content a {
  color: #2f6ea5;
  font-weight: 500;
  text-decoration: none;
}

.album-content a i {
  margin-left: 6px;
  transition: 0.3s;
}

.album-content a:hover i {
  margin-left: 12px;
}

/* ===================================
   VIDEO GALLERY
=================================== */

.video-gallery-section {
  padding: 110px 0;
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  color: #fff;
}

.light-title h2 {
  color: #fff;
}

.light-title p {
  color: rgba(255, 255, 255, 0.74);
}

.video-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: 0.35s ease;
}

.video-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
}

.video-thumb {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  color: #2f6ea5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.25);
}

.video-content {
  padding: 28px;
}

.video-content h4 {
  font-weight: 500;
  color: #fff;
}

.video-content p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ===================================
   LIGHTBOX
=================================== */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(15, 23, 42, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox img {
  max-width: 95%;
  max-height: 88vh;
  border-radius: 22px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* ===================================
   CTA
=================================== */

.gallery-cta {
  padding: 105px 0;
  background:
    linear-gradient(135deg, rgba(47, 110, 165, 0.95), rgba(139, 195, 74, 0.95)),
    url("../images/gallery-cta.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.gallery-cta h2 {
  font-size: 48px;
  font-weight: 500;
}

.gallery-cta p {
  max-width: 700px;
  margin: 18px auto 30px;
  font-size: 18px;
  line-height: 1.8;
}

/* ===================================
   GALLERY RESPONSIVE
=================================== */

@media (max-width: 1199px) {
  .gallery-hero h1 {
    font-size: 58px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .gallery-hero {
    padding: 150px 0 90px;
  }

  .gallery-hero h1 {
    font-size: 46px;
  }

  .photo-gallery-section,
  .albums-section,
  .video-gallery-section {
    padding: 80px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
  }

  .gallery-filter {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 8px;
    padding-bottom: 10px;
  }

  .gallery-filter-btn {
    flex: 0 0 auto;
  }
}

@media (max-width: 767px) {
  .gallery-hero {
    padding: 130px 0 75px;
  }

  .gallery-hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .gallery-hero p {
    font-size: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-overlay {
    opacity: 1;
  }

  .album-img,
  .video-thumb {
    height: 230px;
  }

  .gallery-cta {
    padding: 75px 20px;
  }

  .gallery-cta h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .gallery-hero h1 {
    font-size: 30px;
  }

  .gallery-stat-card,
  .album-content,
  .video-content {
    padding: 24px;
  }

  .gallery-view-btn {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .lightbox-close {
    top: 18px;
    right: 18px;
  }
}
/* Common hero fix */
.membership-hero,
.objectives-hero,
.events-hero,
.gallery-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  padding: 160px 15px 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-position: center !important;
  overflow: hidden;
}

/* Hero image tag fix */
.membership-hero-img,
.objectives-hero-img,
.events-hero-img,
.gallery-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay fix */
.membership-overlay,
.objectives-hero-overlay,
.events-hero-overlay,
.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 90, 0.52);
  z-index: 2;
}

/* Hero content above image */
.membership-hero .container,
.objectives-hero .container,
.events-hero .container,
.gallery-hero .container {
  position: relative;
  z-index: 5;
}

/* Hero title fix */
.membership-hero h1,
.objectives-hero h1,
.events-hero h1,
.gallery-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.15;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
}

/* Hero paragraph fix */
.membership-hero p,
.objectives-hero p,
.events-hero p,
.gallery-hero p {
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto;
  color: #ffffff;
}

/* Badge common fix */
.page-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: #ffffff;
  color: #0b5eb8;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* Section title fix */
.section-title {
  max-width: 850px;
  margin: 0 auto 45px;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
  font-weight: 700;
}

.section-title p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Featured event card fix */
.featured-event-card {
  width: 100%;
  border-radius: 30px;
  padding: 45px;
  background: #ffffff;
  overflow: hidden;
}

/* Event image row fix */
.event-image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-photo-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
}

/* Event meta fix */
.event-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.event-meta div {
  display: flex;
  align-items: center;
  gap: 10px;
  word-break: break-word;
}

/* Gallery fix */
.simple-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.simple-gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.simple-gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.5s ease;
}

.simple-gallery-item:hover img {
  transform: scale(1.08);
}

.simple-gallery-item::after {
  content: "\F52A";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0d6efd;
  opacity: 0;
  transition: 0.4s;
}

.simple-gallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 991px) {
  .simple-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .simple-gallery-item img {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .simple-gallery-grid {
    grid-template-columns: 1fr;
  }

  .simple-gallery-item img {
    height: 250px;
  }
}
/* CTA image section fix */
.membership-cta,
.objectives-cta,
.events-cta,
.gallery-cta {
  position: relative;
  min-height: 380px;
  padding: 80px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.membership-cta-img,
.objectives-cta-img,
.events-cta-img,
.gallery-cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.membership-cta .container,
.objectives-cta .container,
.events-cta .container,
.gallery-cta .container {
  position: relative;
  z-index: 5;
}

.membership-cta h2,
.objectives-cta h2,
.events-cta h2,
.gallery-cta h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
}

/* iPad / Tablet fix */
@media (max-width: 991px) {
  .membership-hero,
  .objectives-hero,
  .events-hero,
  .gallery-hero {
    min-height: 430px;
    padding: 130px 15px 75px;
  }

  .featured-event-card {
    padding: 30px;
  }

  .event-image-row {
    grid-template-columns: 1fr;
  }

  .event-photo-box img {
    height: 330px;
  }

  .simple-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-box {
    position: relative;
    top: auto;
  }
}

/* Mobile fix */
@media (max-width: 575px) {
  .membership-hero,
  .objectives-hero,
  .events-hero,
  .gallery-hero {
    min-height: 360px;
    padding: 115px 15px 60px;
    text-align: center;
  }

  .membership-hero h1,
  .objectives-hero h1,
  .events-hero h1,
  .gallery-hero h1 {
    font-size: 32px;
  }

  .membership-hero p,
  .objectives-hero p,
  .events-hero p,
  .gallery-hero p {
    font-size: 15px;
  }

  .featured-event-card {
    padding: 20px;
    border-radius: 22px;
  }

  .event-photo-box img {
    height: 230px;
  }

  .event-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .event-meta div {
    width: 100%;
    justify-content: flex-start;
  }

  .simple-gallery-grid {
    grid-template-columns: 1fr;
  }

  .simple-gallery-item {
    height: 230px;
  }

  .membership-cta,
  .objectives-cta,
  .events-cta,
  .gallery-cta {
    min-height: 300px;
    padding: 60px 15px;
    text-align: center;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn,
  .next-btn,
  .prev-btn,
  .submit-btn {
    width: 100%;
  }
}
/* ==========================================
FAQ HERO
========================================== */

.faq-hero {
  position: relative;
  padding: 180px 0 150px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)),
    url("../images/faq-banner.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  font-weight: 600;
  margin-bottom: 20px;
}

.faq-hero h1 {
  font-size: 72px;
  font-weight: 800;
  margin-bottom: 20px;
}

.faq-hero p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
FAQ STATS
========================================== */

.faq-stats {
  margin-top: -90px;
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
}

.faq-stat-card {
  background: #fff;
  padding: 35px;
  border-radius: 25px;
  text-align: center;
  height: 100%;
  transition: 0.4s;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.faq-stat-card:hover {
  transform: translateY(-10px);
}

.faq-stat-card i {
  font-size: 48px;
  color: #8bc34a;
  margin-bottom: 15px;
}

.faq-stat-card h3 {
  font-size: 42px;
  font-weight: 800;
  color: #2f6ea5;
}

.faq-stat-card p {
  margin: 0;
  color: #64748b;
}

/* ==========================================
FILTER BUTTONS
========================================== */

.faq-filter-section {
  padding: 0 0 80px;
}

.faq-filter-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.faq-filter {
  border: none;
  background: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  color: #0f172a;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.faq-filter:hover,
.faq-filter.active {
  background: linear-gradient(135deg, #2f6ea5, #8bc34a);
  color: #fff;
}

/* ==========================================
FAQ SECTION
========================================== */

.premium-faq-section {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title span {
  display: block;
  color: #8bc34a;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 50px;
  font-weight: 800;
  color: #0f172a;
}

.section-title p {
  color: #64748b;
  max-width: 700px;
  margin: auto;
}

.premium-faq {
  max-width: 1000px;
  margin: auto;
}

.premium-faq .accordion-item {
  border: none;
  overflow: hidden;
  border-radius: 24px !important;
  margin-bottom: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.premium-faq .accordion-button {
  padding: 28px 30px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: none !important;
}

.premium-faq .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #2f6ea5, #8bc34a);
  color: #fff;
}

.premium-faq .accordion-button:focus {
  box-shadow: none;
}

.premium-faq .accordion-body {
  padding: 30px;
  line-height: 1.9;
  color: #475569;
  font-size: 16px;
}

/* ==========================================
NO RESULT
========================================== */

.no-faq-result {
  display: none;
  text-align: center;
  margin-top: 50px;
}

.no-faq-result i {
  font-size: 60px;
  color: #2f6ea5;
}

.no-faq-result h4 {
  margin-top: 15px;
  font-weight: 700;
}

/* ==========================================
SEO CONTENT
========================================== */

.faq-seo-content {
  background: #f8fafc;
  padding: 100px 0;
}

.seo-content-card {
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.seo-content-card h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

.seo-content-card p {
  color: #475569;
  line-height: 1.9;
  margin-bottom: 15px;
}

/* ==========================================
SUPPORT CTA
========================================== */

.faq-support-cta {
  padding: 100px 0;
  background: #0f172a;
}

.support-glass-card {
  padding: 60px;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(47, 110, 165, 0.95),
    rgba(139, 195, 74, 0.95)
  );
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.support-glass-card h2 {
  font-size: 42px;
  font-weight: 800;
}

.support-glass-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.faq-contact-btn {
  background: #fff;
  color: #2f6ea5;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s;
}

.faq-contact-btn:hover {
  background: #f5a623;
  color: #fff;
}

/* ==========================================
RESPONSIVE
========================================== */

@media (max-width: 991px) {
  .faq-hero {
    padding: 150px 0 120px;
  }

  .faq-hero h1 {
    font-size: 50px;
  }

  .faq-stats {
    margin-top: 0;
    padding-top: 70px;
  }

  .support-glass-card {
    text-align: center;
  }

  .faq-contact-btn {
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  .faq-hero {
    padding: 130px 0 100px;
  }

  .faq-hero h1 {
    font-size: 34px;
  }

  .faq-hero p {
    font-size: 15px;
  }

  .faq-stat-card {
    padding: 25px;
  }

  .faq-stat-card h3 {
    font-size: 30px;
  }

  .faq-filter {
    width: 100%;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .premium-faq .accordion-button {
    font-size: 16px;
    padding: 20px;
  }

  .premium-faq .accordion-body {
    padding: 20px;
  }

  .seo-content-card {
    padding: 25px;
  }

  .seo-content-card h2 {
    font-size: 26px;
  }

  .support-glass-card {
    padding: 30px;
  }

  .support-glass-card h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .faq-hero h1 {
    font-size: 28px;
  }

  .faq-badge {
    font-size: 13px;
  }

  .faq-filter {
    font-size: 14px;
    padding: 12px 20px;
  }
}
/* ====================================
   UPSIA GALLERY SECTION
==================================== */

.photo-gallery-section {
  padding: 100px 0;
  background: #ffffff;
}

.section-title {
  margin-bottom: 60px;
}

.section-title .sub-title {
  display: inline-block;
  color: #8bc34a;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 500;
  color: #2f6ea5;
  margin-bottom: 16px;
}

.section-title p {
  max-width: 700px;
  margin: auto;
  color: #64748b;
  line-height: 1.8;
}

/* ====================================
   GALLERY GRID
==================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #f8fafc;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  aspect-ratio: 16/10;
  display: block;
  transition: 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Overlay */

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
  opacity: 0;
  transition: 0.35s;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

/* Zoom Icon */

.gallery-item::after {
  content: "\F52A";
  font-family: bootstrap-icons;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  background: #ffffff;
  border-radius: 50%;
  color: #2f6ea5;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 2;
  transition: 0.35s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ====================================
   RESPONSIVE
==================================== */

@media (max-width: 1199px) {
  .gallery-grid {
    gap: 20px;
  }

  .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .photo-gallery-section {
    padding: 70px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-item {
    border-radius: 18px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .section-title p {
    font-size: 15px;
  }
}

img {
  max-width: 100%;
}
.members-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title span {
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark);
  margin-top: 10px;
}

.section-title p {
  color: #666;
  max-width: 700px;
  margin: auto;
}

.search-box {
  position: relative;
  margin-bottom: 25px;
}

.search-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}

.search-box input {
  height: 58px;
  border: none;
  border-radius: 14px;
  padding-left: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.table-wrapper {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.custom-table {
  min-width: 1200px;
  margin: 0;
}

.custom-table thead {
  background: var(--primary);
}

.custom-table thead th {
  background-color: #000;
  color: #fff;
  padding: 18px;
  border: none;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.custom-table tbody td {
  padding: 15px;
  vertical-align: middle;
}

.custom-table tbody tr {
  transition: 0.3s;
}

.custom-table tbody tr:hover {
  background: #f8fbff;
}

.serial-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.vendor-name {
  font-weight: 700;
  color: var(--dark);
}

.email-link {
  color: var(--primary);
  text-decoration: none;
}

.email-link:hover {
  color: var(--secondary);
}

.status-paid {
  background: #e8f8e0;
  color: #2e7d32;
  padding: 7px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .members-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }
}

.vendor-card {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  border: 1px solid #eef2f7;
}

.vendor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card-header-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.serial-no {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #8bc34a;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-badge {
  background: #dff0d8;
  color: #3c763d;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.vendor-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.vendor-info p {
  margin-bottom: 10px;
  color: #555;
  font-size: 14px;
}

.vendor-info strong {
  color: #222;
}

.vendor-info a {
  color: #0d6efd;
  text-decoration: none;
  word-break: break-word;
}

.vendor-info a:hover {
  text-decoration: underline;
}

/* ==========================
   FLOATING WHATSAPP BUTTON
========================== */

.floating-whatsapp {
  position: fixed;
  left: 20px;
  bottom: 85px;
  width: 65px;
  height: 65px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 32px;
  z-index: 9999;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2s infinite;
  transition: 0.3s;
}

.floating-whatsapp:hover {
  color: #fff;
  transform: scale(1.1);
}

/* ==========================
   FLOATING CALL BUTTON
========================== */

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 85px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 28px;
  z-index: 9999;
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
  animation: callPulse 2s infinite;
  transition: 0.3s;
}

.floating-call:hover {
  color: #fff;
  transform: scale(1.1);
}

/* ==========================
   ANIMATIONS
========================== */

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes callPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(13, 110, 253, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}

/* ==========================
   MOBILE RESPONSIVE
========================== */

@media (max-width: 768px) {
  .floating-whatsapp,
  .floating-call {
    width: 58px;
    height: 58px;
  }

  .floating-whatsapp {
    left: 15px;
    bottom: 90px;
  }

  .floating-call {
    right: 15px;
    bottom: 90px;
  }

  .floating-whatsapp i {
    font-size: 28px;
  }

  .floating-call i {
    font-size: 24px;
  }
}
.members-section {
  background: #f8fafc;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #003366;
}

.section-title p {
  color: #666;
}

.vendor-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
}

.vendor-card:hover {
  transform: translateY(-8px);
}

.vendor-image {
  height: 360px;
  margin-bottom: 15px;
}

.vendor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body-custom {
  padding: 0 20px 20px;
}

.card-body-custom h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
  min-height: 55px;
}

.card-body-custom ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.card-body-custom ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  word-break: break-word;
}

.card-body-custom ul li i {
  color: #f4b400;
  min-width: 20px;
}

.card-body-custom a {
  color: #0d6efd;
  text-decoration: none;
}

.card-body-custom a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .section-title h2 {
    font-size: 32px;
  }

  .vendor-image {
    height: 310px;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 28px;
  }

  .vendor-image {
    height: 400px;
  }

  .card-body-custom h4 {
    font-size: 18px;
  }

  .card-body-custom ul li {
    font-size: 14px;
  }
}
.member-id {
  display: inline-block;
  background: #003366;
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 15px;
}

.association-banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: rgba(0, 0, 0, 0.02);
}

.content-area {
  padding-left: 70px;
  position: relative;
  z-index: 2;
}

.welcome-text {
  font-size: 25px;
  color: #000;
  display: block;
}

.content-area h1 {
  font-size: 45px;
  font-weight: 800;
  color: #8bc34a;
  line-height: 1;
  margin-bottom: 20px;
}

.title-line {
  width: 330px;
  height: 3px;
  background: #8bc34a;
  margin-bottom: 35px;
  position: relative;
}

.title-line::after {
  content: "";
  position: absolute;
  right: -10px;
  top: -5px;
  width: 12px;
  height: 12px;
  background: #8bc34a;
  border-radius: 50%;
}

.content-area p {
  font-size: 16px;
  max-width: 750px;
  color: #454545;
  margin-bottom: 60px;
  line-height: 1.8;
}

/* Features */

.features {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-box {
  text-align: center;
  max-width: 180px;
}

.icon-circle {
  width: 55px;
  height: 55px;
  background: #8bc34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 20px;
}

.icon-circle i {
  font-size: 25px;
  color: #fff;
}

.feature-box h5 {
  font-size: 18px;
  font-weight: 700;
  color: #8bc34a;
  margin-bottom: 5px;
}

.feature-box span {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  display: block;
}

.divider {
  width: 1px;
  height: 140px;
  background: #d9d9d9;
}

/* Right Side */

.image-area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Premium Curved Shape */

.image-slider {
  width: 100%;
  max-width: 700px;
  height: 520px;
  overflow: hidden;
  border-radius: 100px 0 100px 0;
  border: 10px solid #8bc34a;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.image-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* Carousel Buttons */

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: #8bc34a;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: -25px;
}

.carousel-control-next {
  right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

/* Tablet */

@media (max-width: 1200px) {
  .content-area {
    padding-left: 20px;
  }

  .content-area h1 {
    font-size: 55px;
  }

  .image-slider {
    max-width: 600px;
    height: 450px;
  }
}

/* Mobile */

@media (max-width: 991px) {
  .association-banner {
    padding: 60px 20px;
  }

  .content-area {
    padding-left: 0;
    text-align: center;
    order: 2;
  }

  .image-area {
    order: 1;
    margin-bottom: 40px;
  }

  .title-line {
    margin: auto auto 30px;
  }

  .features {
    justify-content: center;
    gap: 20px;
  }

  .divider {
    display: none;
  }

  .image-slider {
    max-width: 450px;
    height: 340px;
    border-radius: 60px 0 60px 0;
  }

  .carousel-control-prev {
    left: -10px;
  }

  .carousel-control-next {
    right: -10px;
  }
}

/* Small Mobile */

@media (max-width: 576px) {
  .welcome-text {
    font-size: 28px;
  }

  .content-area h1 {
    font-size: 38px;
  }

  .content-area p {
    font-size: 15px;
  }

  .image-slider {
    max-width: 100%;
    height: 260px;
    border-radius: 40px 0 40px 0;
    border-width: 6px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .icon-circle i {
    font-size: 24px;
  }

  .feature-box h5 {
    font-size: 16px;
  }

  .feature-box span {
    font-size: 13px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}
