/* navbar css */

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

    body {
      font-family: Arial, sans-serif;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    /* Top Header */
    .top-header {
      background: #232f78;
      color: #fff;
      padding: 7px 0;
    }

    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .top-header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .contact-info {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      font-size: 15px;
    }
.contact-info a{
  margin-bottom: 0px;
}
    .contact-item {
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .contact-item span.icon {
      font-size: 18px;
      line-height: 1;
    }

    .whatsapp-btn {
      background: #1db954;
      color: #fff;
      padding: 10px 18px;
      border-radius: 22px;
      font-size: 15px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      transition: 0.3s ease;
    }

    .whatsapp-btn:hover {
      background: #16a34a;
    }

    /* Latest News Placeholder */
    .latest-news-placeholder {
      background: #232f78;
      height: 54px;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    /* section.hero-slider-section{
        position: relative;
    } */

    /* Main Header */
    .main-header {
      background: #f2f2f2;
      padding: 10px 0;
      /* position: absolute; */
      /* top: 67px; */
    /* z-index: 1000; */
    /* width: 100%; */
    }

    .main-header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .logo {
      display: flex;
      align-items: center;
      max-width: 450px;
      width: 100%;
    }

    .logo img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 38px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .nav-menu a {
      color: #243377;
      font-size: 17px;
      font-weight: 500;
      transition: 0.3s ease;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
      color: #ff2b7a;
    }

    /* Dropdown Menu Styles */
    .nav-item-with-dropdown {
      position: relative;
    }

    .nav-link-about {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      position: relative;
      padding-bottom: 2px;
    }

    .dropdown-svg {
      width: 16px;
      height: 16px;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      flex-shrink: 0;
      margin-left: 4px;
    }

    .nav-item-with-dropdown:hover .dropdown-svg {
      transform: rotate(180deg);
    }

    .dropdown-svg path {
      transition: fill 0.3s ease;
    }

    .nav-item-with-dropdown:hover .dropdown-svg path {
      fill: #ff2b7a;
    }

    .nav-link-about::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #2196F3, #1976D2);
      transition: width 0.3s ease;
    }

    .nav-item-with-dropdown:hover .nav-link-about::after {
      width: 100%;
    }

    .nav-submenu {
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      border-radius: 12px;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
      min-width: 220px;
      padding: 8px 0;
      list-style: none;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-15px);
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      z-index: 1000;
      margin-top: 12px;
      border: 1px solid rgba(33, 150, 243, 0.1);
    }

    .nav-submenu::before {
      content: '';
      position: absolute;
      top: -8px;
      left: 20px;
      width: 0;
      height: 0;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-bottom: 8px solid white;
      filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.08));
    }

    .nav-item-with-dropdown:hover .nav-submenu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav-submenu li {
      list-style: none;
    }

    .nav-submenu a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 20px;
      color: #243377;
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .nav-submenu a::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 3px;
      background: linear-gradient(180deg, #2196F3, #1976D2);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.3s ease;
    }

    .nav-submenu a::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(33, 150, 243, 0.05), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .nav-submenu a:hover {
      background: #f8f9fa;
      color: #ff2b7a;
      padding-left: 28px;
    }

    .nav-submenu a:hover::before {
      transform: scaleY(1);
    }

    .nav-submenu a:hover::after {
      opacity: 1;
    }

    .nav-submenu li:first-child a {
      border-radius: 12px 12px 0 0;
    }

    .nav-submenu li:last-child a {
      border-radius: 0 0 12px 12px;
    }

    .nav-submenu a i {
      font-size: 14px;
      color: #2196F3;
      transition: all 0.3s ease;
    }

    .nav-submenu a:hover i {
      transform: translateX(4px);
      color: #ff2b7a;
    }

    /* Mobile Toggle */
    .menu-toggle {
      display: none;
      background: #232f78;
      color: #fff;
      border: none;
      padding: 10px 14px;
      font-size: 18px;
      border-radius: 6px;
      cursor: pointer;
    }

    /* Responsive */
      @media (max-width: 1199px) {
        .nav-menu a {
    font-size: 15px;
  }

.nav-menu {
    gap: 14px;
}
      }
    @media (max-width: 991px) {
      .governance-content.mb-5
 {
    margin-bottom: 20px !important;
}
      .governance-button.justify-content-end{
        display: none;
      }
      .governance-content h2{
        line-height: 35px;
      }
      .sidebar-cta {
    margin: 0px 0!important;
}
      .membership-images {
    display: none;
}
      /* .main-header-inner {
        flex-wrap: wrap;
      } */

      .menu-toggle {
        display: block;
        margin-left: auto;
      }

      .nav-wrapper {
        width: 100%;
        display: none;
      }

      .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-top: 18px;
      }

      .nav-wrapper.active .nav-menu {
        display: flex;
      }

      .logo {
        max-width: 290px;
      }

      .nav-submenu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        background: #f5f5f5;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        transform: none;
        transition: all 0.3s ease;
        border: none;
      }

      .nav-submenu::before {
        display: none;
      }

      .nav-item-with-dropdown.active .nav-submenu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 12px 0;
        background: #f8f9fa;
        border-top: 1px solid #e0e0e0;
      }

      .dropdown-svg {
        transition: all 0.3s ease;
      }

      .nav-item-with-dropdown.active .dropdown-svg {
        transform: rotate(180deg);
      }

      .nav-item-with-dropdown.active .dropdown-svg path {
        fill: #ff2b7a;
      }

      .nav-link-about::after {
        display: none;
      }

      .nav-submenu a {
        padding-left: 50px;
        border-radius: 0 !important;
      }

      .nav-submenu a:hover {
        padding-left: 55px;
        background: #eef2f7;
      }
    }

    @media (max-width: 767px) {
      .top-header-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .contact-info {
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
      }

      .whatsapp-btn {
        align-self: flex-start;
      }

      .main-header {
        padding: 16px 0;
      }

      .logo {
        max-width: 240px;
      }

      .nav-menu a {
        font-size: 16px;
      }
    }
/* navbar css */







/* Hero Slider Section Styles */
.hero-slider-section {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

/* Background Image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.6s ease-in-out;
  z-index: 1;
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}

/* Content Wrapper */
.hero-content-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 60px 20px;
  gap: 100px;
}

/* Left Sidebar - Latest News */
.hero-news-sidebar {
  flex: 0 0 331px;
  display: flex;
  align-items:end;
}

.news-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 30px 0;
  text-transform: capitalize;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.news-item {
  position: relative;
  padding-left: 20px;
  padding-top: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 1px solid #ffffff36!important;
}

.news-item::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 0;
  height: 100%;
  width: 3px;
  background: #2196F3;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.news-item.active::before {
  transform: scaleY(1);
}

.news-item:hover {
  padding-left: 25px;
}

.news-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.news-item.active .news-text,
.news-item:hover .news-text {
  color: #fff;
  font-weight: 500;
}

/* Main Content Area */
.hero-main-content {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-text-content {
  max-width: 600px;
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}

.hero-text-content.fade-out {
  opacity: 0;
}

.hero-headline {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 30px 0;
}

.hero-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #2196F3;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.hero-btn:hover {
  background: #1976D2;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
  color: #fff;
}

/* Photo Credit */
.photo-credit {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  z-index: 3;
  transition: opacity 0.6s ease-in-out;
}

/* Scroll Icon */
.scroll-icon {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Tablet Responsive */
@media (max-width: 992px) {
  .hero-content-wrapper {
    flex-direction: column;
    gap: 10px;
    padding: 40px 20px;
  }
  
  .hero-news-sidebar {
    flex: 0 0 auto;
    width: 100%;
  }
  
  .news-list {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .news-item {
    flex: 0 0 auto;
    min-width: 200px;
    border-left: none;
    border-bottom: 3px solid transparent;
    padding-left: 0;
    padding-bottom: 10px;
  }
  
  .news-item::before {
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
  }
  
  .news-item.active::before {
    transform: scaleX(1);
  }
  
  .news-item:hover {
    padding-left: 0;
  }
  
  .hero-headline {
    font-size: 36px;
  }
  
  .hero-description {
    font-size: 16px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-slider-container {
    height: 500px;
  }
  
  .hero-content-wrapper {
    padding: 30px 15px;
  }
  
  .news-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  

  
  .news-item {
    min-width: 180px;
  }
  
  .news-text {
    font-size: 14px;
  }
  
  .hero-headline {
    font-size: 28px;
  }
  
  .hero-description {
    font-size: 14px;
  }
  
  .hero-btn {
    padding: 12px 30px;
    font-size: 14px;
  }
  
  .scroll-icon {
    bottom: 20px;
    right: 20px;
  }
  
  .scroll-icon svg {
    width: 35px;
    height: 35px;
  }
}
/* slider css */




/* Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

.nav-btn:active {
  transform: scale(0.95);
}

.nav-prev {
  transform: translateY(-50%);
}

.nav-next {
  transform: translateY(-50%);
}

.nav-btn:hover.nav-prev {
  transform: translateY(-50%) scale(1.1);
}

.nav-btn:hover.nav-next {
  transform: translateY(-50%) scale(1.1);
}

.nav-btn:active.nav-prev {
  transform: translateY(-50%) scale(0.95);
}

.nav-btn:active.nav-next {
  transform: translateY(-50%) scale(0.95);
}

/* Mobile Navigation Arrows */
@media (max-width: 768px) {
  .slider-nav {
    padding: 0 15px;
  }
  
  .nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .nav-btn svg {
    width: 20px;
    height: 20px;
  }
}
.nav-menu{
    margin-bottom:0px;
    padding-left: 0px;
}
/* Social Media Links */
.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link.facebook {
  background: #1877f2;
  color: white;
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-link.twitter {
  background: #1da1f2;
  color: white;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link:hover.facebook {
  background: #166fe5;
}

.social-link:hover.instagram {
  background: linear-gradient(45deg, #e08429 0%, #d55a32 25%, #c91f39 50%, #b31f5c 75%, #a8157e 100%);
}

.social-link:hover.twitter {
  background: #1991db;
}

/* Mobile Social Links */
@media (max-width: 768px) {
  .social-links {
    gap: 10px;
  }
  
  .social-link {
    width: 30px;
    height: 30px;
  }
  
  .social-link svg {
    width: 16px;
    height: 16px;
  }
}


/* ===== ABOUT US SECTION ===== */
.about-us {
  position: relative;
  padding: 50px 0;
  background: #fff;
  overflow: hidden;
}

.dynamic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #2196F3, #64B5F6);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #1976D2, #2196F3);
  bottom: -50px;
  left: -50px;
  animation: float 10s ease-in-out infinite 2s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #90CAF9, #64B5F6);
  top: 50%;
  right: 10%;
  animation: float 12s ease-in-out infinite 4s;
}

.mesh-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(25, 118, 210, 0.1) 0%, transparent 50%);
}

@keyframes float {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-30px) translateX(20px); }
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* IMAGE STACK SECTION */
.about-images {
  position: relative;
}

.image-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.image-card:hover .card-glow {
  opacity: 1;
}

.image-content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.main-card {
  height: 400px;
}

.main-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(33, 150, 243, 0.25);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.4), rgba(25, 118, 210, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.image-card:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.play-button {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.image-card:hover .play-button {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.overlay-text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  animation: bounce 2s ease-in-out infinite;
}

.badge-icon {
  font-size: 18px;
}

.badge-text {
  font-size: 13px;
  font-weight: 600;
  color: #2196F3;
}

.secondary-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.secondary-card {
  height: 250px;
}

.secondary-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(33, 150, 243, 0.2);
}

.metric-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.5), rgba(25, 118, 210, 0.3));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.secondary-card:hover .metric-overlay {
  opacity: 1;
}

.metric-number {
  font-size: 36px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.metric-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 8px;
  font-weight: 500;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.float-element {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.element-1 {
  top: 20%;
  right: -30px;
  color: #2196F3;
  opacity: 0.3;
  animation-delay: 0s;
}

.element-2 {
  bottom: 15%;
  left: -20px;
  animation-delay: 1s;
}

.element-3 {
  top: 50%;
  right: 10%;
  animation-delay: 2s;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background: #2196F3;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.rotating-ring {
  width: 30px;
  height: 30px;
  border: 2px solid #2196F3;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* CONTENT SECTION */
.about-content {
  display: flex;
  align-items: center;
}

.content-wrapper {
  max-width: 550px;
}

.section-label-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.label-line {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #2196F3, transparent);
  animation: expandWidth 0.6s ease;
}

@keyframes expandWidth {
  from { width: 0; }
  to { width: 30px; }
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  color: #2196F3;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: slideInRight 0.6s ease;
}

@keyframes slideInRight {
  from { transform: translateX(-20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.label-sparkle {
  font-size: 18px;
  animation: spin 3s linear infinite;
}

.section-heading {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 40px 0;
}

.heading-line {
  display: block;
  animation: slideInUp 0.6s ease backwards;
}

.line-1 { animation-delay: 0.1s; }
.line-2 { animation-delay: 0.2s; }
.line-3 { animation-delay: 0.3s; }

@keyframes slideInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(33, 150, 243, 0.05);
  border: 1px solid rgba(33, 150, 243, 0.1);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: slideInUp 0.6s ease backwards;
}

.card-slide-1 { animation-delay: 0.4s; }
.card-slide-2 { animation-delay: 0.5s; }

.feature-card:hover {
  background: rgba(33, 150, 243, 0.1);
  border-color: rgba(33, 150, 243, 0.3);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(33, 150, 243, 0.15);
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.feature-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.feature-text strong {
  color: #2196F3;
  font-weight: 600;
}

/* CTA SECTION */
.cta-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.primary-btn {
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.primary-btn:hover::before {
  left: 100%;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(33, 150, 243, 0.4);
}

.btn-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.primary-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.secondary-btn {
  background: rgba(33, 150, 243, 0.1);
  color: #2196F3;
  border: 2px solid #2196F3;
}

.secondary-btn:hover {
  background: #2196F3;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(33, 150, 243, 0.3);
}

.btn-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.stats-bar {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.05), rgba(25, 118, 210, 0.05));
  border: 1px solid rgba(33, 150, 243, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.stat-icon {
  font-size: 28px;
  line-height: 1;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 22px;
  font-weight: 800;
  color: #2196F3;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(33, 150, 243, 0.2);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-images {
    max-width: 600px;
    margin: 0 auto;
  }

  .section-heading {
    font-size: 40px;
  }

  .content-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-us {
    padding: 50px 0;
  }

  .about-container {
    gap: 50px;
    padding: 0 15px;
  }

  .main-card {
    height: 300px;
  }

  .secondary-card {
    height: 200px;
  }

  .section-heading {
    font-size: 32px;
  }

  .feature-card {
    padding: 20px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .stats-bar {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    width: 50px;
    height: 1px;
  }

  .orb-1, .orb-2, .orb-3 {
    filter: blur(60px);
    opacity: 0.4;
  }
}

@media (max-width: 480px) {
  .about-container {
    gap: 40px;
  }

  .main-card {
    height: 250px;
  }

  .secondary-cards {
    grid-template-columns: 1fr;
  }

  .secondary-card {
    height: 180px;
  }

  .section-heading {
    font-size: 26px;
  }

  .section-label-wrapper {
    margin-bottom: 15px;
  }

  .feature-card {
    padding: 15px;
    gap: 15px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .stats-bar {
    padding: 15px;
  }

  .stat-number {
    font-size: 18px;
  }

  .stat-label {
    font-size: 11px;
  }
}




/* governance css start herere */

/* Governance Section */
.governance-section {
  position: relative;
  padding: 50px 0;
  background: #fff;
  overflow: hidden;
}

.governance-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.gov-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.gov-orb-1 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #2196F3, #64B5F6);
  top: -100px;
  left: -100px;
  animation: float 8s ease-in-out infinite;
}

.gov-orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #1976D2, #2196F3);
  bottom: -50px;
  right: -50px;
  animation: float 10s ease-in-out infinite 2s;
}

.gov-mesh {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(25, 118, 210, 0.1) 0%, transparent 50%);
}

.governance-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.governance-content {
  max-width: 550px;
}

.gov-label-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.gov-label-line {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #2196F3, transparent);
  animation: expandWidth 0.6s ease;
}

.gov-label {
  font-size: 13px;
  font-weight: 700;
  color: #2196F3;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: slideInRight 0.6s ease;
}

.gov-sparkle {
  font-size: 18px;
  animation: spin 3s linear infinite;
}

.governance-heading {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0 0 30px 0;
}

.gov-line {
  display: block;
  animation: slideInUp 0.6s ease backwards;
}

.gov-line:nth-child(1) { animation-delay: 0.1s; }
.gov-line:nth-child(2) { animation-delay: 0.2s; }

.governance-description {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  animation: slideInUp 0.6s ease 0.3s backwards;
}

.governance-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gov-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.6s ease 0.4s backwards;
}

.gov-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.gov-btn:hover::before {
  left: 100%;
}

.gov-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(33, 150, 243, 0.4);
}

.gov-btn-text {
  position: relative;
  z-index: 1;
}

.gov-btn-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.gov-btn:hover .gov-btn-arrow {
  transform: translateX(5px);
}

@keyframes expandWidth {
  from { width: 0; }
  to { width: 30px; }
}

@keyframes slideInRight {
  from { transform: translateX(-20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-30px) translateX(20px); }
}

/* Responsive */
@media (max-width: 1024px) {
  .governance-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .governance-button {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .governance-section {
    padding: 50px 0;
  }
  
  .governance-wrapper {
    gap: 50px;
    padding: 0 15px;
  }
  
  .governance-heading {
    font-size: 42px;
  }
  
  .governance-description {
    font-size: 15px;
  }
  
  .gov-btn {
    padding: 16px 32px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .governance-section {
    padding: 50px 0;
  }
  
  .governance-wrapper {
    gap: 40px;
  }
  
  .governance-heading {
    font-size: 32px;
  }
  
  .governance-description {
    font-size: 14px;
  }
  
  .gov-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .gov-orb-1, .gov-orb-2 {
    filter: blur(60px);
    opacity: 0.3;
  }
}
.governance-section{
    background-color: #f8f8f8;
}
/* --- Leadership Circle --- */
        .leader-box {
            position: relative;
            overflow: hidden;
            border-radius: 0;
            background: #000;
        }
        .leader-img {
            width: 100%; height: 450px;
            object-fit: cover;
            opacity: 0.7;
            transition: 0.5s;
        }
        .leader-box:hover .leader-img { transform: scale(1.05); opacity: 0.4;cursor: pointer; }
        .leader-content {
            position: absolute;
            bottom: 0; left: 0; width: 100%;
            padding: 40px;
            background: linear-gradient(transparent, var(--primary-blue));
        }
        .leader-name { font-size: 1.5rem; color: white; margin-bottom: 5px; }
        .leader-pos { color: #2196F3; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; }
/* governance css start herere */


/* ===== UPCOMING EVENTS SECTION ===== */
.upcoming-events {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
  overflow: hidden;
}

.events-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

/* LEFT COLUMN - HEADER */
.events-header {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-top: 20px;
}
.events-header h2{
        font-size: 27px;
    line-height: 38px;
}
.events-label-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.events-label-line {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #2196F3, transparent);
  animation: expandWidth 0.6s ease;
}

.events-label {
  font-size: 13px;
  font-weight: 700;
  color: #2196F3;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: slideInRight 0.6s ease;
}

.events-sparkle {
  font-size: 18px;
  animation: spin 3s linear infinite;
}

.events-heading {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: #1a1a1a;
  margin: 0;
}

.events-line {
  display: block;
  animation: slideInUp 0.6s ease backwards;
}

.events-line:nth-child(1) { animation-delay: 0.1s; }
.events-line:nth-child(2) { animation-delay: 0.2s; }
.events-line:nth-child(3) { animation-delay: 0.3s; }
.events-line:nth-child(4) { animation-delay: 0.4s; }

.see-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
  position: relative;
  overflow: hidden;
  width: fit-content;
  animation: slideInUp 0.6s ease 0.5s backwards;
}

.see-all-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.see-all-btn:hover::before {
  left: 100%;
}

.see-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(33, 150, 243, 0.4);
}

.see-all-text {
  position: relative;
  z-index: 1;
}

.see-all-arrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.see-all-btn:hover .see-all-arrow {
  transform: translateX(5px);
}

/* RIGHT COLUMN - EVENTS GRID */
.events-grid {
  display: none;
}

.event-card {
  display: none;
}

.event-top-line {
  display: none;
}

.event-label {
  display: none;
}

.event-title {
  display: none;
}

.event-description {
  display: none;
}

.event-meta {
  display: none;
}

.event-date {
  display: none;
}

.event-location {
  display: none;
}

.event-banner {
  display: none;
}

.event-arrow-btn {
  display: none;
}

/* ANIMATIONS */
@keyframes expandWidth {
  from { width: 0; }
  to { width: 30px; }
}

@keyframes slideInRight {
  from { transform: translateX(-20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  .events-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .events-heading {
    font-size: 40px;
  }
}

.cards-graid-news{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.upcoming-eventsss{
    background-color: #fff;
    padding: 20px;
    margin-bottom: 50px!important;
    margin:2px ;
    width: 47%;
    border-top: 1px solid #004a96;
    padding-top: 30px;
}
.upcoming-eventsss span{
    font-size: 10px;
    background: #2195f31d;
    padding: 10px 20px;
    border-radius: 100px;
}
.upcoming-eventsss h6{
    font-size: 22px;
    font-weight: 600;
}
.theme-color{
    color: #2195f3;
}


/* ===== LATEST COMMUNITY UPDATES SECTION ===== */
.latest-community-updates {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(135deg, #3a3f7a 0%, #0d3c55 100%);
  overflow: hidden;
}

.latest-community-updates::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.latest-community-updates::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(25, 118, 210, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.latest-community-updates .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* SECTION HEADER */
.updates-header {
  text-align: center;
  margin-bottom: 60px;
  animation: slideInUp 0.6s ease;
}

.updates-label-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.updates-label {
  font-size: 13px;
  font-weight: 700;
  color: #64B5F6;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: slideInRight 0.6s ease;
}

.updates-sparkle {
  font-size: 18px;
  animation: spin 3s linear infinite;
}

.updates-heading {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: white;
  margin: 0 0 20px 0;
}

.updates-line {
  display: block;
  animation: slideInUp 0.6s ease backwards;
}

.updates-line:nth-child(1) { animation-delay: 0.1s; }
.updates-line:nth-child(2) { animation-delay: 0.2s; }

.updates-subtext {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
  animation: slideInUp 0.6s ease 0.3s backwards;
}

/* CATEGORY TABS */
.updates-tabs-wrapper {
  position: relative;
  margin-bottom: 60px;
}

.updates-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.updates-tab {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.updates-tab:hover {
  color: rgba(255, 255, 255, 0.9);
}

.updates-tab.active {
  color: white;
}

.updates-tab-underline {
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #64B5F6, #2196F3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 0;
}

.updates-tab.active ~ .updates-tab-underline {
  width: 100%;
  left: 0;
}

/* CONTENT GRID */
.updates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  position: relative;
}

.cards-carousel {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.update-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: slideInUp 0.6s ease backwards;
  min-width: calc(25% - 22.5px);
  flex-shrink: 0;
}

.update-card:nth-child(1) { animation-delay: 0.1s; }
.update-card:nth-child(2) { animation-delay: 0.2s; }
.update-card:nth-child(3) { animation-delay: 0.3s; }

.update-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(33, 150, 243, 0.25);
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.carousel-nav {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

.carousel-nav:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(33, 150, 243, 0.4);
}

.carousel-nav:active {
  transform: scale(0.95);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.dot.active {
  background: #64B5F6;
  width: 28px;
  border-radius: 5px;
}

.card-icon {
  font-size: 32px;
  line-height: 1;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
}

.card-description {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2196F3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  color: #1976D2;
  gap: 12px;
}

.read-more-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.read-more-link:hover .read-more-arrow {
  transform: translateX(3px);
}

.card-arrow-btn {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.card-arrow-btn:hover {
  transform: scale(1.1) rotate(45deg);
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

/* ANIMATIONS */
@keyframes slideInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(-20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .updates-heading {
    font-size: 40px;
  }
  
  .updates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .updates-tabs {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .latest-community-updates {
    padding: 80px 0;
  }
  
  .latest-community-updates .container {
    padding: 0 15px;
  }
  
  .updates-header {
    margin-bottom: 50px;
  }
  
  .updates-heading {
    font-size: 32px;
  }
  
  .updates-subtext {
    font-size: 15px;
  }
  
  .updates-tabs {
    gap: 20px;
    margin-bottom: 50px;
  }
  
  .updates-tab {
    font-size: 14px;
    padding: 10px 0;
  }
  
  .updates-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .update-card {
    padding: 25px;
    gap: 15px;
  }
  
  .card-title {
    font-size: 16px;
  }
  
  .card-description {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .latest-community-updates {
    padding: 60px 0;
  }
  
  .latest-community-updates .container {
    padding: 0 12px;
  }
  
  .updates-header {
    margin-bottom: 40px;
  }
  
  .updates-heading {
    font-size: 26px;
  }
  
  .updates-subtext {
    font-size: 14px;
  }
  
  .updates-tabs {
    flex-direction: column;
    gap: 7px;
    margin-bottom: 40px;
    width: 100%!important;
  }
  
  .updates-tab {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }
  
  .updates-grid {
    gap: 15px;
  }
  
  .update-card {
    padding: 20px;
    gap: 12px;
  }
  
  .card-icon {
    font-size: 28px;
  }
  
  .card-title {
    font-size: 15px;
  }
  
  .card-description {
    font-size: 12px;
  }
  
  .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 12px;
  }
  
  .card-arrow-btn {
    width: 36px;
    height: 36px;
  }
  
  .latest-community-updates::before,
  .latest-community-updates::after {
    display: none;
  }
}


/* Carousel Responsive */
@media (max-width: 1024px) {
  .carousel-controls {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .cards-carousel {
    gap: 20px;
  }
  
  .update-card {
    min-width: 100%;
  }
  
  .carousel-controls {
    gap: 20px;
    margin-top: 30px;
  }
  
  .carousel-nav {
    width: 40px;
    height: 40px;
  }
  
  .carousel-nav svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .cards-carousel {
    gap: 15px;
  }
  
  .carousel-controls {
    gap: 15px;
    margin-top: 25px;
  }
  
  .carousel-nav {
    width: 36px;
    height: 36px;
  }
  
  .carousel-nav svg {
    width: 18px;
    height: 18px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  .dot.active {
    width: 24px;
  }
}

/* .updates-tab{
    width: 45%;
} */
.updates-tabs {
    border-bottom: 1px solid #fff;
    padding-bottom: 11px;
}
.updates-card h6{
    line-height: 33px;
    font-weight: 600;
    font-size: 20px;
}
.updates-card{
    background-color: #fff;
    padding: 15px;
}
.updates-card a p{
    margin-bottom: 0px;
    padding-bottom: 0px;
}


/* ===== INVITATION SECTION ===== */
.invitation {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
  overflow: hidden;
}

.invitation::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.invitation::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(25, 118, 210, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.invitation .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* INVITATION HEADER */
.invitation-header {
  text-align: center;
  margin-bottom: 60px;
  animation: slideInUp 0.6s ease;
}

.invitation-label-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.invitation-label {
  font-size: 13px;
  font-weight: 700;
  color: #2196F3;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: slideInRight 0.6s ease;
}

.invitation-sparkle {
  font-size: 20px;
  animation: spin 3s linear infinite;
}

.invitation-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0 0 15px 0;
  animation: slideInUp 0.6s ease 0.1s backwards;
}

.invitation-subtitle {
  font-size: 16px;
  color: #2196F3;
  font-weight: 500;
  margin: 0;
  animation: slideInUp 0.6s ease 0.2s backwards;
}

/* EVENT HIGHLIGHT */
.event-highlight {
  margin-bottom: 40px;
  animation: slideInUp 0.6s ease 0.3s backwards;
}

.event-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px 0;
}

.event-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* EVENT INFO CARDS */
.event-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.info-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: slideInUp 0.6s ease backwards;
}

.info-card:nth-child(1) { animation-delay: 0.4s; }
.info-card:nth-child(2) { animation-delay: 0.5s; }
.info-card:nth-child(3) { animation-delay: 0.6s; }

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(33, 150, 243, 0.15);
}

.info-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 20px;
}

.info-label {
  font-size: 12px;
  font-weight: 700;
  color: #2196F3;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.info-value {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

/* ATTENDEES SECTION */
.attendees-section {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.05), rgba(25, 118, 210, 0.05));
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(33, 150, 243, 0.1);
  animation: slideInUp 0.6s ease 0.7s backwards;
}

.attendees-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 15px 0;
}

.attendees-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.attendee-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.attendee-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(33, 150, 243, 0.3);
}

.attendees-note {
  font-size: 13px;
  color: #666;
  margin: 0;
  font-style: italic;
}

/* AGENDA SECTION */
.agenda-section {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  animation: slideInUp 0.6s ease 0.4s backwards;
}

.agenda-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 25px 0;
}

.agenda-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.agenda-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

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

.agenda-item:hover {
  padding-left: 10px;
}

.agenda-icon {
  font-size: 20px;
  color: #2196F3;
  flex-shrink: 0;
  line-height: 1.4;
}

.agenda-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* HOSTED BY SECTION */
.hosted-by-section {
  margin-top: 40px;
  padding-top: 40px;
  /* border-top: 2px solid rgba(33, 150, 243, 0.1);
  animation: slideInUp 0.6s ease 0.8s backwards; */
      padding: 50px;
    background: linear-gradient(135deg, #3a3f7a 0%, #0d3c55 100%);
}

.hosted-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #2196F3, #1976D2);
  border-radius: 2px;
  margin: 0 auto 30px;
}

.hosted-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hosted-title {
  font-size: 16px;
  font-weight: 700;
  color: #2196F3;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.host-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #ffffff;
}

.host-name {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 5px 0;
}

.host-position {
  font-size: 14px;
  color: #2196F3;
  font-weight: 600;
  margin: 0 0 3px 0;
}

.host-location {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* FOOTER INFO */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.footer-tagline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tagline-item {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 13px;
}


.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.website {
  font-size: 16px;
  font-weight: 700;
  color: #2196F3;
  margin: 0;
}

.helpline {
  font-size: 14px;
  color: #fff;
  margin: 0;
}

/* ANIMATIONS */
@keyframes slideInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(-20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .invitation-title {
    font-size: 42px;
  }
  
  .event-info-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .invitation {
    padding: 60px 0;
  }
  
  .invitation .container {
    padding: 0 15px;
  }
  
  .invitation-header {
    margin-bottom: 50px;
  }
  
  .invitation-title {
    font-size: 32px;
  }
  
  .invitation-subtitle {
    font-size: 16px;
  }
  
  .event-title {
    font-size: 26px;
  }
  
  .event-subtitle {
    font-size: 14px;
  }
  
  .event-info-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .info-card {
    padding: 20px;
  }
  
  .agenda-section {
    padding: 25px;
  }
  
  .agenda-title {
    font-size: 20px;
  }
  
  .hosted-by-section {
    margin-top: 50px;
    padding-top: 30px;
  }
  
  .invitation::before,
  .invitation::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .invitation {
    padding: 50px 0;
  }
  
  .invitation .container {
    padding: 0 12px;
  }
  
  .invitation-header {
    margin-bottom: 10px;
  }
  
  .invitation-title {
    font-size: 26px;
  }
  
  .invitation-subtitle {
    font-size: 14px;
  }
  
  .event-highlight {
    margin-bottom: 30px;
  }
  
  .event-title {
    font-size: 22px;
  }
  
  .event-subtitle {
    font-size: 13px;
  }
  
  .event-info-cards {
    gap: 10px;
  }
  
  .info-card {
    padding: 15px;
    gap: 12px;
  }
  
  .info-icon {
    font-size: 28px;
  }
  
  .info-value {
    font-size: 14px;
  }
  
  .attendees-section {
    padding: 20px;
  }
  
  .attendees-title {
    font-size: 14px;
  }
  
  .attendee-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .agenda-section {
    padding: 20px;
  }
  
  .agenda-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .agenda-item {
    padding: 10px 0;
  }
  
  .agenda-item p {
    font-size: 13px;
  }
  
  .hosted-by-section {
    margin-top: 40px;
    padding-top: 25px;
  }
  
  .host-card {
    padding: 15px;
  }
  
  .host-name {
    font-size: 18px;
  }
  
  .host-position {
    font-size: 13px;
  }
  
  .tagline-item {
    font-size: 13px;
  }
  
  .website {
    font-size: 14px;
  }
  
  .helpline {
    font-size: 13px;
  }
}


/* ===== MEMBERSHIP SECTION ===== */
.about-membership {
  padding: 50px 0;
  background: #f8f9fa;
}

.membership-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.membership-content {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.membership-label {
  font-size: 13px;
  font-weight: 700;
  color: #dc3545;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.membership-heading {
      font-size: 30px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 40px;
    margin: 0;
}

.membership-text {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.membership-stats {
  display: flex;
  gap: 40px;
  margin: 20px 0;
}

.stat-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #2196F3;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

.membership-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: transparent;
  color: #2196F3;
  border: 2px solid #2196F3;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.membership-btn:hover {
  background: #2196F3;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(220,53,69,0.3);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.membership-btn:hover .btn-icon {
  transform: scale(1.1);
}

.membership-images {
  position: relative;
  height: 600px;
}

.image-wrapper {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
}

.image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-main {
  right: 0;
  top: 0;
  width: 450px;
  height: 550px;
}

.img-overlay {
  left: 0;
  bottom: 0;
  width: 350px;
  height: 450px;
  z-index: 2;
}

@media (max-width: 1200px) {
  .membership-container {
    gap: 60px;
  }
  .membership-heading {
    font-size: 36px;
  }
  .img-main {
    width: 400px;
    height: 500px;
  }
  .img-overlay {
    width: 300px;
    height: 400px;
  }
}

@media (max-width: 992px) {
  .membership-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .membership-images {
    height: 500px;
    margin: 0 auto;
    max-width: 600px;
  }
  .img-main {
    width: 380px;
    height: 480px;
  }
  .img-overlay {
    width: 280px;
    height: 360px;
  }
}

@media (max-width: 768px) {
  .about-membership {
    padding: 60px 0;
  }
  .membership-container {
    padding: 0 20px;
    gap: 50px;
  }
  .membership-heading {
    font-size: 28px;
  }
  .membership-text {
    font-size: 15px;
  }
  .membership-stats {
    gap: 30px;
  }
  .stat-number {
    font-size: 28px;
  }
  .membership-images {
    height: 450px;
  }
  .img-main {
    width: 320px;
    height: 420px;
  }
  .img-overlay {
    width: 240px;
    height: 320px;
  }
}

@media (max-width: 480px) {
  .about-membership {
    padding: 50px 0;
  }
  .membership-container {
    padding: 0 15px;
  }
  .membership-heading {
    font-size: 24px;
  }
  .membership-text {
    font-size: 14px;
  }
  .membership-stats {
    flex-direction: column;
    gap: 20px;
  }
  .membership-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }
  .membership-images {
    height: 400px;
  }
  .img-main {
    width: 280px;
    height: 380px;
  }
  .img-overlay {
    width: 200px;
    height: 280px;
  }
}


/* ===== FSFTI CHAPTERS SECTION ===== */
.city-pointer {
  padding: 50px 0;
  background: #f5f5f5;
  background-image: radial-gradient(circle, #ddd 1px, transparent 1px);
  background-size: 20px 20px;
  position: relative;
}

.chapters-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.chapters-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chapters-label {
  font-size: 13px;
  font-weight: 700;
  color: #2196F3;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.chapters-heading {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
}

.chapters-text {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.chapters-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 10px;
}

.chapter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 13px;
    background: #1a2b5f;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.chapters-content h2{
  font-size: 45px;
  font-weight: 700!important;
  margin-top: 5px;
}

.chapter-btn:hover {
  background: #2196F3;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(33,150,243,0.3);
}

.chapter-btn svg {
  flex-shrink: 0;
}

.chapters-carousel {
  position: relative;
}

.carousel-wrapper {
  overflow: hidden;
  border-radius: 16px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-card {
      min-width: 49%;
    padding: 10px 10px;
    box-sizing: border-box;
    /* background: #fff; */
    margin: 5px;
}

.carousel-card > div {
  /* background: white; */
  border-radius: 12px;
  /* overflow: hidden; */
  /* box-shadow: 0 8px 30px rgba(0,0,0,0.1); */
  transition: all 0.3s ease;
}

.carousel-card:hover > div {
  transform: translateY(-8px);
  /* box-shadow: 0 15px 40px rgba(0,0,0,0.15); */
}

.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.carousel-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 30px;
}

.card-subheading {
  font-size: 13px;
  font-weight: 700;
  color: #2196F3;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-heading {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 15px 0;
}

.card-text {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot:hover {
  background: #999;
}

.dot.active {
  background: #2196F3;
  width: 32px;
  border-radius: 6px;
}

@media (max-width: 1200px) {
  .chapters-container {
    gap: 60px;
  }
  .chapters-heading {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  .chapters-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .chapters-buttons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .city-pointer {
    padding: 60px 0;
  }
  .chapters-container {
    padding: 0 20px;
    gap: 50px;
  }
  .chapters-heading {
    font-size: 32px;
  }
  .chapters-text {
    font-size: 15px;
  }
  .chapter-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  .carousel-card {
    min-width: 50%;
  }
  .card-content {
    padding: 25px;
  }
  .card-heading {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .city-pointer {
    padding: 50px 0;
  }
  .chapters-container {
    padding: 0 15px;
  }
  .chapters-heading {
    font-size: 26px;
  }
  .carousel-card {
    min-width: 100%;
  }
  .card-image {
    height: 200px;
  }
  .card-content {
    padding: 20px;
  }
  .card-heading {
    font-size: 18px;
  }
  .card-text {
    font-size: 14px;
  }
}


/* ===== VISION & MISSION SECTION ===== */
.vision-mission-section {
  position: relative;
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.vm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.vm-content {
  display: flex;
  align-items: center;
}

.vm-intro {
  margin: 30px 0;
  padding: 25px;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.05), rgba(25, 118, 210, 0.05));
  border-radius: 16px;
  border-left: 4px solid #2196F3;
}

.vm-intro-text {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

.vm-mission {
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.mission-wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.mission-header {
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(33, 150, 243, 0.1);
}

.mission-icon-large {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

.mission-icon-large svg {
  color: white;
}

.mission-heading {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
}

.mission-intro {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.mission-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(33, 150, 243, 0.1);
}

.mission-point:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.15);
  border-color: #2196F3;
}

.point-number {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.point-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.point-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .vm-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .vision-mission-section {
    padding: 80px 0;
  }
  .vm-container {
    gap: 50px;
    padding: 0 15px;
  }
  .vm-mission {
    padding: 40px 30px;
  }
  .mission-heading {
    font-size: 26px;
  }
  .mission-point {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .vision-mission-section {
    padding: 60px 0;
  }
  .vm-mission {
    padding: 30px 20px;
  }
  .mission-heading {
    font-size: 24px;
  }
  .point-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .point-content h4 {
    font-size: 16px;
  }
  .point-content p {
    font-size: 13px;
  }
}


  /* Modern FSFTI Footer Styles */
         .fsfti-footer {
            background: linear-gradient(135deg, #1a2b5f 0%, #0f1f3f 100%);
            color: #e0e0e0;
            padding-top: 60px;
         }

         .footer-main {
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
         }

         .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
         }

         .footer-column {
            display: flex;
            flex-direction: column;
         }

         .footer-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
         }

         .footer-text {
            font-size: 0.9rem;
            line-height: 1.7;
            color: #ffffffba;
            margin-bottom: 20px;
         }

         .footer-social {
            display: flex;
            gap: 15px;
         }

         .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
         }

         .social-icon:hover {
            background: #2196F3;
            border-color: #2196F3;
            transform: translateY(-3px);
         }

         .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
         }

         .footer-links a {
            color: #ffffffd4;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 0;
         }

         .footer-links a::before {
            content: '→';
            position: relative;
            opacity: 0;
            margin-right: 0;
            transition: all 0.3s ease;
            font-size: 0.75rem;
            color: #2196F3;
         }

         .footer-links a:hover {
            color: #2196F3;
         }

         .footer-links a:hover::before {
            opacity: 1;
            margin-right: 8px;
         }

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

         .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(33, 150, 243, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2196F3;
            flex-shrink: 0;
            font-size: 1rem;
         }

         .contact-content {
            display: flex;
            flex-direction: column;
         }

         .contact-label {
            font-size: 0.75rem;
            font-weight: 700;
            color: #2196F3;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
         }

         .contact-content p {
            font-size: 0.9rem;
            color: #fff;
            line-height: 1.5;
            margin: 0;
         }

         .contact-content a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
         }

         .contact-content a:hover {
            color: #64B5F6;
         }

         .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            padding: 25px 0;
         }

         .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
         }

         .footer-copyright {
            font-size: 0.9rem;
            color: #b0b0b0;
         }

         .footer-copyright p {
            margin: 0;
         }

         .footer-bottom-links {
            display: flex;
            gap: 20px;
            align-items: center;
         }

         .footer-bottom-links a {
            color: #b0b0b0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
         }

         .footer-bottom-links a:hover {
            color: #2196F3;
         }

         .divider {
            color: rgba(255, 255, 255, 0.2);
         }

         /* Responsive Footer */
         @media (max-width: 1024px) {
            .footer-grid {
               grid-template-columns: repeat(2, 1fr);
               gap: 30px;
            }
         }

         @media (max-width: 768px) {
            .fsfti-footer {
               padding-top: 40px;
            }

            .footer-grid {
               grid-template-columns: 1fr;
               gap: 30px;
            }

            .footer-bottom-content {
               flex-direction: column;
               gap: 20px;
               text-align: center;
            }

            .footer-bottom-links {
               justify-content: center;
               flex-wrap: wrap;
            }
         }

         @media (max-width: 480px) {
            .footer-title {
               font-size: 1rem;
               margin-bottom: 15px;
            }

            .footer-text {
               font-size: 0.85rem;
               margin-bottom: 15px;
            }

            .footer-links {
               gap: 10px;
            }

            .footer-links a {
               font-size: 0.85rem;
            }

            .contact-item {
               margin-bottom: 15px;
            }

            .contact-icon {
               width: 36px;
               height: 36px;
               font-size: 0.9rem;
            }

            .contact-content p {
               font-size: 0.85rem;
            }

            .footer-copyright {
               font-size: 0.85rem;
            }

            .footer-bottom-links a {
               font-size: 0.85rem;
            }
         }
         ul.footer-links {
    padding-left: 0px;
}
h2.membership-heading {
    line-height: 47px;
    font-weight: 700;
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
    z-index: 999;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(33, 150, 243, 0.4);
}

.back-to-top-btn:active {
    transform: translateY(-2px);
}

.back-to-top-btn svg {
    width: 24px;
    height: 24px;
    animation: bounce-arrow 1.5s ease-in-out infinite;
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .back-to-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .back-to-top-btn {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

    .back-to-top-btn svg {
        width: 18px;
        height: 18px;
    }
}

  /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 100px 0 80px;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.95;
        }


        .contact-form-wrapper{
          border: 1px solid #264b8c40;
          padding: 20px;
          border-radius: 10px;
        }
        .card-content.newsss {
    padding: 0px;
}
.bg-light-color{
      background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
      padding:50px 0px;
}
.vision-content h2{
  line-height: 44px;
}
.hero-content{
  padding: 50px 0px;
}


.colored-text{
  color: #1a2b5f;
}


/* ===== MODERN NEWS & EVENTS SECTION ===== */
.modern-news-events {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
  overflow: hidden;
}

.modern-news-events::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.modern-news-events::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(25, 118, 210, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Header Section */
.news-events-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
  animation: slideInUp 0.6s ease;
}

.news-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #2196F3;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding: 8px 20px;
  background: rgba(33, 150, 243, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(33, 150, 243, 0.2);
}

.news-main-heading {
  font-size: 56px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.news-subtitle {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layout */
.news-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  position: relative;
  z-index: 1;
}

/* Card Styles */
.news-event-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: slideInUp 0.6s ease backwards;
}

.news-event-card:nth-child(1) { animation-delay: 0.1s; }
.news-event-card:nth-child(2) { animation-delay: 0.2s; }
.news-event-card:nth-child(3) { animation-delay: 0.3s; }

.news-event-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(33, 150, 243, 0.2);
}

/* Image Wrapper */
.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f0f0f0;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.news-event-card:hover .card-image {
  transform: scale(1.08);
}

/* Image Overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.3), rgba(25, 118, 210, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.news-event-card:hover .card-overlay {
  opacity: 1;
}

/* Category Badge */
.card-category {
  position: absolute;
  top: 15px;
  right: 15px;
  display: inline-block;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
  transition: all 0.3s ease;
}

.news-event-card:hover .card-category {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(33, 150, 243, 0.4);
}

/* Card Body */
.card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-grow: 1;
}

/* Date */
.card-date {
  font-size: 13px;
  font-weight: 700;
  color: #2196F3;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Title */
.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.news-event-card:hover .card-title {
  color: #2196F3;
}

/* Description */
.card-description {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

/* Read More Link */
.card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2196F3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 10px;
}

.card-read-more:hover {
  gap: 15px;
  color: #1976D2;
}

.card-read-more svg {
  transition: transform 0.3s ease;
}

.card-read-more:hover svg {
  transform: translateX(3px);
}

/* Animations */
@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .news-events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .news-main-heading {
    font-size: 42px;
  }

  .news-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .modern-news-events {
    padding: 60px 0;
  }

  .news-events-header {
    margin-bottom: 50px;
  }

  .news-events-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .news-main-heading {
    font-size: 32px;
  }

  .news-subtitle {
    font-size: 15px;
  }

  .card-image-wrapper {
    height: 220px;
  }

  .card-body {
    padding: 25px;
    gap: 12px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-description {
    font-size: 14px;
  }

  .modern-news-events::before,
  .modern-news-events::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .modern-news-events {
    padding: 50px 0;
  }

  .news-events-header {
    margin-bottom: 40px;
  }

  .news-label {
    font-size: 12px;
    padding: 6px 16px;
  }

  .news-main-heading {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .news-subtitle {
    font-size: 14px;
  }

  .card-image-wrapper {
    height: 200px;
  }

  .card-body {
    padding: 20px;
    gap: 10px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-description {
    font-size: 13px;
  }

  .card-date {
    font-size: 12px;
  }

  .card-read-more {
    font-size: 13px;
  }
}
.section-label-wrapper-pagraph{
  line-height: 50px!important;
  font-size: 38px;
}




    @media (max-width: 991px) {
      .offcanvas-header.fsfti-offcanvas-header {
    border-bottom: 1px solid #00000012;
}
          .category-card {
        padding: 0px 0px!important;
    }
      .hero-image{
        margin-top: 20px;
      }
      .vision-badge {
    position: absolute;
    top: -30px!important;
    left: 50px!important;
  }
      .vision-image-card.vision-overlay-img {
    display: none;
}
      .section-title {
    margin-bottom: 30px!important;
}
.vision-content h2{
  font-size: 24px!important;
        margin-bottom: 10px!important;
        line-height: 33px!important;
}
.platform-content h3{
  font-size: 25px!important;
        margin-bottom: 10px!important;
        line-height: 33px!important;
}
          .hero-text h1 {
        font-size: 25px!important;
        margin-bottom: 10px!important;
        line-height: 33px!important;
    }
      .hero-content {
        gap: 10px!important;
      }
      .hero-section h1 {
    font-size: 30px;
    margin-bottom: 10px;
}
      .hero-section p {
    font-size: 13px!important;
  }
      .hero-section{
            padding: 50px 0 50px;
      }
      .contact-item{
            white-space: normal!important;
      }
          .contact-content p {
        font-size: 12px;
    }
      .footer-info {
    margin-top: 20px;
}
      .agenda-section{
        margin-top: 30px;
      }
      .upcoming-eventsss {
    width: 100%;
}
      .cards-graid-news {
    margin-top: 40px;
}
      .leader-box {
    margin-top: 10px;
}
      .top-header {
    display: none;
}
.chapters-carousel{
  display: none;
}
li.news-item {
    padding: 10px 30px !important;
}
.news-item{
  border-left: none!important;
}
div#heroTextContent {
    padding: 0px 50px;
}
    }


/* ===== MODERN MOBILE SIDEBAR ===== */
.fsfti-offcanvas {
  /* background: linear-gradient(135deg, #1a2b5f 0%, #0f1f3f 100%); */
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.fsfti-offcanvas-header {
  padding: 30px 20px;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 120px;
}

.sidebar-logo-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-logo {
  max-width: 120px;
  height: auto;
  display: block;
}







.fsfti-offcanvas-body {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow-y: auto;
}

/* Sidebar Navigation */
.sidebar-nav {
  flex: 1;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-menu-item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-menu-link {
  display: block;
  padding: 16px 0;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
  position: relative;
}

.sidebar-menu-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #2196F3, #64B5F6);
  transition: width 0.3s ease;
}

.sidebar-menu-link:hover {
  color: white;
  padding-left: 10px;
}

.sidebar-menu-link:hover::before {
  width: 30px;
}

.sidebar-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(33, 150, 243, 0.1);
  border-radius: 8px;
  margin-top: 8px;
  overflow: hidden;
}

.sidebar-menu-item.active .sidebar-submenu {
  display: flex;
}

.sidebar-submenu li {
  list-style: none;
}

.sidebar-submenu a {
  display: block;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.sidebar-submenu a:hover {
  color: #64B5F6;
  background: rgba(33, 150, 243, 0.15);
  border-left-color: #64B5F6;
  padding-left: 20px;
}

/* Become a Member Button */
.sidebar-cta {
  margin: 20px 0;
}

.sidebar-member-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
  border: 2px solid transparent;
}

.sidebar-member-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(33, 150, 243, 0.4);
  background: linear-gradient(135deg, #1976D2, #1565C0);
}

.sidebar-member-btn:active {
  transform: translateY(-1px);
}

.btn-icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-text {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Social Media Section */
.sidebar-social {
  padding-top: 20px;
}

.sidebar-social-title {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.sidebar-social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sidebar-social-icon {
  width: 45px;
  height: 45px;
     background: rgb(0 0 0 / 5%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sidebar-social-icon:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4);
}

.sidebar-social-icon.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.sidebar-social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #e6683c;
  box-shadow: 0 8px 20px rgba(230, 104, 60, 0.3);
}

.sidebar-social-icon.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  box-shadow: 0 8px 20px rgba(29, 161, 242, 0.3);
}

.sidebar-social-icon svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.sidebar-social-icon:hover svg {
  transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .fsfti-offcanvas-header {
    padding: 25px 15px;
    min-height: 100px;
  }

  .sidebar-logo {
    max-width: 100px;
  }

  .fsfti-offcanvas-body {
    padding: 25px 15px;
    gap: 35px;
  }

  .sidebar-menu-link {
    padding: 14px 0;
    font-size: 15px;
  }

  .sidebar-member-btn {
    padding: 14px 16px;
    font-size: 15px;
  }

  .sidebar-social-icon {
    width: 40px;
    height: 40px;
  }

  .sidebar-social-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .fsfti-offcanvas-header {
    padding: 20px 12px;
    min-height: 90px;
  }

  .sidebar-logo {
    max-width: 240px;
  }

  .fsfti-btn-close {
    width: 36px;
    height: 36px;
  }

  .fsfti-offcanvas-body {
    padding: 20px 12px;
    gap: 30px;
  }

  .sidebar-menu-link {
    padding: 12px 0;
    font-size: 14px;
  }

  .sidebar-submenu a {
    padding: 10px 14px;
    font-size: 13px;
  }

  .sidebar-member-btn {
    padding: 12px 14px;
    font-size: 14px;
    gap: 10px;
  }

  .btn-icon {
    font-size: 18px;
  }

  .sidebar-social-title {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .sidebar-social-links {
    gap: 10px;
  }

  .sidebar-social-icon {
    width: 38px;
    height: 38px;
  }

  .sidebar-social-icon svg {
    width: 16px;
    height: 16px;
  }
}


/* ===== MEDIA GALLERY SECTION ===== */
.media-gallery-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
  overflow: hidden;
}

.media-gallery-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.media-gallery-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(25, 118, 210, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
  z-index: 1;
}

/* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1;
  background: #f0f0f0;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: slideInUp 0.6s ease backwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.15s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.25s; }
.gallery-item:nth-child(5) { animation-delay: 0.3s; }
.gallery-item:nth-child(6) { animation-delay: 0.35s; }
.gallery-item:nth-child(7) { animation-delay: 0.4s; }
.gallery-item:nth-child(8) { animation-delay: 0.45s; }

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(33, 150, 243, 0.2);
}

/* Gallery Image */
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.4), rgba(25, 118, 210, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* View Icon */
.view-icon {
  font-size: 48px;
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===== LIGHTBOX POPUP ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* Lightbox Content */
.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInUp 0.4s ease;
}

/* Lightbox Image Container */
.lightbox-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Close Button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

/* Navigation Buttons */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-nav svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

/* Image Counter */
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
}

/* Animations */
@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .lightbox-content {
    height: 70vh;
  }

  .lightbox-nav {
    width: 50px;
    height: 50px;
  }

  .lightbox-nav svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 768px) {
  .media-gallery-section {
    padding: 60px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .lightbox-content {
    width: 95%;
    height: 60vh;
  }

  .lightbox-close {
    width: 45px;
    height: 45px;
    top: 15px;
    right: 15px;
  }

  .lightbox-close svg {
    width: 20px;
    height: 20px;
  }

  .lightbox-nav {
    width: 45px;
    height: 45px;
  }

  .lightbox-nav svg {
    width: 24px;
    height: 24px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-counter {
    font-size: 14px;
    padding: 10px 20px;
    bottom: 15px;
  }

  .media-gallery-section::before,
  .media-gallery-section::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .media-gallery-section {
    padding: 50px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .lightbox-content {
    width: 100%;
    height: 50vh;
  }

  .lightbox-close {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }

  .lightbox-close svg {
    width: 18px;
    height: 18px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-nav svg {
    width: 20px;
    height: 20px;
  }

  .lightbox-prev {
    left: 5px;
  }

  .lightbox-next {
    right: 5px;
  }

  .lightbox-counter {
    font-size: 12px;
    padding: 8px 16px;
    bottom: 10px;
  }
}


/* ===== PRIVACY POLICY PAGE ===== */
.privacy-policy-section {
  padding: 60px 0;
  background: #fff;
}

.privacy-policy-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 50px 0 25px 0;
  line-height: 1.3;
  letter-spacing: -0.5px;
  padding-top: 20px;
  border-top: 2px solid rgba(33, 150, 243, 0.1);
}

.privacy-policy-section h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.privacy-policy-section h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 30px 0 15px 0;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.privacy-policy-section p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 18px 0;
  letter-spacing: 0.3px;
}

.privacy-policy-section ul {
  margin: 0 0 20px 0;
  padding-left: 25px;
}

.privacy-policy-section ul li {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin: 0 0 12px 0;
  list-style-type: disc;
  letter-spacing: 0.3px;
}

.privacy-policy-section ul li:last-child {
  margin-bottom: 0;
}

.privacy-policy-section strong {
  color: #2196F3;
  font-weight: 700;
}

.privacy-policy-section .text-muted {
  font-size: 14px;
  color: #999;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

.privacy-policy-section hr {
  margin: 50px 0;
  border: none;
  border-top: 2px solid rgba(33, 150, 243, 0.15);
}

@media (max-width: 768px) {
  .privacy-policy-section {
    padding: 50px 0;
  }

  .privacy-policy-section h2 {
    font-size: 26px;
    margin: 40px 0 20px 0;
  }

  .privacy-policy-section h4 {
    font-size: 18px;
    margin: 25px 0 12px 0;
  }

  .privacy-policy-section p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .privacy-policy-section ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
  }

  .privacy-policy-section hr {
    margin: 40px 0;
  }
}

@media (max-width: 480px) {
  .privacy-policy-section {
    padding: 40px 0;
  }

  .privacy-policy-section h2 {
    font-size: 22px;
    margin: 35px 0 18px 0;
  }

  .privacy-policy-section h4 {
    font-size: 16px;
    margin: 20px 0 10px 0;
  }

  .privacy-policy-section p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 14px;
  }

  .privacy-policy-section ul {
    padding-left: 20px;
  }

  .privacy-policy-section ul li {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
  }

  .privacy-policy-section hr {
    margin: 35px 0;
  }
}
