.legalheading {
  text-decoration-color: #219cd6;
}

.auction-table {
  height: 290px;
  overflow-y: auto;
  max-height: 290px;
}

.legal-table {
  height: 870px;
  overflow-y: auto;
  max-height: 870px;
}

.custom-box {
  padding: 40px;
  background-color: #40aee27a;
  border-radius: 10px;
}

.single-fun-fact h6 {
  color: #fff;
  padding: 0px 10px;
  text-align: center;
  font-weight: 700;
  text-shadow: 0px 5px 8px #000000;
  min-height: 100px;
}

.legal-table h6 {
  background: #3b9bd6;
  color: #ffffff;
  padding: 8px 5px;
  font-size: 16px;
  margin-top: 0px;
}

.legal-table::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.legal-table::-webkit-scrollbar {
  width: 5px;
  background-color: #3b9bd6;
}

.legal-table::-webkit-scrollbar-thumb {
  background-color: #000000;
  border: 2px solid #3b9bd6;
}

.unstyled-button {
  border: none;
  padding: 0;
  background: none;
}

/* ============================================
 FIX 1: SCROLL ISSUES 
 ============================================ */

/* Remove conflicting scroll constraints */
html {
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  height: auto;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  position: relative;
  padding-top: 90px;
}

/* Fix Swiper container to prevent scroll blocking */
.swiper-container {
  /* touch-action: pan-y !important; */
  -ms-touch-action: pan-y !important;
  /* overflow: visible !important; */
}

/* Ensure sections don't block scrolling */
.wrap,
.section,
section {
  height: auto !important;
  min-height: auto;
  overflow: visible !important;
  position: relative;
}

/* Fix for the hero section specifically */
.hero.swiper-slider-1 {
  height: calc(100vh - 90px);
  /*max-height: 800px;*/
  overflow: hidden;
}

/* Container fixes */
.container,
.container-fluid {
  overflow: visible !important;
}

/* Additional scroll fixes */
* {
  box-sizing: border-box;
}

/* Ensure main content can scroll */
main,
.main-content {
  overflow: visible !important;
  height: auto !important;
}

/* Fix for any fixed positioning that might block scroll */
.fixed,
.position-fixed {
  z-index: 1000;
}

/* Remove any height constraints that might block scrolling */
.no-scroll {
  overflow: visible !important;
  height: auto !important;
}

/* ============================================
 FIX 2: NAVIGATION RESPONSIVE ISSUES
 ============================================ */

/* Base navigation styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.site-header.small-height {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.site-header.small-height .header-wrap {
  padding: 10px 0;
}

.header-wrap {
  padding: 15px 0;
  transition: all 0.3s ease;
}

.header-wrap .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

/* Logo responsive sizing */
.site-branding {
  flex-shrink: 0;
  z-index: 10;
}

.custom-logo {
  max-height: 60px;
  width: auto;
  display: block;
}

/* Navigation container */
.primary-nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: calc(100% - 200px);
}

/* Navigation list - Desktop */
.primary-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.primary-nav-list li {
  margin: 0 5px;
  position: relative;
}

.primary-nav-list li a {
  color: #333;
  text-decoration: none;
  padding: 8px 10px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.primary-nav-list li a:hover,
.primary-nav-list li.active a,
.primary-nav-list li.current-menu-item a,
.primary-nav-list li.current-menu-ancestor a {
  color: #219cd6;
}

/* Hamburger Button */
.m-menu-btn {
  display: none;
  width: 30px !important;
  height: 24px !important;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 10;
  overflow: hidden;
  flex-shrink: 0;
}

.m-menu-btn span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: transform 0.25s ease-in-out, top 0.25s ease-in-out,
    opacity 0.25s ease-in-out;
  transform-origin: center center;
}

.m-menu-btn span:nth-child(1) {
  top: 0px;
}

.m-menu-btn span:nth-child(2) {
  top: 10px;
}

.m-menu-btn span:nth-child(3) {
  top: 20px;
}

.m-menu-btn.m-menu-btn-ext span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.m-menu-btn.m-menu-btn-ext span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.m-menu-btn.m-menu-btn-ext span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* Laptop/Small Desktop Specific (992px - 1366px) */
@media (min-width: 992px) and (max-width: 1366px) {
  .header-wrap .container-fluid {
    padding: 0 10px;
  }

  .custom-logo {
    max-height: 50px;
  }

  .primary-nav-list li {
    margin: 0 3px;
  }

  .primary-nav-list li a {
    padding: 6px 8px;
    font-size: 12px;
  }

  .header-wrap {
    padding: 10px 0;
  }

  body {
    padding-top: 70px;
  }

  .site-header.small-height .header-wrap {
    padding: 8px 0;
  }
}

/* Medium Desktop (1367px - 1599px) */
@media (min-width: 1367px) and (max-width: 1599px) {
  .primary-nav-list li {
    margin: 0 6px;
  }

  .primary-nav-list li a {
    padding: 8px 10px;
    font-size: 13px;
  }
}

/* Mobile Display */
@media (max-width: 991px) {
  .m-menu-btn {
    display: block !important;
  }

  .primary-nav-list {
    display: none;
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 9998;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
  }

  .primary-nav-list li {
    margin: 0;
    border-bottom: 1px solid #eee;
    width: 100%;
  }

  .primary-nav-list li a {
    padding: 15px 20px;
    font-size: 15px;
    white-space: normal;
    color: #000 !important;
  }

  body {
    padding-top: 80px;
  }
}

/* Fix for scroll offset with fixed header */
section[id] {
  scroll-margin-top: 90px;
}

@media (max-width: 991px) {
  section[id] {
    scroll-margin-top: 80px;
  }
}

@media (min-width: 992px) and (max-width: 1366px) {
  section[id] {
    scroll-margin-top: 70px;
  }
}

/* ============================================
 BOARD MEMBERS SECTION STYLES
 ============================================ */
.member {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.member-img {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

.member-img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.member:hover .member-img img {
  transform: scale(1.05);
}

/* Static name and designation display */
.member-info {
  padding: 20px;
  text-align: center;
  background: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.member-info h3 {
  color: #333;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.member-info p {
  color: #666;
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.member-info .pcenter {
  text-align: center;
}

/* Member actions section */
.member-actions {
  padding: 0 20px 20px;
  text-align: center;
  background: #fff;
}

.member-actions .know-more-btn {
  width: 100%;
  max-width: 220px;
}

/* Know More Button Styling */
.know-more-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #219cd6;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.know-more-btn:hover {
  background: #1a7fb5;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(33, 156, 214, 0.3);
}

/* Ensure consistent height in carousel */
.member-carousel .member {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.member-carousel .member-img {
  flex-shrink: 0;
}
/* Removed duplicate styles - consolidated below */
/* Responsive adjustments */
@media (max-width: 768px) {
  .member-info h3 {
    font-size: 18px;
  }

  .member-info p {
    font-size: 13px;
  }

  .know-more-btn {
    font-size: 13px;
    padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  .member-info {
    padding: 15px;
  }

  .member-actions {
    padding: 0 15px 15px;
  }

  .member-info h3 {
    font-size: 16px;
  }

  .member-info p {
    font-size: 12px;
  }
}
/* ============================================
 MEMBER CAROUSEL STYLES - CONSOLIDATED
 ============================================ */

/* Main carousel container */
.member-carousel {
  position: relative;
  overflow: visible;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Navigation arrows container */
.member-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  margin-top: 0 !important;
  transform: translateY(-50%);
  z-index: 15;
  padding: 0 20px;
  left: 0;
  right: 0;
}

/* Navigation button styling */
.member-carousel .owl-nav button {
  pointer-events: all !important;
  background: #219cd6 !important;
  color: #fff !important;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 18px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 0 !important;
  cursor: pointer !important;
  position: relative;
  z-index: 20;
}

/* Navigation button hover effect */
.member-carousel .owl-nav button:hover {
  background: #1a7fb5 !important;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Navigation icon styling */
.member-carousel .owl-nav i {
  font-size: 20px;
  color: #000000 !important;
  background: #ffffff !important;
  border-radius: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  display: inline-block;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}

/* Previous button positioning - less extreme */
.member-carousel .owl-prev {
  margin-left: 0;
  left: 0;
}

/* Next button positioning - less extreme */
.member-carousel .owl-next {
  margin-right: 0;
  right: 0;
}

/* Additional navigation fixes */
.member-carousel .owl-nav button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(33, 156, 214, 0.3);
}

.member-carousel .owl-nav button:active {
  transform: scale(0.95);
}

/* Ensure navigation is always visible and clickable */
.member-carousel .owl-nav {
  pointer-events: auto !important;
}

.member-carousel .owl-nav button {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.member-carousel .owl-nav button:hover {
  opacity: 1;
}

/* Responsive navigation adjustments */
@media (max-width: 768px) {
  .member-carousel .owl-nav {
    display: flex !important;
  }
  
  .member-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .member-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .member-carousel .owl-nav {
    padding: 0 15px;
  }
}

@media (min-width: 1025px) {
  .member-carousel .owl-nav {
    padding: 0 30px;
  }
}

/* ============================================
 HERO SWIPER SLIDER UI IMPROVEMENTS
 ============================================ */

/* Enhanced Swiper Container - FIXED for full image display */
.hero.swiper-slider-1 {
  position: relative;
  width: 100%;
  /* height: calc(100vh - 90px); */
  /* min-height: 600px; */
  /* max-height: 900px; */
  overflow: hidden;
}

.hero.swiper-slider-1 .swiper-container {
  /* position: relative !important; */
  width: 100% !important;
  /* height: 100% !important; */
  /* min-height: 100% !important; */
  /* overflow: hidden; */
}

/* Override base swiper styles that might cause issues */
.hero.swiper-slider-1 .swiper-wrapper {
  height: 100% !important;
  min-height: 100% !important;
}

/* Improved Image Handling - FIXED for full image display */
.hero.swiper-slider-1 .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

.hero.swiper-slider-1 .slide-inner {
  /* position: relative; */
  width: 100%;
  /* height: 100%; */
  /* min-height: 100%; */
  display: block;
}

.hero.swiper-slider-1 .swiper-bg-img {
  /* position: absolute !important; */
  /* top: 0 !important; */
  /* left: 0 !important; */
  /* width: 100% !important; */
  /* height: 100% !important; */
  /* min-height: 100% !important; */
  /* overflow: hidden; */
  /* z-index: 0; */
  /* background-size: cover; */
  /* background-position: center center; */
}

.hero.swiper-slider-1 .swiper-bg-img img {
  /* position: absolute !important; */
  /* top: 0 !important; */
  /* left: 0 !important; */
  /* width: 100% !important; */
  /* height: 100% !important; */
  /* min-width: 100% !important; */
  /* min-height: 100% !important; */
  /* object-fit: cover !important; */
  /* object-position: center center !important; */
  /* display: block !important; */
  /* transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); */
  -o-object-fit: cover !important;
}

/* Ensure images cover full area on all slides */
.hero.swiper-slider-1 .swiper-slide .swiper-bg-img,
.hero.swiper-slider-1 .swiper-slide-duplicate .swiper-bg-img {
  /* width: 100% !important; */
  /* height: 100% !important; */
}

.hero.swiper-slider-1 .swiper-slide .swiper-bg-img img,
.hero.swiper-slider-1 .swiper-slide-duplicate .swiper-bg-img img {
  /* width: 100% !important; */
  /* height: 100% !important; */
  /* object-fit: cover !important; */
}

/* Zoom effect on active slide */
.hero.swiper-slider-1 .swiper-slide-active .swiper-bg-img img {
  /* transform: scale(1.05); */
}

/* Enhanced Gradient Overlay for Better Text Readability */
.hero.swiper-slider-1 .gradient-overlay {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* width: 100%; */
  /* height: 100%; */
  /* z-index: 1; */
  /* background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.1) 50%,
      rgba(0, 0, 0, 0.4) 100%
  ); */
  /* transition: opacity 0.6s ease; */
}

/* Darker overlay on mobile for better text contrast */
@media (max-width: 768px) {
  .hero.swiper-slider-1 .gradient-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.6) 100%
    );
  }
}

/* Improved Slider Text Container */
.hero.swiper-slider-1 .slider-text {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  padding: 50px 45px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
}

/* Active slide text animation */
.hero.swiper-slider-1 .swiper-slide-active .slider-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* Enhanced Typography */
.hero.swiper-slider-1 .slider-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #1a1a1a;
  letter-spacing: 1px;
  text-shadow: none;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero.swiper-slider-1 .slider-text h2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
  color: #333;
  max-width: 100%;
  animation: fadeInUp 0.8s ease 0.7s both;
}

/* Text Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Typography */
@media (max-width: 991px) {
  .hero.swiper-slider-1 .slider-text {
    padding: 40px 35px;
    max-width: 90%;
  }

  .hero.swiper-slider-1 .slider-text h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .hero.swiper-slider-1 .slider-text h2 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero.swiper-slider-1 .slider-text {
    padding: 30px 25px;
    max-width: 95%;
    border-radius: 8px;
  }

  .hero.swiper-slider-1 .slider-text h1 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
  }

  .hero.swiper-slider-1 .slider-text h2 {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .hero.swiper-slider-1 .slider-text {
    padding: 25px 20px;
  }

  .hero.swiper-slider-1 .slider-text h1 {
    font-size: 24px;
  }

  .hero.swiper-slider-1 .slider-text h2 {
    font-size: 14px;
  }
}

/* Desktop/Mobile Image Switching */
.hero.swiper-slider-1 .swiper-bg-img .desk-banner {
  /* display: block; */
}

.hero.swiper-slider-1 .swiper-bg-img .mob-banner {
  display: none;
}

@media (max-width: 768px) {
  .hero.swiper-slider-1 .swiper-bg-img .desk-banner {
    display: none;
  }

  .hero.swiper-slider-1 .swiper-bg-img .mob-banner {
    display: block;
  }
}

/* Improved Container Positioning */
.hero.swiper-slider-1 .container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  z-index: 3;
  margin-top: 0;
}

@media (max-width: 768px) {
  .hero.swiper-slider-1 .container {
    padding: 0 15px;
  }
}

/* Enhanced Navigation Arrows - ALWAYS VISIBLE */
.hero.swiper-slider-1 .swiper-controler {
  position: absolute;
  /* right: 30px; */
  /* bottom: 30px; */
  z-index: 10;
  /* display: block !important; */
  /* display: flex; */
  /* align-items: center; */
  top: 50%;
  width: 100%;
}

.hero.swiper-slider-1 .swiper-arrow {
  display: flex !important;
  gap: 15px;
  z-index: 10;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}

.hero.swiper-slider-1 .swiper-arrow-left,
.hero.swiper-slider-1 .swiper-arrow-right {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  opacity: 0.9;
  pointer-events: all;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero.swiper-slider-1 .swiper-container:hover .swiper-arrow-left,
.hero.swiper-slider-1 .swiper-container:hover .swiper-arrow-right {
  opacity: 1;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.hero.swiper-slider-1 .swiper-arrow-left:hover,
.hero.swiper-slider-1 .swiper-arrow-right:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: rgba(33, 156, 214, 0.3);
}

.hero.swiper-slider-1 .swiper-arrow-left:active,
.hero.swiper-slider-1 .swiper-arrow-right:active {
  transform: scale(0.95);
}

.hero.swiper-slider-1 .swiper-arrow-left i,
.hero.swiper-slider-1 .swiper-arrow-right i {
  color: #219cd6;
  font-size: 24px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.hero.swiper-slider-1 .swiper-arrow-left:hover i,
.hero.swiper-slider-1 .swiper-arrow-right:hover i {
  color: #1a7fb5;
}

/* Navigation on mobile - smaller but visible */
@media (max-width: 768px) {
  .hero.swiper-slider-1 .swiper-controler {
    right: 15px;
    bottom: 20px;
    display: block !important;
  }

  .hero.swiper-slider-1 .swiper-arrow {
    gap: 10px;
  }

  .hero.swiper-slider-1 .swiper-arrow-left,
  .hero.swiper-slider-1 .swiper-arrow-right {
    width: 40px;
    height: 40px;
    opacity: 0.85;
  }

  .hero.swiper-slider-1 .swiper-arrow-left i,
  .hero.swiper-slider-1 .swiper-arrow-right i {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero.swiper-slider-1 .swiper-controler {
    right: 10px;
    bottom: 15px;
  }

  .hero.swiper-slider-1 .swiper-arrow-left,
  .hero.swiper-slider-1 .swiper-arrow-right {
    width: 36px;
    height: 36px;
  }

  .hero.swiper-slider-1 .swiper-arrow-left i,
  .hero.swiper-slider-1 .swiper-arrow-right i {
    font-size: 18px;
  }
}

/* Optional: Pagination Dots Styling (if you want to add them) */
.hero.swiper-slider-1 .swiper-pagination {
  bottom: 30px !important;
  z-index: 10;
}

.hero.swiper-slider-1 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 6px;
}

.hero.swiper-slider-1 .swiper-pagination-bullet-active {
  background: #219cd6;
  width: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(33, 156, 214, 0.5);
}

/* Smooth Slide Transitions */
.hero.swiper-slider-1 .swiper-slide {
  transition: opacity 0.6s ease;
}

/* Height Management - Already defined above, removed duplicate */

@media (max-width: 768px) {
  .hero.swiper-slider-1 {
    height: calc(100vh - 80px);
    min-height: 500px;
    max-height: 700px;
  }

  /* Ensure images display fully on mobile */
  .hero.swiper-slider-1 .swiper-bg-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

@media (max-width: 480px) {
  .hero.swiper-slider-1 {
    min-height: 450px;
    max-height: 600px;
  }
}

/* Performance Optimization */
.hero.swiper-slider-1 .swiper-slide {
  will-change: transform, opacity;
}

.hero.swiper-slider-1 .swiper-bg-img {
  /* will-change: transform; */
}

/* Removed duplicate responsive rule - consolidated below */
/* Modal Styling Improvements */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: #fefefe;
  margin: 50px auto;
  padding: 0;
  border: 1px solid #888;
  width: 90%;
  max-width: 900px;
  border-radius: 8px;
  animation: slideIn 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  padding: 20px;
  background: #219cd6;
  color: #fff;
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h4 {
  margin: 0;
  font-size: 24px;
}

.modal-body {
  padding: 30px;
}

.modal .close {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s;
}

.modal .close:hover,
.modal .close:focus {
  transform: rotate(90deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 20px auto;
  }

  .modal-body .row {
    flex-direction: column;
  }

  .modal-body .col-md-4,
  .modal-body .col-md-8 {
    width: 100%;
  }
  .modal-header h4 {
    font-size: 15px;
  }
  .modal-body h5 {
    font-size: 15px;
  }
}

/* Journey Carousel Styles */
.journey-carousel .journey-slide,
.single-journey-wrapper .journey-slide {
  padding: 0 15px;
}

.journey-carousel .journey-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.journey-carousel .journey-item:hover img {
  transform: scale(1.03);
}

/* Single Journey Item - Centered */
.single-journey-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  /* max-width: 600px; */
  margin: 0 auto;
}

.single-journey-wrapper .col-md-6 {
  width: 100%;
  /* max-width: 600px; */
}

/* Journey Swiper Slider Styles */
.journey-swiper-container {
  position: relative;
  /* padding: 0 50px; */
}

.journey-swiper-container .swiper-slide {
  opacity: 1;
}

.journey-slide-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.journey-image {
  width: 100%;
  max-width: 800px;
}

.journey-swiper-container .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
  display: block;
}

.journey-swiper-container .swiper-slide:hover img {
  transform: scale(1.02);
}

/* Journey Swiper Navigation */
.journey-swiper-controler {
  position: absolute;
  /* right: 30px; */
  /* bottom: 30px; */
  z-index: 10;
  /* display: block !important; */
  /* display: flex; */
  /* align-items: center; */
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.journey-swiper-arrow {
  display: flex !important;
  gap: 15px;
  z-index: 10;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  padding: 0 20px;
}

.journey-swiper-arrow-left,
.journey-swiper-arrow-right {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  opacity: 0.9;
  pointer-events: all;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.journey-swiper-container:hover .journey-swiper-arrow-left,
.journey-swiper-container:hover .journey-swiper-arrow-right {
  opacity: 1;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.journey-swiper-arrow-left:hover,
.journey-swiper-arrow-right:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: rgba(33, 156, 214, 0.3);
}

.journey-swiper-arrow-left:active,
.journey-swiper-arrow-right:active {
  transform: scale(0.95);
}

.journey-swiper-arrow-left i,
.journey-swiper-arrow-right i {
  color: #219cd6;
  font-size: 24px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.journey-swiper-arrow-left:hover i,
.journey-swiper-arrow-right:hover i {
  color: #1a7fb5;
}

/* Journey Swiper Pagination */
.journey-swiper-pagination {
  text-align: center;
  margin-top: 20px;
  position: relative;
}

.journey-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.journey-swiper-pagination .swiper-pagination-bullet-active {
  background: #219cd6;
  width: 30px;
  border-radius: 15px;
}

/* Service Swiper Slider Styles (Inside Tabs) */
.service-swiper-container {
  position: relative;
  padding: 0 50px;
}

.service-swiper-container .swiper-slide {
  opacity: 1;
}

/* Service Swiper Navigation */
.service-swiper-controler {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 10;
}

.service-swiper-arrow {
  display: flex !important;
  gap: 15px;
  z-index: 10;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  padding: 0 20px;
}

.service-swiper-arrow-left,
.service-swiper-arrow-right {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  opacity: 0.9;
  pointer-events: all;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.service-swiper-container:hover .service-swiper-arrow-left,
.service-swiper-container:hover .service-swiper-arrow-right {
  opacity: 1;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.service-swiper-arrow-left:hover,
.service-swiper-arrow-right:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: rgba(33, 156, 214, 0.3);
}

.service-swiper-arrow-left:active,
.service-swiper-arrow-right:active {
  transform: scale(0.95);
}

.service-swiper-arrow-left i,
.service-swiper-arrow-right i {
  color: #219cd6;
  font-size: 24px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.service-swiper-arrow-left:hover i,
.service-swiper-arrow-right:hover i {
  color: #1a7fb5;
}

/* Service Swiper Pagination */
.service-swiper-pagination {
  text-align: center;
  margin-top: 20px;
  position: relative;
}

.service-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.service-swiper-pagination .swiper-pagination-bullet-active {
  background: #219cd6;
  width: 30px;
  border-radius: 15px;
}

/* Journey Content (Title and Description) */
.journey-content {
  margin-top: 30px;
  text-align: center;
  padding: 0 15px;
}

.journey-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.4;
  margin-top: 0;
}

.journey-short-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Journey Swiper Slide Content */
.journey-swiper-container .swiper-slide .journey-content {
  margin-top: 25px;
}

/* Journey Actions (Know More Button) */
.journey-actions {
  margin-top: 15px;
  text-align: center;
}

.journey-actions .know-more-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #219cd6;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.journey-actions .know-more-btn:hover {
  background: #1a7fb5;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(33, 156, 214, 0.3);
}

/* Single Journey Item Content */
.journey-content {
  margin-top: 30px;
}

/* Journey Carousel Navigation */
.journey-carousel .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  transform: translateY(-50%);
}

.journey-carousel .owl-nav button {
  position: absolute;
  background: #219cd6 !important;
  color: #fff !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.journey-carousel .owl-prev {
  left: -20px;
}

.journey-carousel .owl-next {
  right: -20px;
}

.journey-carousel .owl-nav button:hover {
  background: #1a7fb5 !important;
  transform: scale(1.1);
}

.journey-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.journey-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  transition: all 0.3s ease;
}

.journey-carousel .owl-dot.active {
  background: #219cd6;
  width: 30px;
  border-radius: 15px;
}

/* Sponsor Carousel Styles */
.sponsor-carousel .sponsor-slide,
.single-sponsor-wrapper .sponsor-slide {
  padding: 0 15px;
}

/* Single Sponsor Item - Centered */
.single-sponsor-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  /* max-width: 500px; */
  margin: 0 auto;
}

.single-sponsor-wrapper .col-lg-5 {
  width: 100%;
  max-width: 500px;
}

/* Sponsor Carousel Navigation */
.sponsor-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.sponsor-carousel .owl-nav button {
  position: absolute;
  background: #219cd6 !important;
  color: #fff !important;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.sponsor-carousel .owl-prev {
  left: -25px;
}

.sponsor-carousel .owl-next {
  right: -25px;
}

.sponsor-carousel .owl-nav button:hover {
  background: #1a7fb5 !important;
  transform: scale(1.1);
}

.sponsor-carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.sponsor-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  transition: all 0.3s ease;
}

.sponsor-carousel .owl-dot.active {
  background: #219cd6;
  width: 35px;
  border-radius: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .journey-carousel .owl-nav,
  .sponsor-carousel .owl-nav {
    display: none;
  }

  .single-journey-wrapper,
  .single-sponsor-wrapper {
    padding: 0 15px;
  }

  .journey-swiper-container {
    padding: 0 15px;
  }

  .journey-slide-content {
    gap: 15px;
  }

  .journey-image {
    max-width: 100%;
  }

  .journey-swiper-controler {
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
  }

  .journey-swiper-arrow {
    gap: 10px;
    padding: 0 10px;
  }

  .journey-swiper-arrow-left,
  .journey-swiper-arrow-right {
    width: 40px;
    height: 40px;
    opacity: 0.85;
  }

  .journey-swiper-arrow-left i,
  .journey-swiper-arrow-right i {
    font-size: 20px;
  }

  .service-swiper-container {
    padding: 0 15px;
  }

  .service-swiper-controler {
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
  }

  .service-swiper-arrow {
    gap: 10px;
    padding: 0 10px;
  }

  .service-swiper-arrow-left,
  .service-swiper-arrow-right {
    width: 40px;
    height: 40px;
    opacity: 0.85;
  }

  .service-swiper-arrow-left i,
  .service-swiper-arrow-right i {
    font-size: 20px;
  }

  .journey-content {
    margin-top: 20px;
    padding: 0 10px;
  }

  .journey-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .journey-short-desc {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .journey-swiper-arrow {
    padding: 0 5px;
  }

  .journey-swiper-arrow-left,
  .journey-swiper-arrow-right {
    width: 36px;
    height: 36px;
  }

  .journey-swiper-arrow-left i,
  .journey-swiper-arrow-right i {
    font-size: 18px;
  }
}

.home-entry-content:before {
  display: none;
}
/* Our SPONSORs: thumbnail above name */
.home-single-blog .home-blog-thumb {
  margin-bottom: 10px;
}
.home-single-blog .home-blog-thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .table-responsive{
    overflow-y: scroll !important;
  }
}