* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: linear-gradient(135deg, #1e70e4 0%, #00b489 100%);
}

/* ── BASE ── */
html {
  font-size: 15px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Sora", sans-serif;
  -webkit-font-smoothing: antialiased;
 
}

.font-14 {
  font-size: 14px;
}
.font-12 {
  font-size: 12px;
}

/* ==========================================
   header
============================================= */

/* Header Background Color */
.top-header {
  background-color: #0b1c3e; /* Dark navy color matched to image */
}

/* Tagline Styling */
.header-tagline {
  color: #a3b8cc; /* Light grayish-blue tint */
}

/* Navigation Links */
.header-link {
  color: #a3b8cc;
  transition: color 0.2s ease-in-out;
}

.header-link:hover {
  color: #ffffff;
}

/* Vertical Separator Divider */
.vr-divider {
  width: 1 text;
  height: 14px;
  border-left: 1px solid #2f456b;
  margin: 0 4px;
}

/* CTA Button */
.btn-member {
  background-color: #d82335; /* Red color matched to image */
  color: #ffffff;
  border-radius: 2px;
  padding: 5px 14px;
  transition: background-color 0.2s ease-in-out;
}

.btn-member:hover {
  background-color: #b51a2a;
  color: #ffffff;
}
/* Search Bar Styling */
.header-search-form {
  position: relative;
  max-width: 180px;
}

.search-input {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 12px;
  border-radius: 20px;
  padding-left: 12px;
  padding-right: 30px;
  height: 28px;
  transition: all 0.2s ease-in-out;
}

.search-input::placeholder {
  color: #a3b8cc;
  font-size: 11px;
}

.search-input:focus {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: none;
}

.btn-search {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #a3b8cc;
  padding: 2px 8px;
}

.btn-search:hover {
  color: #ffffff;
}
/*=========================
nabbar
===========================*/
/* Brand Logo Styling */
.logo-box {
  background-color: #0b1c3e;
  width: 45px;
  height: 45px;
  font-size: 16px;
  letter-spacing: 1px;
}

.brand-title {
  color: #0b1c3e;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.brand-subtitle {
  color: #d82335;
  font-size: 11px;
  letter-spacing: 0.5px;
}

/* Nav Link Styling */
.navbar-nav .nav-link {
  color: #0b1c3e;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: color 0.2s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: #d82335;
}

/* Hover Dropdown Effect (Desktop Only) */
@media (min-width: 1200px) {
  .hover-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hover-dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease-in-out;
    margin-top: 0;
  }
}

/* Dropdown Menu Item Styling */
.dropdown-menu {
  min-width: 220px;
  padding: 0;
  background-color: #ffffff;
  z-index: 999;
}

.dropdown-item {
  color: #222222;
  font-size: 13px;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #d82335;
}

/*======================
Slider
========================*/
/* Hero Wrapper */
.tf-hero-section {
  position: relative;
  overflow: hidden;
}

.carousel-items {
  height: 600px;
  position: relative;
}

/* Image Tag Styling (Full Cover) */
.tf-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Overlay Styling */
.tf-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(11, 28, 62, 0.92) 0%, rgba(11, 28, 62, 0.6) 60%, rgba(11, 28, 62, 0.2) 100%);
  z-index: 2;
}

/* Content Area Positioning */
.tf-content-container {
  position: relative;
  z-index: 3;
}

/* Typography & Utility */
.tracking-wider {
  letter-spacing: 1px;
}

.text-sm {
  font-size: 13px;
}

.btn-danger {
  background-color: #d82335;
  border-color: #d82335;
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background-color: #b51a2a;
  border-color: #b51a2a;
  transform: translateY(-2px);
}

.btn-outline-light:hover {
  transform: translateY(-2px);
}

/* Text Entrance Animation */
.carousel-item.active .tf-content {
  animation: tfFadeUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes tfFadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation Controls */
.tf-control {
  width: 5%;
  z-index: 4;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.tf-control:hover {
  opacity: 1;
}

.tf-control-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.tf-control:hover .tf-control-icon {
  background: #d82335;
  border-color: #d82335;
  color: #ffffff;
}

/* Indicators */
.carousel-indicators {
  z-index: 4;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 6px;
  border-radius: 4px;
  border: none;
  background-color: #ffffff;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  width: 32px;
  background-color: #d82335;
  opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .carousel-item {
    height: 500px;
  }
  .display-4 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 420px;
  }
  .display-4 {
    font-size: 1.75rem;
  }
  .tf-control {
    display: none;
  }
}

/*=============================
About js
================================*/
/* Color Helpers */
.text-navy {
  color: #0b1c3e;
}

.bg-navy {
  background-color: #0b1c3e;
}

/* Section Background */
.about-section {
  background-color: #f8fafc;
  overflow: hidden;
}

/* Sub-title Line Effect */
.sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background-color: #d82335;
}

/* Feature Check Icon */
.check-icon {
  width: 24px;
  height: 24px;
  font-size: 12px;
  font-weight: bold;
}

/* Button Styling */
.btn-danger {
  background-color: #d82335;
  border-color: #d82335;
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background-color: #b51a2a;
  border-color: #b51a2a;
  transform: translateY(-2px);
}

/* Image Wrapper & ThemeForest Offset Frame */
.about-img-wrapper {
  position: relative;
}

.about-img-bg {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80%;
  height: 80%;
  background-color: #d82335;
  border-radius: 12px;
  opacity: 0.1;
  z-index: 1;
}

.about-img-wrapper img {
  border: 1px solid #e2e8f0;
  min-height: 400px;
}

/* Floating Badge Styling */
.experience-badge {
  bottom: -20px;
  left: 0;
  border: 2px solid #ffffff;
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .about-img-wrapper {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .experience-badge {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 15px;
  }
}

/*==========================
8th
===========================*/
/* Color Palette & Helpers */
.text-navy {
  color: #0b1c3e;
}

.tracking-wider {
  letter-spacing: 1px;
}

.fs-7 {
  font-size: 12px;
}

.tiny {
  font-size: 11px;
}

/* Section Background Gradient */
.tf-event-section {
  background: linear-gradient(135deg, #0b1c3e 0%, #162a56 100%);
  position: relative;
}

/* Title Badge */
.tf-title-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 13px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #d82335;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(216, 35, 53, 0.7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(216, 35, 53, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(216, 35, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(216, 35, 53, 0);
  }
}

/* Image Container & Fit */
.tf-event-img {
  height: 420px;
  object-fit: cover;
}

/* Custom Navigation Arrow Buttons */
.tf-carousel-btn {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: 15px;
}

.carousel-control-next {
  right: 15px;
}

.tf-btn-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  color: #0b1c3e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.tf-carousel-btn:hover .tf-btn-icon {
  background: #d82335;
  color: #ffffff;
}

/* Glassmorphism Floating Tag */
.tf-floating-tag {
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 5;
}

.tag-icon {
  width: 36px;
  height: 36px;
}

/* Interactive Checklist Hover Effect */
.tf-check-item {
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.tf-check-item:hover {
  background-color: #f8fafc;
  transform: translateX(5px);
}

.check-box {
  width: 22px;
  height: 22px;
  font-size: 11px;
  font-weight: bold;
  flex-shrink: 0;
}

/* Premium Gradient Button */
.tf-btn-gradient {
  background: linear-gradient(135deg, #d82335 0%, #a81222 100%);
  border: none;
  letter-spacing: 0.5px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.tf-btn-gradient:hover {
  background: linear-gradient(135deg, #a81222 0%, #800a16 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(216, 35, 53, 0.3) !important;
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .tf-event-img {
    height: 300px;
  }
}

/*==============================
Gest
===============================*/
/* Global Styles */
    .text-navy { color: #0b1c3e; }
    .bg-navy { background-color: #0b1c3e; }
    .tracking-wider { letter-spacing: 1px; }

    .tf-people-section {
      background-color: #f8fafc;
    }

    /* Filter Tabs Styling */
    .tf-filter-tabs .nav-link {
      color: #0b1c3e;
      background-color: #ffffff;
      border: 1px solid #e2e8f0;
      font-size: 13px;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    }

    .tf-filter-tabs .nav-link:hover {
      background-color: #d82335;
      color: #ffffff;
      border-color: #d82335;
    }

    .tf-filter-tabs .nav-link.active {
      background-color: #d82335;
      color: #ffffff;
      border-color: #d82335;
      box-shadow: 0 4px 12px rgba(216, 35, 53, 0.25);
    }

    /* Card Styling */
    .tf-person-card {
      transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
      width: 100%;
    }

    .tf-person-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(11, 28, 62, 0.1) !important;
    }

    .person-img-box img {
      height: 320px;
      transition: transform 0.5s ease;
    }

    .tf-person-card:hover .person-img-box img {
      transform: scale(1.04);
    }

    /* Badge Style inside Image */
    .person-badge {
      position: absolute;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      padding: 6px 14px;
      font-size: 11px;
      font-weight: 700;
      border-radius: 20px;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
      white-space: nowrap;
    }

    /* Swiper Base Fixes */
    .swiper-slide {
      height: auto;
      display: flex;
    }

    /* Custom Navigation Arrow Buttons */
    .swiper-button-next,
    .swiper-button-prev {
      width: 44px !important;
      height: 44px !important;
      background-color: #ffffff !important;
      border: 1px solid #e2e8f0 !important;
      color: #0b1c3e !important;
      border-radius: 50% !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
      transition: all 0.3s ease !important;
      top: 50% !important;
      transform: translateY(-50%) !important;
      z-index: 10 !important;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
      content: '' !important;
    }

    .swiper-button-prev::before {
      content: '‹';
      font-size: 26px;
      font-weight: bold;
      line-height: 1;
    }

    .swiper-button-next::before {
      content: '›';
      font-size: 26px;
      font-weight: bold;
      line-height: 1;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      background-color: #d82335 !important;
      border-color: #d82335 !important;
      color: #ffffff !important;
    }

    .swiper-button-prev {
      left: -20px !important;
    }

    .swiper-button-next {
      right: -20px !important;
    }

    @media (max-width: 768px) {
      .person-img-box img {
        height: 280px;
      }
      .swiper-button-prev { left: 2px !important; }
      .swiper-button-next { right: 2px !important; }
    }



/*=========================
Membership
==========================*/
/* Section & General Styling */
    .tf-benefits-accent-section {
      background-color: #f8fafc;
    }

    .text-red { color: #c02128; }
    .text-navy { color: #0b1c3e; }

    /* Modern Card with Bottom Accent Line */
    .accent-card {
      background: #ffffff;
      padding: 28px 24px;
      border-radius: 12px;
      border: 1px solid #edf2f7;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      align-items: center;
      gap: 20px;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    /* Animated Accent Line at Bottom */
    .accent-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0%;
      height: 4px;
      background: linear-gradient(90deg, #c02128 0%, #0b1c3e 100%);
      transition: width 0.4s ease;
    }

    .accent-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 25px -5px rgba(11, 28, 62, 0.08), 0 10px 10px -5px rgba(11, 28, 62, 0.03);
      border-color: #e2e8f0;
    }

    .accent-card:hover::after {
      width: 100%;
    }

    /* Icon Box Layout */
    .accent-icon-box {
      width: 58px;
      height: 58px;
      background-color: #fef2f2;
      color: #c02128;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      flex-shrink: 0;
      transition: all 0.35s ease;
    }

    .accent-card:hover .accent-icon-box {
      background-color: #0b1c3e;
      color: #ffffff;
      transform: scale(1.05);
    }

    /* Benefit Title */
    .benefit-title {
      color: #0b1c3e;
      font-weight: 700;
      font-size: 16.5px;
      margin: 0;
      transition: color 0.3s ease;
    }

    .accent-card:hover .benefit-title {
      color: #c02128;
    }

    /* Solid CTA Button */
    .btn-accent-membership {
      background-color: #c02128;
      color: #ffffff;
      padding: 14px 38px;
      font-weight: 700;
      letter-spacing: 0.5px;
      border-radius: 8px;
      border: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(192, 33, 40, 0.25);
    }

    .btn-accent-membership:hover {
      background-color: #0b1c3e;
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(11, 28, 62, 0.25);
    }

    @media (max-width: 576px) {
      .accent-card {
        padding: 20px 16px;
      }
      .accent-icon-box {
        width: 48px;
        height: 48px;
        font-size: 22px;
      }
    }

/*=========================
Event
===========================*/
/* Global Styles */
    .tf-events-section {
      background-color: #ffffff;
    }

    .text-red { color: #c02128; }
    .text-navy { color: #0b1c3e; }

    /* Event Card Styling */
    .tf-event-card {
      background: #ffffff;
      border-radius: 16px;
      border: 1px solid #e2e8f0;
      overflow: hidden;
      transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .tf-event-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 30px rgba(11, 28, 62, 0.08);
      border-color: rgba(192, 33, 40, 0.2);
    }

    .event-img-wrapper {
      position: relative;
      overflow: hidden;
    }

    .event-img-wrapper img {
      height: 220px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .tf-event-card:hover .event-img-wrapper img {
      transform: scale(1.05);
    }

    /* Event Badge */
    .event-type-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background-color: #c02128;
      color: #ffffff;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 20px;
      letter-spacing: 0.5px;
    }

    /* Date Box inside Card */
    .event-date-box {
      background-color: #f8fafc;
      border-top: 1px solid #f1f5f9;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .date-number {
      font-size: 22px;
      font-weight: 800;
      color: #c02128;
      line-height: 1;
    }

    .date-month-day {
      font-size: 12px;
      color: #64748b;
      font-weight: 600;
      text-transform: uppercase;
    }

    /* Event Title */
    .event-title {
      font-size: 16px;
      font-weight: 700;
      color: #0b1c3e;
      margin-bottom: 8px;
    }

    /* CTA Button */
    .btn-event-all {
      background-color: #c02128;
      color: #ffffff;
      padding: 12px 32px;
      font-weight: 700;
      border-radius: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(192, 33, 40, 0.2);
    }

    .btn-event-all:hover {
      background-color: #0b1c3e;
      color: #ffffff;
      transform: translateY(-2px);
    }


/*=============================
Blog section
==============================*/
/* Global Styling */
    .tf-blog-section {
      background-color: #f8fafc;
    }

    .text-red { color: #c02128; }
    .text-navy { color: #0b1c3e; }

    /* Blog Card Design */
    .tf-blog-card {
      background: #ffffff;
      border-radius: 16px;
      border: 1px solid #e2e8f0;
      overflow: hidden;
      transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .tf-blog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 30px rgba(11, 28, 62, 0.08);
      border-color: rgba(192, 33, 40, 0.2);
    }

    .blog-img-box {
      position: relative;
      overflow: hidden;
    }

    .blog-img-box img {
      height: 230px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .tf-blog-card:hover .blog-img-box img {
      transform: scale(1.06);
    }

    /* Category Badge */
    .blog-category-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background-color: #c02128;
      color: #ffffff;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 20px;
      letter-spacing: 0.5px;
    }

    /* Meta Info (Date & Author) */
    .blog-meta {
      font-size: 13px;
      color: #64748b;
      font-weight: 500;
      display: flex;
      gap: 16px;
      margin-bottom: 12px;
    }

    .blog-meta i {
      color: #c02128;
    }

    /* Title & Description */
    .blog-title {
      font-size: 18px;
      font-weight: 700;
      color: #0b1c3e;
      line-height: 1.4;
      margin-bottom: 10px;
      transition: color 0.3s ease;
    }

    .tf-blog-card:hover .blog-title {
      color: #c02128;
    }

    .blog-excerpt {
      color: #64748b;
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 18px;
    }

    /* Read More Link */
    .btn-read-more {
      color: #c02128;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all 0.3s ease;
    }

    .btn-read-more i {
      transition: transform 0.3s ease;
    }

    .btn-read-more:hover {
      color: #0b1c3e;
    }

    .btn-read-more:hover i {
      transform: translateX(4px);
    }

    /* Section CTA Button */
    .btn-blog-all {
      background-color: #c02128;
      color: #ffffff;
      padding: 12px 32px;
      font-weight: 700;
      border-radius: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(192, 33, 40, 0.2);
    }

    .btn-blog-all:hover {
      background-color: #0b1c3e;
      color: #ffffff;
      transform: translateY(-2px);
    }

/*======================
Gallery
==========================*/
/* Section & Color Styling */
    .tf-gallery-section {
      background-color: #ffffff;
    }

    .text-red { color: #c02128; }
    .text-navy { color: #0b1c3e; }

    /* Filter Tabs Styling */
    .tf-gallery-tabs .nav-link {
      color: #0b1c3e;
      background-color: #f8fafc;
      border: 1px solid #e2e8f0;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 8px 24px;
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .tf-gallery-tabs .nav-link:hover {
      background-color: #c02128;
      color: #ffffff;
      border-color: #c02128;
    }

    .tf-gallery-tabs .nav-link.active {
      background-color: #c02128;
      color: #ffffff;
      border-color: #c02128;
      box-shadow: 0 4px 12px rgba(192, 33, 40, 0.25);
    }

    /* Gallery Card & Image Box */
    

    .tf-gallery-card:hover .gallery-title,
    .tf-gallery-card:hover .gallery-tag {
      transform: translateY(0);
    }

    /* Filter Animation */
    .gallery-item {
      transition: all 0.4s ease;
    }

    .gallery-item.hide {
      display: none;
    }
/*==========================
our patner
==============================*/
/* Section Styling */
    .tf-clean-partners {
      background-color: #f8fafc;
    }

    .text-red { color: #c02128; }
    .text-navy { color: #0b1c3e; }

    /* Card Box with Border Right & Bottom only */
    .partner-clean-card {
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 15px;
      border-top: 1px solid #e2e8f0;
      border-right: 1px solid #e2e8f0;
      border-bottom: 1px solid #e2e8f0;
      transition: background-color 0.3s ease;
    }

    .partner-clean-card:hover {
      background-color: #f8fafc;
    }

    /* Desktop View Grid Rules (6 Items per Row) */
    @media (min-width: 992px) {
      /* Remove Right Border from 6th Column Item */
      .partner-col:nth-child(6n) .partner-clean-card {
        border-right: none;
      }
      /* Remove Bottom Border from Last Row Items (7 to 12) */
      .partner-col:nth-child(n+7) .partner-clean-card {
        border-bottom: none;
      }
    }

    /* Mobile View Grid Rules (2 Items per Row) */
    @media (max-width: 767.98px) {
      .partner-col:nth-child(2n) .partner-clean-card {
        border-right: none;
      }
      .partner-col:nth-child(n+11) .partner-clean-card {
        border-bottom: none;
      }
    }

    /* Logo Styling */
    .partner-clean-card img {
      max-height: 80px;
      max-width: 100%;
      
      opacity: 0.65;
      transition: all 0.3s ease;
    }

    .partner-clean-card:hover img {
      filter: grayscale(100%);
      opacity: 1;
      transform: scale(1.05);
    }

/*==========================
footer
===========================*/

.mib-footer-section {
      background-color: #ffffff;
      color: #475569;
      font-size: 14px;
      border-top: 1px solid #e2e8f0;
    }

    .text-navy { color: #0b1c3e; }
    .text-red { color: #c02128; }

    /* Social Icon Circles */
    .mib-social-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background-color: #f1f5f9;
      color: #0b1c3e;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 1px solid #e2e8f0;
    }

    .mib-social-btn:hover {
      background-color: #c02128;
      color: #ffffff;
      border-color: #c02128;
      transform: translateY(-3px);
    }

    .contact-info-list {
      line-height: 1.8;
    }

    .contact-info-list a {
      color: #475569;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-info-list a:hover {
      color: #c02128;
    }

    /* Quick Links with Dividers */
    .footer-nav-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px 18px;
      padding: 0;
      list-style: none;
    }

    .footer-nav-links a {
      color: #0b1c3e;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-nav-links a:hover {
      color: #c02128;
    }

    .footer-nav-links li:not(:last-child)::after {
      content: '|';
      margin-left: 18px;
      color: #cbd5e1;
      font-weight: 300;
    }

    /* Bank Details Card Box */
    .bank-info-box {
      background: #f8fafc;
      border: 1px dashed #cbd5e1;
      border-radius: 12px;
      padding: 14px 20px;
      max-width: 820px;
      margin: 0 auto;
    }

    /* Equal Width App & QR Alignment (180px Fixed) */
    .app-download-card {
      background: linear-gradient(135deg, #0b1c3e 0%, #172a4d 100%);
      border-radius: 12px;
      padding: 12px;
      color: #ffffff;
      text-align: center;
      width: 170px;
      box-shadow: 0 4px 12px rgba(11, 28, 62, 0.15);
    }

    .btn-google-play {
      background-color: #ffffff;
      color: #0b1c3e;
      border-radius: 8px;
      padding: 6px 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
      width: 100%;
    }

    .btn-google-play:hover {
      background-color: #f8fafc;
      color: #c02128;
    }

    .qr-code-box {
      width: 180px;
    }

    .qr-box-wrapper {
      background: #ffffff;
      padding: 8px;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
      display: inline-block;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .qr-box-wrapper img {
      width: 90px;
      height: 90px;
      display: block;
      margin: 0 auto;
    }

    /* Bottom Dark Bar */
    .footer-bottom-bar {
      background-color: #0b1c3e;
      color: #94a3b8;
      padding: 16px 0;
      font-size: 13px;
    }

    .footer-bottom-bar a {
      color: #ffffff;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-bottom-bar a:hover {
      color: #fca5a5;
    }





/*==========================
Scroll To Top Button Wrapper
===========================*/

  .tf-scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: #0b1c3e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(11, 28, 62, 0.25);
  }

  /* Show State */
  .tf-scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  /* Hover State & Animation */
  .tf-scroll-top-btn:hover {
    background-color: #c02128;
    color: #ffffff;
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 30px rgba(192, 33, 40, 0.4);
  }

  .tf-scroll-top-btn i {
    transition: transform 0.3s ease;
  }

  .tf-scroll-top-btn:hover i {
    transform: translateY(-3px);
  }

  /* Circular Scroll Progress Ring */
  .scroll-progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .scroll-progress-ring svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
  }

  .progress-circle {
    stroke: #c02128;
    stroke-dasharray: 126; /* 2 * PI * 20 */
    stroke-dashoffset: 126;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s ease, stroke 0.3s ease;
  }

  .tf-scroll-top-btn:hover .progress-circle {
    stroke: #ffffff;
  }

/*===========================
About page
============================*/
.text-navy { color: #0b1c3e !important; }
    .text-red { color: #c02128 !important; }

    /* Page Header Accent */
    .tf-header-subtitle {
      color: #c02128;
      font-weight: 700;
      letter-spacing: 1.5px;
      font-size: 13px;
      text-transform: uppercase;
    }

    /* Left Sidebar Cards & Navigation */
    .tf-sidebar-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 12px;
      box-shadow: 0 4px 15px rgba(11, 28, 62, 0.03);
    }

    .tf-sidebar-nav .nav-link {
      color: #0b1c3e;
      font-weight: 600;
      font-size: 14px;
      padding: 12px 16px;
      border: 1px solid transparent;
      border-radius: 8px;
      text-align: left;
      background: transparent;
      transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 6px;
    }

    .tf-sidebar-nav .nav-link:hover {
      color: #c02128;
      background-color: #f8fafc;
      transform: translateX(4px);
    }

    .tf-sidebar-nav .nav-link.active {
      color: #ffffff !important;
      background-color: #0b1c3e !important;
      border-color: #0b1c3e !important;
      box-shadow: 0 4px 12px rgba(11, 28, 62, 0.2);
    }

    .tf-sidebar-nav .nav-link i {
      font-size: 12px;
      opacity: 0.7;
    }

    /* Right Main Content Card */
    .tf-content-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 10px 30px rgba(11, 28, 62, 0.04);
      position: relative;
      overflow: hidden;
    }

    .tf-section-title {
      color: #0b1c3e;
      font-weight: 700;
      font-size: 22px;
      position: relative;
      padding-bottom: 12px;
      margin-bottom: 28px;
    }

    .tf-section-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 45px;
      height: 3px;
      background-color: #c02128;
      border-radius: 2px;
    }

    .about-text-column p {
      font-size: 14px;
      line-height: 1.8;
      color: #475569;
      text-align: justify;
      margin-bottom: 20px;
    }

    /* Globe Decorative Image in Background */
    .tf-globe-bg {
      position: absolute;
      bottom: -30px;
      right: -20px;
      width: 260px;
      opacity: 0.08;
      pointer-events: none;
      z-index: 0;
    }
  .vision-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 24px;
      margin-bottom: 24px;
      box-shadow: 0 4px 12px rgba(11, 28, 62, 0.03);
      transition: all 0.3s ease;
    }

    .vision-card:hover {
      box-shadow: 0 6px 18px rgba(11, 28, 62, 0.06);
      border-color: #cbd5e1;
    }

    .vision-subtitle {
      color: #0b1c3e;
      font-weight: 700;
      font-size: 20px;
      margin-bottom: 12px;
      position: relative;
      display: inline-block;
    }

    .custom-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }

    .custom-list li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 12px;
      font-size: 14.5px;
      line-height: 1.7;
      color: #475569;
    }

    .custom-list li:last-child {
      margin-bottom: 0;
    }

    .custom-list li::before {
      content: "\F26B"; /* Bootstrap Icon Check/Bullet */
      font-family: "bootstrap-icons";
      position: absolute;
      left: 0;
      top: 0;
      color: #c02128;
      font-weight: bold;
      font-size: 16px;
    }

    .preamble-box {
      background: #f8fafc;
      border-left: 4px solid #c02128;
      border-radius: 4px 12px 12px 4px;
      padding: 20px 24px;
      margin-bottom: 24px;
    }

    .preamble-box p {
      color: #334155;
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 0;
    }

    .values-title {
      color: #0b1c3e;
      font-weight: 700;
    }

.fade:not(.show) {
    display: none;
}

/* Header Banner Container */
    .speech-header-banner {
      background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 30px 40px;
      position: relative;
      overflow: hidden;
      margin-bottom: 35px;
    }

    /* Avatar Styling with Red Ring */
    .president-avatar-wrap {
      position: relative;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      padding: 5px;
      background: #ffffff;
      border: 3px solid #c02128;
      box-shadow: 0 8px 20px rgba(192, 33, 40, 0.15);
      margin: 0 auto;
    }

    .president-avatar-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }

    .speech-banner-title {
      color: #0b1c3e;
      font-weight: 800;
      font-size: 32px;
      letter-spacing: 1px;
    }

    .speech-banner-title span {
      color: #c02128;
    }

    /* Decorative Shapes in Banner */
    .banner-shape-dots {
      position: absolute;
      top: 15px;
      left: 20px;
      width: 50px;
      opacity: 0.15;
    }

    .banner-shape-arc {
      position: absolute;
      right: -20px;
      bottom: -40px;
      width: 150px;
      height: 150px;
      border: 20px solid #f59e0b;
      border-radius: 50%;
      opacity: 0.25;
      pointer-events: none;
    }

    /* Content Styling */
    .speech-text-body p {
      color: #475569;
      font-size: 15px;
      line-height: 1.85;
      text-align: justify;
      margin-bottom: 20px;
    }

    .president-signature-block {
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid #f1f5f9;
    }

    .president-name {
      color: #0b1c3e;
      font-weight: 700;
      font-size: 17px;
      margin-bottom: 4px;
    }

    .president-designation {
      color: #c02128;
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 2px;
    }

    .president-org {
      color: #64748b;
      font-size: 13.5px;
      font-weight: 500;
    }

/*========================
Member list
============================*/
/* Search Bar Styling */
 
    .btn-mib-red {
      background-color: #c02128;
      color: #ffffff;
      font-weight: 600;
      border: none;
      padding: 8px 24px;
      transition: all 0.3s ease;
    }
    .btn-mib-red:hover {
      background-color: #a01a20;
      color: #ffffff;
    }

    /* Top Filter Bar Panel */
  /* Top Filter Bar Panel */
.filter-panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(11, 28, 62, 0.03);
}

.filter-subtitle {
  color: #d97706;
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 8px;
}

/* Membership Type Filter Button Styling */
.btn-filter-type {
  background-color: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.btn-filter-type:hover {
  background-color: #e2e8f0;
  color: #0f172a;
}

/* Active State for Clicked Button */
.btn-filter-type.active {
  background-color: #0f172a; /* অথবা আপনার থিমের প্রাইমারি কালার */
  color: #ffffff;
  border-color: #0f172a;
}

/* Red Filter Action Button */
.btn-mib-red {
  background-color: #c02128;
  color: #ffffff;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 8px;
  border: none;
  transition: background 0.2s ease;
}

.btn-mib-red:hover {
  background-color: #9f1a20;
  color: #ffffff;
}

    /* Member table  Design */
.member-table-wrapper {
  background: #f8fafc;
  padding: 15px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.member-table {
  background-color: #ffffff;
  border-collapse: separate;
  border-spacing: 0 10px;
  min-width: 900px;
}

.member-table thead th {
  background-color: #f1f5f9;
  color: #475569;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 2px solid #e2e8f0;
  padding: 12px;
}

.member-table tbody tr {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.member-table tbody tr:hover {
  background-color: #f8fafc;
}

.member-table tbody td {
  padding: 14px;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
}

/* 1. Member Image (Circular Style like image) */
.member-img-wrap {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  margin: 0 auto;
}

.member-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 2. Name & Email */
.member-name {
  font-size: 12px;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.2;
}

.member-email {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

/* Labels & Values for Info */
.info-label {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}

.info-value {
  font-size: 12px;
  color: #334155;
  font-weight: 500;
}

/* Member Type Badge */
.badge-member-type {
  background-color: #22c55e; 
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

/* Event Photo Frame Buttons */
.btn-action-frame {
  font-size: 11px;
  padding: 5px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  color: #334155;
  text-decoration: none;
  background: #ffffff;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-action-frame:hover {
  background-color: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.member-table-wrapper {
  background: #f8fafc;
  padding: 15px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  width: 100% !important; 
}


.member-table {
  width: 100% !important;
  background-color: #ffffff;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin-bottom: 0;
 
}
.member-table-wrapper {
  background: #f8fafc;
  padding: 15px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  width: 100% !important; 
}


.member-table {
  width: 100% !important;
  background-color: #ffffff;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin-bottom: 0;
  
}

    /* Member Action Buttons */
    .btn-action-outline {
      border: 1px solid #c02128;
      color: #c02128;
      font-size: 11.5px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 4px;
      background: transparent;
      text-decoration: none;
      display: inline-block;
      transition: all 0.2s ease;
    }
    .btn-action-outline:hover {
      background-color: #c02128;
      color: #ffffff;
    }

/*=============================
member services
===============================*/
.service-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        padding: 45px 20px 25px 20px;
        text-align: center;
        position: relative;
        box-shadow: 0 6px 18px rgba(11, 28, 62, 0.03);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }

      .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 30px rgba(11, 28, 62, 0.08);
        border-color: #cbd5e1;
      }

      /* Floating Circle Icon Wrapper */
      .service-icon-wrapper {
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        background: #ffffff;
        border: 2px solid #c02128;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(192, 33, 40, 0.15);
        transition: all 0.3s ease;
      }

      .service-card:hover .service-icon-wrapper {
        background: #c02128;
      }

      .service-icon-wrapper i {
        font-size: 24px;
        color: #d97706; /* Golden/Amber color matching image icon */
        transition: all 0.3s ease;
      }

      .service-card:hover .service-icon-wrapper i {
        color: #ffffff;
      }

      .service-title {
        color: #c02128;
        font-weight: 700;
        font-size: 15.5px;
        line-height: 1.4;
        margin: 0;
      }

      /* Apply Button Styling */
      .btn-apply-membership {
        background-color: #c02128;
        color: #ffffff;
        font-weight: 600;
        font-size: 15px;
        padding: 12px 32px;
        border-radius: 8px;
        border: none;
        box-shadow: 0 4px 14px rgba(192, 33, 40, 0.25);
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
      }

      .btn-apply-membership:hover {
        background-color: #991b1e;
        color: #ffffff;
        box-shadow: 0 6px 20px rgba(192, 33, 40, 0.35);
        transform: translateY(-2px);
      }
/*===============================
Member details
====================================*/
/* Main Card Style */
      .mib-details-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0 4px 20px rgba(11, 28, 62, 0.04);
        height: 100%;
      }

      .section-sub-title {
        color: #0b1c3e;
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .section-sub-title i {
        color: #c02128;
      }

      /* Pricing Card Style */
      .pricing-box {
        background: #f8fafc;
        border: 1px solid #cbd5e1;
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        transition: all 0.3s ease;
      }

      .pricing-box:hover {
        border-color: #c02128;
        transform: translateY(-4px);
        box-shadow: 0 10px 20px rgba(192, 33, 40, 0.08);
      }

      .pricing-type {
        font-weight: 600;
        color: #475569;
        font-size: 14px;
        margin-bottom: 8px;
      }

      .pricing-amount {
        font-size: 28px;
        font-weight: 800;
        color: #0b1c3e;
      }

      .pricing-amount span {
        color: #c02128;
      }

      /* Step List Style */
      .step-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .step-list li {
        position: relative;
        padding-left: 32px;
        margin-bottom: 14px;
        font-size: 14.5px;
        color: #475569;
        line-height: 1.6;
      }

      .step-list li i {
        position: absolute;
        left: 0;
        top: 3px;
        color: #c02128;
        font-size: 18px;
      }

      /* Restricted Fields Badge Box */
      .restricted-box {
        background-color: #fff1f2;
        border: 1px dashed #f43f5e;
        border-radius: 12px;
        padding: 16px 20px;
        margin-top: 15px;
      }

      .restricted-title {
        color: #9f1239;
        font-weight: 600;
        font-size: 13.5px;
        margin-bottom: 10px;
      }

      .field-badge {
        background-color: #ffffff;
        color: #be123c;
        border: 1px solid #fecdd3;
        font-weight: 600;
        font-size: 12px;
        padding: 6px 12px;
        border-radius: 6px;
        display: inline-block;
        margin: 3px;
      }
/*===========================
Member proccess
==============================*/
.process-timeline {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
      }

      /* Vertical Connecting Line */
      .process-timeline::before {
        content: '';
        position: absolute;
        top: 25px;
        bottom: 25px;
        left: 28px;
        width: 3px;
        background: #e2e8f0;
        z-index: 1;
      }

      .process-step-item {
        position: relative;
        padding-left: 75px;
        margin-bottom: 24px;
        z-index: 2;
      }

      .process-step-item:last-child {
        margin-bottom: 0;
      }

      /* Step Number Icon Badge */
      .process-step-number {
        position: absolute;
        left: 0;
        top: 0;
        width: 58px;
        height: 58px;
        background: #ffffff;
        border: 2px solid #0b1c3e;
        color: #0b1c3e;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 18px;
        box-shadow: 0 4px 12px rgba(11, 28, 62, 0.08);
        transition: all 0.3s ease;
      }

      .process-step-item:hover .process-step-number {
        background: #c02128;
        border-color: #c02128;
        color: #ffffff;
        transform: scale(1.05) rotate(-3deg);
        box-shadow: 0 6px 18px rgba(192, 33, 40, 0.25);
      }

      /* Content Card Body */
      .process-step-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        padding: 20px 24px;
        box-shadow: 0 4px 15px rgba(11, 28, 62, 0.03);
        transition: all 0.3s ease;
      }

      .process-step-item:hover .process-step-card {
        border-color: #cbd5e1;
        box-shadow: 0 8px 25px rgba(11, 28, 62, 0.06);
        transform: translateX(4px);
      }

      .process-step-card p {
        color: #475569;
        font-size: 14.5px;
        line-height: 1.6;
        margin-bottom: 0;
      }

      /* Notice Box inside Step 7 */
      .pay-later-box {
        background-color: #fefce8;
        border: 1px dashed #eab308;
        border-radius: 8px;
        padding: 10px 14px;
        margin-top: 10px;
        font-size: 13.5px;
        color: #854d0e;
      }

/*=================================
code of content
==================================*/
.conduct-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        padding: 24px 28px;
        box-shadow: 0 4px 15px rgba(11, 28, 62, 0.03);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 100%;
      }

      .conduct-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(11, 28, 62, 0.07);
        border-color: #cbd5e1;
      }

      .conduct-header {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid #f1f5f9;
      }

      .conduct-number {
        width: 40px;
        height: 40px;
        background: #fff1f2;
        color: #c02128;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 16px;
        flex-shrink: 0;
      }

      .conduct-title {
        color: #0b1c3e;
        font-weight: 700;
        font-size: 17px;
        margin: 0;
      }

      .conduct-list {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
      }

      .conduct-list li {
        position: relative;
        padding-left: 24px;
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 1.6;
        color: #475569;
      }

      .conduct-list li:last-child {
        margin-bottom: 0;
      }

      .conduct-list li::before {
        content: "\F26B"; /* Bootstrap Icon Check */
        font-family: "bootstrap-icons";
        position: absolute;
        left: 0;
        top: 0;
        color: #c02128;
        font-weight: bold;
        font-size: 14px;
      }
/*==============================
mib mews
================================*/
.news-card-thumb {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 4px 15px rgba(11, 28, 62, 0.05);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        cursor: pointer;
      }

      .news-card-thumb:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(11, 28, 62, 0.12);
        border-color: #cbd5e1;
      }

      .news-img-wrapper {
        position: relative;
        overflow: hidden;
      }

      .news-img-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
      }

      .news-card-thumb:hover .news-img-wrapper img {
        transform: scale(1.05);
      }

      /* Hover Overlay & Icon */
      .news-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(11, 28, 62, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .news-card-thumb:hover .news-overlay {
        opacity: 1;
      }

      .view-icon-btn {
        width: 48px;
        height: 48px;
        background: #ffffff;
        color: #c02128;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        transform: scale(0.8);
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      }

      .news-card-thumb:hover .view-icon-btn {
        transform: scale(1);
      }
/*=============================
Contact
=================================*/
.contact-wrapper {
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(11, 28, 62, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Left Sidebar - Gradient & Modern Look */
.contact-info-sidebar {
  background: linear-gradient(135deg, #0b1c3e 0%, #1a365d 100%);
  position: relative;
  overflow: hidden;
}

.badge-accent {
  background-color: rgba(220, 53, 69, 0.2);
  color: #ff6b6b;
  border: 1px solid rgba(220, 53, 69, 0.3);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 30px;
}

.info-main-title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
}

/* Info Icon Circle */
.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4d4d;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-item:hover .info-icon {
  background: #dc3545;
  color: #ffffff;
  transform: translateY(-2px);
}

.info-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
}
.text-12 {
  font-size: 12px;
}
.info-text {
  font-size: 0.9rem;
  line-height: 1.5;
  transition: opacity 0.2s ease;
}

.info-text:hover {
  opacity: 0.85;
}

/* Decorative Background Element */
.sidebar-circle-shape {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(220, 53, 69, 0.15);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

/* Right Side Form */
.form-title {
  font-weight: 800;
  color: #0b1c3e;
  font-size: 2rem;
  letter-spacing: -0.5px;
}

.form-subtitle {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Floating Input Modern Customization */
.modern-input {
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 12px !important;
  font-size: 0.95rem;
  color: #0f172a;
  background-color: #f8fafc;
  transition: all 0.25s ease;
}

.modern-input:focus {
  background-color: #ffffff;
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1) !important;
}

.form-floating > label {
  color: #64748b;
  font-size: 0.88rem;
}

/* Gradient Submit Button */
.btn-primary-gradient {
  background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 20px -5px rgba(220, 53, 69, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary-gradient:hover {
  background: linear-gradient(135deg, #b02a37 0%, #8b212b 100%);
  color: #ffffff;
  box-shadow: 0 14px 24px -5px rgba(220, 53, 69, 0.5);
  transform: translateY(-2px);
}

.btn-primary-gradient:active {
  transform: translateY(0);
}

/* Responsive Fixes */
@media (max-width: 991.98px) {
  .contact-wrapper {
    border-radius: 16px;
  }
}

/*================================
8 dicvision
===================================*/
.divisions-section {
  background-color: #f8fafc;
}

/* Header Styles */
.badge-subtext {
  background-color: rgba(13, 110, 253, 0.1);
  color: #0b1c3e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 30px;
}

.section-main-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 10px;
}

/* Division Card Modern Layout */
.division-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* Updated Icon Box for Image Support */
.card-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  overflow: hidden;
  background: transparent; 
}

.division-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Card Typography */
.division-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #11244C;
  margin-bottom: 2px;
}

.division-en {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  display: block;
}

/* Interactive Link */
.explore-link {
  color: #0b1c3e;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.2s ease, color 0.2s ease;
}

/* Hover Effects */
.division-card:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 110, 253, 0.3);
  box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.08);
}

.division-card:hover .card-icon-box {
  transform: scale(1.1);
}

.division-card:hover .explore-link {
  gap: 10px;
  color: #BF1E2E;
}
/*==========================
gallery view images
============================*/
/* Gallery Thumbnails Style */
.gallery-item {
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.gallery-item img {
  transition: transform 0.3s ease;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Lightbox Modal Overlay */
.custom-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.custom-lightbox.active {
  display: flex;
}

.lightbox-content img {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* Modal Navigation Buttons */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #ffffff;
  cursor: pointer;
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 24px;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.5);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* =======================
Flag Ship pages
=========================*/
/* Hero Banner Styling */
.event-banner {
  min-height: 85vh;
  background: url('../images/gallery/g1.avif') center/cover no-repeat;
  position: relative;
}

.event-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
}

/* Social Media Icon Styling */
.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Form Styling */
.form-control:focus,
.form-select:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}


/* ============================================
   mib division page
   ============================================ */
.page-banner {
  min-height: 380px;
  background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&q=80&w=1600') center/cover no-repeat;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.tracking-wide {
  letter-spacing: 1.5px;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   SECTION TITLES & ACCENTS
   ============================================ */
.sub-title {
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.heading-line {
  width: 60px;
  height: 3px;
  background-color: #0b1c3e;
  border-radius: 2px;
}

/* ============================================
   MEMBER CARDS
   ============================================ */
.member-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.member-card__img-wrapper {
  aspect-ratio: 4/5;
}

.member-card__img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.member-card:hover .member-card__img {
  transform: scale(1.05);
}

/* Social Media Overlay */
.member-card__social-overlay {
  top: 0;
  left: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.member-card:hover .member-card__social-overlay {
  opacity: 1;
  visibility: visible;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(15px);
}

.member-card:hover .social-icon-btn {
  transform: translateY(0);
}

.social-icon-btn:hover {
  background-color: #0b1c3e;
  color: #ffffff;
  transform: translateY(-3px) !important;
}

.member-card__name {
  color: #0f172a;
}