/* HERO SECTION */
/* Asymmetrical Hero Section Styles */
.hero-overlay {
  background: linear-gradient(135deg,
      rgba(0, 34, 51, 0.85) 0%,
      rgba(0, 0, 0, 0.65) 30%);
  z-index: 1;
}

.hero-content-card {
  position: relative;
  padding: 3rem 2rem 3rem 0;
  z-index: 2;
}

.hero-shape-bg {
  position: absolute;
  top: -30px;
  left: -30px;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  background: linear-gradient(135deg,
      rgba(0, 34, 51, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 100%);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 85%);
  z-index: -1;
  backdrop-filter: blur(10px);
  border-left: 4px solid #88602d;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title-line {
  display: block;
}

.gradient-text {
  background: linear-gradient(90deg, #ddbc93 0%, #88602d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  text-shadow: 0 5px 15px rgba(136, 96, 45, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: 90%;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.primary-cta {
  background: linear-gradient(90deg, #88602d 0%, #ddbc93 100%);
  border: none;
  padding: 0.8rem 2rem;
  transform: translateY(0);
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(136, 96, 45, 0.3);
}

.primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(136, 96, 45, 0.4);
}

.secondary-cta {
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 0.8rem 2rem;
  transition: all 0.3s ease;
}

.secondary-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Decorative Elements for Asymmetry */
.hero-decorative-elements {
  position: relative;
  height: 100%;
}

.decorative-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
  background: radial-gradient(circle,
      rgba(136, 96, 45, 0.3) 0%,
      rgba(136, 96, 45, 0) 70%);
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 25%;
  background: radial-gradient(circle,
      rgba(29, 86, 115, 0.3) 0%,
      rgba(29, 86, 115, 0) 70%);
  animation: float 12s ease-in-out infinite;
  animation-delay: 1s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 15%;
  background: radial-gradient(circle,
      rgba(221, 188, 147, 0.3) 0%,
      rgba(221, 188, 147, 0) 70%);
  animation: float 10s ease-in-out infinite;
  animation-delay: 2s;
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-20px) translateX(10px);
  }

  100% {
    transform: translateY(0) translateX(0);
  }
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  position: relative;
}

.mouse::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    top: 10px;
  }

  100% {
    opacity: 0;
    top: 30px;
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .hero-content-card {
    padding: 2rem 1rem;
  }

  .hero-shape-bg {
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 95%);
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    max-width: 100%;
  }

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

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-shape-bg {
    left: -15px;
    top: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
  }
}

/* Upcoming Webinar Alert Styles */
.upcoming-webinar-alert {
  background: rgba(0, 34, 51, 0.8);
  border-left: 4px solid #DDBC93;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.upcoming-webinar-alert:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.webinar-badge {
  display: inline-block;
  background: #DDBC93;
  color: #002233;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 30px;
  margin-bottom: 0.75rem;
}

.webinar-title {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.webinar-meta {
  display: flex;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.btn-webinar-register {
  background: #88602D;
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-webinar-register:hover {
  background: #DDBC93;
  color: #002233;
  transform: translateX(5px);
}

/* Events Preview Card Styles */
.events-preview-card {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 320px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.events-preview-header {
  background: linear-gradient(135deg, #1D5673, #002233);
  color: white;
  padding: 1rem;
}

.events-preview-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.events-preview-body {
  padding: 1rem;
}

.event-preview-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.event-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #DDBC93;
  color: #002233;
  border-radius: 8px;
  margin-right: 1rem;
  text-align: center;
}

.event-date-badge .month {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.event-date-badge .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-preview-content {
  flex: 1;
}

.event-preview-content h5 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: #002233;
}

.event-preview-content a {
  font-size: 0.85rem;
  color: #88602D;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.event-preview-content a:hover {
  color: #1D5673;
  text-decoration: underline;
}

.events-preview-footer {
  background: rgba(221, 188, 147, 0.2);
  padding: 0.75rem 1rem;
  text-align: center;
}

.view-all-link {
  color: #1D5673;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.view-all-link:hover {
  color: #88602D;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .upcoming-webinar-alert {
    padding: 1rem;
  }

  .webinar-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .primary-cta {
    margin-right: 0 !important;
  }
}
/* Additional Responsive Adjustments for Hero Section */
/* For extra small devices (phones, 320px and up) */
@media (min-width: 320px) and (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .hero-content-card {
    padding: 1.5rem 1rem;
  }
  
  .hero-shape-bg {
    left: -10px;
    top: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
  }
  
  .upcoming-webinar-alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .webinar-title {
    font-size: 1.1rem;
  }
  
  .webinar-meta {
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.8rem;
  }
  
  .btn-webinar-register {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
  }
  
  .scroll-indicator {
    bottom: 15px;
  }
  
  .mouse {
    width: 25px;
    height: 40px;
  }
}

/* For iPhone SE specifically (320px width) */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .webinar-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
  }
  
  .webinar-title {
    font-size: 1rem;
  }
  
  .webinar-meta {
    font-size: 0.8rem;
  }
  
  .btn-webinar-register {
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
  }
  
  .hero-buttons .btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
  }
}

/* For small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
  }
  
  .hero-content-card {
    padding: 2rem 1.5rem 2rem 1rem;
  }
  
  .upcoming-webinar-alert {
    padding: 1.1rem;
  }
  
  .webinar-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

/* For medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
    max-width: 95%;
  }
  
  .hero-content-card {
    padding: 2.5rem 1.5rem 2.5rem 0;
  }
  
  .hero-shape-bg {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 90%);
  }
  
  .upcoming-webinar-alert {
    padding: 1.2rem;
  }
  
  .webinar-meta {
    flex-direction: row;
    gap: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
  }
}

/* For large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .events-preview-card {
    width: 280px;
    right: 3%;
  }
  
  .event-date-badge {
    width: 50px;
    height: 50px;
  }
  
  .event-date-badge .day {
    font-size: 1.3rem;
  }
}

/* For extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .events-preview-card {
    width: 350px;
  }
}

/* Fix for very tall mobile screens (iPhone X, etc.) */
@media (max-height: 700px) and (max-width: 767.98px) {
  .hero-section {
    height: auto !important;
    min-height: 100vh;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .hero-content-card {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .upcoming-webinar-alert {
    margin-bottom: 1.2rem;
  }
}

/* Ensure proper spacing on very wide screens */
@media (min-width: 1600px) {
  .hero-content-card {
    max-width: 800px;
  }
  
  .events-preview-card {
    width: 380px;
    right: 10%;
  }
}
/* Mobile-only events preview card */
.events-preview-card-mobile {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  display: none;
}

@media (max-width: 991.98px) {
  .events-preview-card-mobile {
    display: block;
  }
}

.events-preview-card-mobile .events-preview-header {
  background: linear-gradient(135deg, #1D5673, #002233);
  color: white;
  padding: 0.8rem 1rem;
}

.events-preview-card-mobile .events-preview-header h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.events-preview-card-mobile .events-preview-body {
  padding: 0.8rem;
}

.events-preview-card-mobile .event-preview-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.events-preview-card-mobile .event-preview-item:last-child {
  border-bottom: none;
}

.events-preview-card-mobile .event-date-badge {
  width: 50px;
  height: 50px;
  margin-right: 0.8rem;
}

.events-preview-card-mobile .event-date-badge .month {
  font-size: 0.7rem;
}

.events-preview-card-mobile .event-date-badge .day {
  font-size: 1.3rem;
}

.events-preview-card-mobile .event-preview-content h5 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.events-preview-card-mobile .events-preview-footer {
  background: rgba(221, 188, 147, 0.2);
  padding: 0.6rem;
  text-align: center;
}

/* Base styles for the upcoming webinar alert */
.upcoming-webinar-alert {
  background: rgba(0, 34, 51, 0.8);
  border-left: 4px solid #DDBC93;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.upcoming-webinar-alert:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.webinar-badge {
  display: inline-block;
  background: #DDBC93;
  color: #002233;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 30px;
  margin-bottom: 0.75rem;
}

.webinar-title {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.webinar-meta {
  display: flex;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.btn-webinar-register {
  background: #88602D;
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-webinar-register:hover {
  background: #DDBC93;
  color: #002233;
  transform: translateX(5px);
}

/* Events Preview Card Styles */
.events-preview-card {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 320px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.events-preview-header {
  background: linear-gradient(135deg, #1D5673, #002233);
  color: white;
  padding: 1rem;
}

.events-preview-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.events-preview-body {
  padding: 1rem;
}

.event-preview-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.event-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #DDBC93;
  color: #002233;
  border-radius: 8px;
  margin-right: 1rem;
  text-align: center;
}

.event-date-badge .month {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.event-date-badge .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-preview-content {
  flex: 1;
}

.event-preview-content h5 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: #002233;
}

.event-preview-content a {
  font-size: 0.85rem;
  color: #88602D;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.event-preview-content a:hover {
  color: #1D5673;
  text-decoration: underline;
}

.events-preview-footer {
  background: rgba(221, 188, 147, 0.2);
  padding: 0.75rem 1rem;
  text-align: center;
}

.view-all-link {
  color: #1D5673;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.view-all-link:hover {
  color: #88602D;
}

/* Add a "soon" badge for events happening within 7 days */
.soon-badge {
  display: inline-block;
  background: #1D5673;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

/* Fix for hero section on very tall mobile devices */
@media (min-height: 800px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 100vh;
    height: auto !important;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* Fix for very small screens like iPhone SE */
@media (max-width: 320px) {
  .hero-title {
    font-size: 1.7rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .webinar-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }
  
  .webinar-title {
    font-size: 0.95rem;
  }
  
  .webinar-meta {
    font-size: 0.75rem;
  }
  
  .btn-webinar-register {
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .hero-buttons .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .events-preview-card-mobile .events-preview-header h4 {
    font-size: 0.9rem;
  }
  
  .events-preview-card-mobile .event-date-badge {
    width: 45px;
    height: 45px;
  }
  
  .events-preview-card-mobile .event-preview-content h5 {
    font-size: 0.85rem;
  }
}

/* Ensure proper spacing on landscape orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    height: auto !important;
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .hero-content-card {
    padding: 1.5rem 1rem;
  }
  
  .upcoming-webinar-alert {
    margin-bottom: 1rem;
  }
  
  .hero-buttons {
    margin-top: 1rem;
  }
  
  .scroll-indicator {
    display: none;
  }
}
/* Pulse attention effect for webinar alert */
@keyframes pulseAttention {
  0% {
    box-shadow: 0 0 0 0 rgba(221, 188, 147, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(221, 188, 147, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(221, 188, 147, 0);
  }
}

.pulse-attention {
  animation: pulseAttention 1.5s ease-out;
}

/* Global Presence Map Section Styles */
.global-map-section {
  position: relative;
  background-color: #f8f9fa;
  overflow: hidden;
}

.map-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%,
      rgba(136, 96, 45, 0.05) 0%,
      transparent 20%),
    radial-gradient(circle at 90% 80%,
      rgba(29, 86, 115, 0.05) 0%,
      transparent 20%),
    radial-gradient(circle at 50% 50%,
      rgba(221, 188, 147, 0.05) 0%,
      transparent 30%);
  opacity: 0.8;
  z-index: 0;
}

.map-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  z-index: 1;
  border-left: 4px solid #88602d;
}

.region-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #002233;
}

.region-description {
  color: #555;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.region-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.region-stat-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.region-stat-item:hover {
  background: rgba(248, 249, 250, 0.8);
  transform: translateX(5px);
}

.region-stat-item[data-region="africa"]:hover {
  box-shadow: 0 5px 15px rgba(136, 96, 45, 0.1);
}

.region-stat-item[data-region="asia"]:hover {
  box-shadow: 0 5px 15px rgba(29, 86, 115, 0.1);
}

.region-stat-item[data-region="middle-east"]:hover {
  box-shadow: 0 5px 15px rgba(221, 188, 147, 0.1);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.region-stat-item[data-region="africa"] .stat-icon {
  background: rgba(136, 96, 45, 0.1);
  color: #88602d;
}

.region-stat-item[data-region="asia"] .stat-icon {
  background: rgba(29, 86, 115, 0.1);
  color: #1d5673;
}

.region-stat-item[data-region="middle-east"] .stat-icon {
  background: rgba(221, 188, 147, 0.1);
  color: #ddbc93;
}

.stat-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #002233;
}

.stat-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.stat-countries {
  font-size: 0.85rem;
  color: #777;
  font-style: italic;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #555;
}

.legend-color {
  width: 15px;
  height: 15px;
  border-radius: 3px;
}

.interactive-map-container {
  position: relative;
  height: 500px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-overlay-text {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.8);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #555;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.regional-map {
  width: 100%;
  height: 100%;
  background-image: url("/Assets/images/Hero/world-map-outline-free-vector.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.map-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.map-control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-control-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.map-control-btn[data-region="all"] {
  background: #002233;
  color: #fff;
}

.map-control-btn[data-region="africa"] {
  background: rgba(136, 96, 45, 0.1);
  color: #88602d;
}

.map-control-btn[data-region="africa"]:hover {
  background: rgba(136, 96, 45, 0.2);
}

.map-control-btn[data-region="asia"] {
  background: rgba(29, 86, 115, 0.1);
  color: #1d5673;
}

.map-control-btn[data-region="asia"]:hover {
  background: rgba(29, 86, 115, 0.2);
}

.map-control-btn[data-region="middle-east"] {
  background: rgba(221, 188, 147, 0.1);
  color: #ddbc93;
}

.map-control-btn[data-region="middle-east"]:hover {
  background: rgba(221, 188, 147, 0.2);
}

/* Map Markers */
.map-marker {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #88602d;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 0 0 rgba(136, 96, 45, 0.4);
  animation: pulse 2s infinite;
}

.map-marker.hq {
  width: 16px;
  height: 16px;
  background: #ddbc93;
}

.map-marker.partner {
  background: #1d5673;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(136, 96, 45, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(136, 96, 45, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(136, 96, 45, 0);
  }
}

/* Tooltip for map markers */
.map-tooltip {
  position: absolute;
  background: white;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 100;
  min-width: 150px;
}

.map-tooltip h5 {
  margin: 0 0 5px;
  font-size: 1rem;
  color: #002233;
}

.map-tooltip p {
  margin: 0;
  color: #555;
  font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .map-info-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }

  .interactive-map-container {
    height: 400px;
  }
}

@media (max-width: 767.98px) {
  .region-stats {
    gap: 1rem;
  }

  .interactive-map-container {
    height: 350px;
  }

  .map-controls {
    bottom: 10px;
    right: 10px;
  }

  .map-control-btn {
    width: 35px;
    height: 35px;
  }
}

/* Additional Map Styles */
.interactive-map-container {
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.interactive-map-container.map-loaded {
  opacity: 1;
  transform: translateY(0);
}

.map-control-btn.active {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.region-stat-item.active {
  background: rgba(248, 249, 250, 0.8);
  transform: translateX(5px);
}

.region-stat-item[data-region="africa"].active {
  box-shadow: 0 5px 15px rgba(136, 96, 45, 0.2);
  border-left: 3px solid #88602d;
}

.region-stat-item[data-region="asia"].active {
  box-shadow: 0 5px 15px rgba(29, 86, 115, 0.2);
  border-left: 3px solid #1d5673;
}

.region-stat-item[data-region="middle-east"].active {
  box-shadow: 0 5px 15px rgba(221, 188, 147, 0.2);
  border-left: 3px solid #ddbc93;
}

/* Map region highlight effects */
.regional-map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.map-control-btn[data-region="africa"].active~.regional-map::before {
  background-image: url("/Assets/images/Hero/map-afrika.png");
  opacity: 0.7;
}

.map-control-btn[data-region="asia"].active~.regional-map::before {
  background-image: url("/Assets/images/asia-highlight.png");
  opacity: 0.7;
}

.map-control-btn[data-region="middle-east"].active~.regional-map::before {
  background-image: url("/Assets/images/middle-east-highlight.png");
  opacity: 0.7;
}

/* Call-to-Action Banner Styles */
.cta-banner-section {
  position: relative;
  /* padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
  overflow: hidden;
}

.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%,
      rgba(136, 96, 45, 0.05) 0%,
      transparent 20%),
    radial-gradient(circle at 90% 80%,
      rgba(29, 86, 115, 0.05) 0%,
      transparent 20%),
    radial-gradient(circle at 50% 50%,
      rgba(221, 188, 147, 0.05) 0%,
      transparent 30%);
  opacity: 0.8;
  z-index: 0;
}

.cta-banner {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 1;
}

.cta-shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(136, 96, 45, 0.03) 0%,
      rgba(29, 86, 115, 0.03) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  z-index: -1;
}

.cta-badge {
  display: inline-block;
  background: linear-gradient(90deg, #88602d 0%, #ddbc93 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(136, 96, 45, 0.2);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #002233;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 90%;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(29, 86, 115, 0.1);
  color: #1d5673;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.feature-text {
  font-weight: 500;
  color: #333;
}

.cta-action-card {
  background: linear-gradient(135deg, #002233 0%, #1d5673 100%);
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
  box-shadow: 0 15px 30px rgba(0, 34, 51, 0.2);
  position: relative;
  overflow: hidden;
}

.action-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.action-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.membership-tiers {
  margin-bottom: 2rem;
}

.tier-option {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tier-option:hover {
  background: rgba(255, 255, 255, 0.15);
}

.tier-option.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ddbc93;
}

.tier-radio {
  margin-right: 1rem;
}

.tier-radio input {
  display: none;
}

.tier-radio label {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  position: relative;
  cursor: pointer;
}

.tier-radio input:checked+label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddbc93;
}

.tier-info {
  flex-grow: 1;
}

.tier-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.tier-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.tier-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ddbc93;
}

.tier-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.action-buttons {
  margin-bottom: 1.5rem;
}

.action-buttons .btn-primary {
  background: linear-gradient(90deg, #88602d 0%, #ddbc93 100%);
  border: none;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(136, 96, 45, 0.3);
}

.action-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(136, 96, 45, 0.4);
}

.action-buttons .btn-outline-secondary {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.8rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.action-buttons .btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.action-trust {
  display: flex;
  justify-content: space-between;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.trust-item i {
  color: #ddbc93;
}

.cta-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  z-index: -1;
}

.cta-decoration-1 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -50px;
  background: radial-gradient(circle,
      rgba(136, 96, 45, 0.1) 0%,
      rgba(136, 96, 45, 0) 70%);
}

.cta-decoration-2 {
  width: 150px;
  height: 150px;
  top: -50px;
  left: -50px;
  background: radial-gradient(circle,
      rgba(29, 86, 115, 0.1) 0%,
      rgba(29, 86, 115, 0) 70%);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .cta-banner {
    padding: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-description {
    max-width: 100%;
  }

  .cta-features {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 767.98px) {
  .cta-banner-section {
    padding: 3rem 0;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .action-title {
    font-size: 1.5rem;
  }

  .tier-option {
    flex-wrap: wrap;
  }

  .tier-price {
    width: 100%;
    margin-top: 0.5rem;
    text-align: right;
  }
}

/* CTA Banner Animation */
@keyframes ctaPulse {
  0% {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  }

  50% {
    box-shadow: 0 20px 50px rgba(136, 96, 45, 0.15);
  }

  100% {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  }
}

.cta-banner.animate-banner {
  animation: ctaPulse 3s infinite ease-in-out;
}

/* Mission & Vision Section Styles */
.mission-vision-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
      var(--primary-dark) 0%,
      var(--secondary-dark) 100%);
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: url("/Assets/images/patterns/grid.png");
  opacity: 0.1;
}

.mission-card,
.vision-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-glow {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  transition: all 0.5s ease;
}

.mission-card:hover .card-glow,
.vision-card:hover .card-glow {
  transform: scale(1.5);
  opacity: 0.7;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transform: rotate(-10deg);
  transition: transform 0.3s ease;
}

.icon-wrapper i {
  font-size: 24px;
  color: var(--white);
}

.mission-card:hover .icon-wrapper,
.vision-card:hover .icon-wrapper {
  transform: rotate(0deg);
}

.mission-points {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.mission-points li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: var(--light);
}

.mission-points li i {
  color: var(--accent-color);
  margin-right: 10px;
}

.vision-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  text-align: center;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--light);
  font-size: 0.9rem;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.mission-card,
.vision-card {
  animation: float 6s ease-in-out infinite;
}

.mission-card {
  animation-delay: 0s;
}

.vision-card {
  animation-delay: 3s;
}

.vision-pillars {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--light);
}

.pillar i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.pillar:hover i {
  transform: translateY(-5px);
}

.pillar span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Section Header Styles */
.section-header {
  position: relative;
  margin-bottom: 4rem;
}

.subtitle {
  color: #ddbc93;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1rem;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.title-decoration {
  width: 80px;
  height: 4px;
  background: #ddbc93;
  margin: 0 auto;
  position: relative;
}

.title-decoration::before,
.title-decoration::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #ddbc93;
  border-radius: 50%;
  top: -1px;
}

.title-decoration::before {
  left: -10px;
}

.title-decoration::after {
  right: -10px;
}

/* MEMBERSHIP BENEFITS SECTION */
.benefits-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  overflow: hidden;
}

.benefits-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%,
      rgba(221, 188, 147, 0.1) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(221, 188, 147, 0.1) 0%,
      transparent 50%);
}

.benefit-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ddbc93, #c4a57d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.benefit-icon i {
  font-size: 2rem;
  color: white;
}

.benefit-content {
  position: relative;
  z-index: 1;
}

.benefit-content h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.benefit-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.benefit-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #666;
}

.benefit-features i {
  color: #ddbc93;
}

.hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(221, 188, 147, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-card:hover .hover-effect {
  opacity: 1;
}

.btn-join {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: linear-gradient(135deg, #ddbc93, #c4a57d);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-join:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(221, 188, 147, 0.3);
}

@media (max-width: 768px) {
  .benefit-card {
    padding: 30px 20px;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
  }

  .benefit-icon i {
    font-size: 1.5rem;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* VIDEO GALLERY SECTION */
.video-gallery-section {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  overflow: hidden;
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.video-filter .nav-link {
  padding: 12px 25px;
  margin: 0 10px;
  border-radius: 30px;
  color: #333;
  transition: all 0.3s ease;
}

.video-filter .nav-link.active {
  background: #ddbc93;
  color: white;
}

.video-filter .nav-link i {
  margin-right: 8px;
}

.video-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.video-card:hover {
  transform: translateY(-10px);
}

.video-thumbnail {
  overflow: hidden;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.play-overlay i {
  font-size: 3rem;
  color: white;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.video-card:hover .play-overlay {
  opacity: 1;
}

.video-card:hover .play-overlay i {
  transform: scale(1);
}

.video-category {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(221, 188, 147, 0.1);
  color: #ddbc93;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.video-meta {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #666;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.video-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.video-meta {
  margin-top: auto;
}

/* Leadership Team Section Styles */
.leadership-section {
  position: relative;
  background-color: #f8f9fa;
  overflow: hidden;
}

.leadership-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%,
      rgba(136, 96, 45, 0.05) 0%,
      transparent 20%),
    radial-gradient(circle at 90% 80%,
      rgba(29, 86, 115, 0.05) 0%,
      transparent 20%),
    radial-gradient(circle at 50% 50%,
      rgba(221, 188, 147, 0.05) 0%,
      transparent 30%);
  opacity: 0.8;
  z-index: 0;
}

/* Executive Spotlight Styles */
.executive-spotlight {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.executive-image-wrapper {
  position: relative;
  padding: 2rem;
  height: 100%;
}

.executive-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

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

.executive-image:hover img {
  transform: scale(1.05);
}

.executive-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(136, 96, 45, 0.1) 0%,
      rgba(29, 86, 115, 0.1) 100%);
  clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
  z-index: 1;
}

.executive-social {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  display: flex;
  gap: 0.8rem;
  z-index: 3;
}

.executive-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002233;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.executive-social a:hover {
  background: #88602d;
  color: #fff;
  transform: translateY(-3px);
}

.executive-content {
  padding: 3rem;
}

.executive-title h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #002233;
  margin-bottom: 0.5rem;
}

.executive-title .position {
  display: inline-block;
  font-size: 1.1rem;
  color: #1d5673;
  font-weight: 500;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ddbc93;
  margin-bottom: 1.5rem;
}

.executive-quote {
  position: relative;
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
}

.quote-icon {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  color: rgba(136, 96, 45, 0.2);
}

.executive-quote p {
  font-size: 1.2rem;
  font-style: italic;
  color: #555;
  padding-left: 2.5rem;
  line-height: 1.6;
}

.executive-bio p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.executive-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

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

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #88602d;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

/* Team Card Styles */
.team-card {
  height: 100%;
  perspective: 1000px;
  margin-bottom: 1rem;
}

.team-card-inner {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.team-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top,
      rgba(0, 34, 51, 0.8) 0%,
      transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
}

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

.team-social {
  display: flex;
  gap: 1rem;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002233;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.team-card:hover .team-social a {
  transform: translateY(0);
  opacity: 1;
}

.team-card:hover .team-social a:nth-child(1) {
  transition-delay: 0.1s;
}

.team-card:hover .team-social a:nth-child(2) {
  transition-delay: 0.2s;
}

.team-card:hover .team-social a:nth-child(3) {
  transition-delay: 0.3s;
}

.team-social a:hover {
  background: #88602d;
  color: #fff;
  transform: translateY(-3px) scale(1.1);
}

.team-content {
  padding: 1.5rem;
}

.team-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #002233;
  margin-bottom: 0.3rem;
}

.team-content .position {
  display: block;
  font-size: 0.95rem;
  color: #1d5673;
  margin-bottom: 1rem;
  font-weight: 500;
}

.team-bio {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.team-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.team-expertise span {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(29, 86, 115, 0.1);
  color: #1d5673;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Hover Effects */
.team-card:hover .team-card-inner {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .executive-content {
    padding: 2rem;
  }

  .executive-title h3 {
    font-size: 1.8rem;
  }

  .executive-quote p {
    font-size: 1.1rem;
  }

  .executive-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .stat-value {
    font-size: 1.8rem;
  }
}

@media (max-width: 767.98px) {
  .executive-image-wrapper {
    padding: 1.5rem 1.5rem 0 1.5rem;
  }

  .executive-social {
    bottom: 2rem;
    right: 2rem;
  }

  .executive-content {
    padding: 1.5rem;
  }

  .executive-title h3 {
    font-size: 1.6rem;
  }

  .executive-quote p {
    font-size: 1rem;
    padding-left: 2rem;
  }

  .quote-icon {
    font-size: 1.5rem;
  }

  .team-image {
    height: 240px;
  }
}

/* PARTNERS SECTION  */
#partners .partner-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
}

#partners .partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#partners .partner-card img {
  max-height: 120px;
  width: auto;
  transition: transform 0.3s ease;
}

#partners .partner-card:hover img {
  transform: scale(1.1);
}

#partners h2 {
  color: var(--primary-color);
}

#partners h5 {
  color: var(--accent-color);
  font-weight: 600;
}

#partners p {
  color: #333;
}

/* FAQS SECTION  */
#faqs .accordion-item {
  background-color: #ffffff;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

#faqs .accordion-button {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out;
}

#faqs .accordion-button:focus {
  box-shadow: none;
}

#faqs .accordion-button:not(.collapsed) {
  background-color: var(--secondary-color);
  color: #ffffff;
  transition: all 0.2s ease;
}

#faqs .accordion-button.collapsed:hover {
  background-color: var(--secondary-hover);
}

#faqs .accordion-body {
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* OUR KEY SERVICES SECTION */
.services .row {
  display: flex;
  /* Use flexbox to control alignment */
  flex-wrap: wrap;
  /* Allow wrapping for responsiveness */
}

.service-card {
  background-color: #ffffff;
  /* White card background */
  transition: transform 0.3s, box-shadow 0.3s;
  /* Smooth hover effect */
  display: flex;
  /* Make the card a flex container */
  flex-direction: column;
  /* Align items vertically */
  justify-content: space-between;
  /* Space items evenly */
  height: 100%;
  /* Ensure it takes full height of the column */
  padding: 20px;
  /* Add padding */
  border-radius: 8px;
  /* Rounded corners */
}

.service-card:hover {
  transform: translateY(-10px);
  /* Slight lift on hover */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  /* Enhanced shadow */
}

.service-card .icon {
  background-color: rgba(0, 123, 255, 0.1);
  /* Light icon background */
  border-radius: 50%;
  /* Circular icon background */
  padding: 20px;
  /* Padding for icons */
  display: inline-block;
  /* Center alignment */
}

/* PAST EVENTS SECTION */
.past-events-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  overflow: hidden;
}

.events-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#ddbc93 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.1;
}

.events-timeline {
  position: relative;
  z-index: 1;
}

.event-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.event-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

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

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

.event-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(221, 188, 147, 0.9);
  padding: 15px;
  border-radius: 10px;
  color: white;
  text-align: center;
  backdrop-filter: blur(5px);
}

.event-date .day {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.event-date .month,
.event-date .year {
  font-size: 0.9rem;
  display: block;
}

.event-content {
  padding: 30px;
}

.event-tag {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(221, 188, 147, 0.1);
  color: #ddbc93;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.event-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.event-stats {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  color: #666;
}

.event-stats span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-stats i {
  color: #ddbc93;
}

.event-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ddbc93;
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s ease;
}

.event-link:hover {
  gap: 15px;
}

@media (max-width: 768px) {
  .event-image {
    height: 200px;
  }

  .event-content {
    padding: 20px;
  }

  .event-content h3 {
    font-size: 1.2rem;
  }

  .event-stats {
    flex-direction: column;
    gap: 10px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PARTNERS AND COLLABORATIONS SECTION */
.partners-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  overflow: hidden;
}

.partners-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(221, 188, 147, 0.1) 1px,
      transparent 1px),
    linear-gradient(90deg, rgba(221, 188, 147, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: gridMove 20s linear infinite;
}

.gradient-heading {
  background: linear-gradient(135deg, #1a1a1a, #ddbc93);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.accent-line {
  width: 80px;
  height: 4px;
  background: #ddbc93;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
}

.accent-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: shimmer 2s infinite;
}

.featured-partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.partner-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.card-inner {
  transform: translateZ(20px);
}

.partner-logo {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  position: relative;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.partner-logo::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 10px;
  background: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 0.2) 0%,
      transparent 70%);
}

.partner-info {
  text-align: center;
}

.partner-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #666;
}

.partner-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.partner-map {
  height: 400px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
  margin-top: 50px;
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(30px);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* Hover Effects */
.partner-card:hover {
  transform: translateY(-10px);
}

.partner-card:hover .partner-logo img {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .featured-partners {
    grid-template-columns: 1fr;
  }

  .partner-map {
    height: 300px;
  }
}

.partners-section {
  position: relative;
  overflow: hidden;
}

.partner-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo {
  height: 120px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.partner-info {
  text-align: center;
}

.partner-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.partner-stats span {
  font-size: 0.875rem;
  color: #666;
}

.partner-stats i {
  color: #ddbc93;
  margin-right: 0.5rem;
}

@media (max-width: 767.98px) {
  .partner-card {
    margin-bottom: 1rem;
  }

  .partner-logo {
    height: 100px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .partner-logo {
    height: 110px;
  }
}

@media (min-width: 992px) {
  .partner-card:hover {
    transform: translateY(-10px);
  }
}

/* Modern Logo Showcase Styles */
.members-logos-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.08) 100%);
  padding: 5rem 0;
}

.logo-showcase {
  position: relative;
  margin: 3rem 0;
}

.logo-marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
}

.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
}

.logo-track {
  display: flex;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  width: fit-content;
}

.logo-marquee-1 .logo-track {
  animation-name: scroll-left;
}

.logo-marquee-2 .logo-track {
  animation-name: scroll-right;
}

.logo-marquee-3 .logo-track {
  animation-name: scroll-left;
  animation-duration: 25s;
  /* Slightly faster */
}

.logo-item {
  flex: 0 0 auto;
  padding: 0 1.5rem;
}

.logo-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.logo-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.4s ease;
}

.logo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
}

.logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Animation keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 1.5rem));
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(calc(-50% - 1.5rem));
  }

  100% {
    transform: translateX(0);
  }
}

/* Controls */
.logo-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  gap: 1.5rem;
}

.control-btn {
  background: rgba(221, 188, 147, 0.1);
  border: 1px solid rgba(221, 188, 147, 0.3);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: var(--primary-color);
  color: white;
}

.speed-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  font-size: 0.9rem;
}

.speed-slider {
  -webkit-appearance: none;
  width: 100px;
  height: 4px;
  background: rgba(221, 188, 147, 0.3);
  border-radius: 2px;
  outline: none;
}

.speed-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  transition: all 0.2s ease;
}

.speed-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  transition: all 0.2s ease;
}

.speed-slider::-webkit-slider-thumb:hover,
.speed-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-card {
    width: 150px;
    height: 100px;
    padding: 1rem;
  }

  .logo-card img {
    max-height: 60px;
  }

  .logo-item {
    padding: 0 1rem;
  }
}

/* Pause animation when user hovers over the container */
.logo-marquee-container:hover .logo-track {
  animation-play-state: paused;
}

/* Add a subtle glow effect to highlight logos */
@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(221, 188, 147, 0.3);
  }

  50% {
    box-shadow: 0 0 20px rgba(221, 188, 147, 0.5);
  }

  100% {
    box-shadow: 0 0 5px rgba(221, 188, 147, 0.3);
  }
}

.logo-card:nth-child(3n+1):hover {
  animation: glow 2s infinite;
}

/* Add a subtle background pattern */
.members-logos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(221, 188, 147, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(29, 86, 115, 0.03) 0%, transparent 50%);
  z-index: -1;
}

/* Add a subtle floating animation to some logos */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.logo-card:nth-child(3n+2):hover {
  animation: float 3s ease-in-out infinite;
  transform: none;
}