@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body,
h1,
h2,
h3,
h4,
h5 {
  padding: 0;
  font-family: Inter, Helvetica Neue, Arial, Helvetica, sans-serif;
}

.data {
  font-size: 16px;
}

body {
  margin: 0;
  overflow-x: hidden;
  min-width: 320px;
  background: #fff;
  font-size: 16px;
  line-height: 36px;
  color: #404040;
}

/* Unified page typography to match homepage style */
.site-main-content {
  color: #374151;
  font-family: Inter, Helvetica Neue, Arial, Helvetica, sans-serif;
}

.site-main-content h1 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-main-content h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.site-main-content h3 {
  font-size: clamp(1.25rem, 1.9vw, 1.9rem);
  line-height: 1.3;
  font-weight: 600;
}

.site-main-content p,
.site-main-content li {
  font-size: clamp(1rem, 1.08vw, 1.2rem);
  line-height: 1.7;
}

/* Keep Contact/Services typography consistent with homepage page-content scale */
.site-main-content .contact-page h2,
.site-main-content .services-page h2 {
  font-size: clamp(1.6rem, 1.8vw, 2rem) !important;
  line-height: 1.25 !important;
}

.site-main-content .contact-page h3,
.site-main-content .services-page h3 {
  font-size: clamp(1.2rem, 1.25vw, 1.55rem) !important;
  line-height: 1.3 !important;
}

.site-main-content .contact-page p,
.site-main-content .contact-page li,
.site-main-content .services-page p,
.site-main-content .services-page li {
  font-size: clamp(0.98rem, 0.9vw, 1.05rem) !important;
  line-height: 1.65 !important;
}


/* Global Breadcrumbs Styling */
.breadcrumbs {
  font-size: 18px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.02em;
  line-height: 1.5rem !important;
  padding: 0 !important;
}

.breadcrumbs a {
  transition: all 0.2s ease;
  padding: 0 !important;
  line-height: 1.5rem !important;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 16px !important;
  }
}

/* Standardize section heights and padding */
section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Section info consistent margins */
.section-info {
  margin-top: 0;
  margin-bottom: 60px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  text-align: center;
}

.section-info::before,
.section-info::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 122, 255, 0.3);
  top: 50%;
  transform: translateY(-50%);
}

.section-info::before {
  left: 20%;
}

.section-info::after {
  right: 20%;
}

/* Add connecting lines */
.section-info {
  position: relative;
}

.section-info::after {
  right: 20%;
}

.section-info hr {
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: rgba(0, 122, 255, 0.15);
  border: none;
  margin: 0;
  width: 40%;
  transform: translateY(-50%);
}

.section-info hr.left {
  left: 0;
}

.section-info hr.right {
  right: 0;
}

.stats-section .section-info hr {
  background-color: rgba(255, 255, 255, 0.15);
}

.stats-section .section-info::before,
.stats-section .section-info::after {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Specific section adjustments */
.hero-section {
  position: relative;
  background-image: url(../images/ui-elements/section-bg.webp);
  background-size: cover;
  background-position: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  height: 100vh;
  min-height: 650px;
  max-height: 900px;
}

.hero-particles,
.stats-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/ui-elements/dot-pattern.png);
  background-size: 30px;
  opacity: 0.15;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 33, 71, 0.85) 0%, rgba(0, 122, 255, 0.8) 100%);
  z-index: 1;
}

.hero {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  width: 60%;
  padding: 2rem;
  text-align: left;
  animation: fadeInLeft 1.5s ease-out;
}

.hero-globe {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1.5s ease-out;
}

.globe-container {
  position: relative;
  width: 350px;
  height: 350px;
}

/* Fix for missing globe */
.globe {
  width: 100%;
  height: 100%;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/c/c4/Globe_icon.svg/2048px-Globe_icon.svg.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  animation: rotate 40s linear infinite;
  opacity: 0.7;
}

.globe-shadow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Country dots styling */
.country-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.8), 0 0 8px rgba(92, 239, 255, 0.6);
  transform: translate(-50%, -50%);
  animation: dotPulse 2.5s infinite ease-in-out;
  z-index: 6;
  pointer-events: all;
  cursor: pointer;
  transition: all 0.3s ease;
}

.country-dot::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 2.5s infinite ease-out;
}

.country-dot:hover {
  transform: translate(-50%, -50%) scale(1.2);
  z-index: 10;
  box-shadow: 0 0 30px rgba(255, 255, 255, 1), 0 0 15px rgba(92, 239, 255, 0.8);
}

@keyframes dotPulse {
  0% {
    transform: translate3d(-50%, -50%, 0) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate3d(-50%, -50%, 0) scale(1.3);
    opacity: 0.7;
  }

  100% {
    transform: translate3d(-50%, -50%, 0) scale(1);
    opacity: 1;
  }
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    width: 32px;
    height: 32px;
    opacity: 0;
  }
}

/* Country dot positions with slight adjustments for better visual balance */
.country-dot.brazil {
  top: 65%;
  left: 30%;
  animation-delay: 0.2s;
}

.country-dot.russia {
  top: 25%;
  left: 72%;
  animation-delay: 0.5s;
}

.country-dot.india {
  top: 45%;
  left: 65%;
  animation-delay: 0.8s;
}

.country-dot.china {
  top: 35%;
  left: 75%;
  animation-delay: 1.1s;
}

.country-dot.south-africa {
  top: 70%;
  left: 55%;
  animation-delay: 1.4s;
}

.country-dot.egypt {
  top: 40%;
  left: 55%;
  animation-delay: 1.7s;
}

.country-dot.ethiopia {
  top: 52%;
  left: 57%;
  animation-delay: 2.0s;
}

.country-dot.iran {
  top: 38%;
  left: 60%;
  animation-delay: 2.3s;
}

.country-dot.uae {
  top: 43%;
  left: 62%;
  animation-delay: 2.6s;
}

.country-dot.indonesia {
  top: 60%;
  left: 78%;
  animation-delay: 2.9s;
}

.country-dot.saudi {
  top: 42%;
  left: 58%;
  animation-delay: 3.2s;
}

/* Enhanced country colors with vibrant tones on dark background */
.country-dot.brazil {
  background-color: #5cff5c;
  box-shadow: 0 0 25px rgba(92, 255, 92, 0.9);
}

.country-dot.russia {
  background-color: #5c9fff;
  box-shadow: 0 0 25px rgba(92, 159, 255, 0.9);
}

.country-dot.india {
  background-color: #ffae5c;
  box-shadow: 0 0 25px rgba(255, 174, 92, 0.9);
}

.country-dot.china {
  background-color: #ff5c5c;
  box-shadow: 0 0 25px rgba(255, 92, 92, 0.9);
}

.country-dot.south-africa {
  background-color: #5cff9f;
  box-shadow: 0 0 25px rgba(92, 255, 159, 0.9);
}

.country-dot.egypt {
  background-color: #ff5c7f;
  box-shadow: 0 0 25px rgba(255, 92, 127, 0.9);
}

.country-dot.ethiopia {
  background-color: #ffee5c;
  box-shadow: 0 0 25px rgba(255, 238, 92, 0.9);
}

.country-dot.iran {
  background-color: #87ff5c;
  box-shadow: 0 0 25px rgba(135, 255, 92, 0.9);
}

.country-dot.uae {
  background-color: #5cffbf;
  box-shadow: 0 0 25px rgba(92, 255, 191, 0.9);
}

.country-dot.indonesia {
  background-color: #ff5c5c;
  box-shadow: 0 0 25px rgba(255, 92, 92, 0.9);
}

.country-dot.saudi {
  background-color: #5cff7f;
  box-shadow: 0 0 25px rgba(92, 255, 127, 0.9);
}

.country-dot[title]:hover::before {
  content: attr(title);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.95);
  color: #002657;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  animation: fadeIn 0.3s forwards;
}

.country-dot[title]:hover::after {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.95) transparent transparent transparent;
  z-index: 100;
  opacity: 0;
  animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px) translateX(-50%);
  }

  to {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}

.gradient-text {
  background: linear-gradient(90deg, #007AFF, #00C6FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-out 0.5s both;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: white;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn.primary-btn {
  background: linear-gradient(135deg, #007AFF, #00C6FF);
  color: white;
  border: none;
}

.btn.primary-btn:hover {
  background: linear-gradient(135deg, #0062CC, #00A6FF);
  box-shadow: 0 6px 15px rgba(0, 122, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  justify-content: space-between;
  max-width: 500px;
  margin-top: 40px;
}

.hero-stat {
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hero-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.hero-stat-icon {
  font-size: 24px;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.hero-stat-label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.hero-scroll-down a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 14px;
  gap: 8px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.hero-scroll-down a:hover {
  opacity: 1;
  transform: translateY(-5px);
}

.hero-scroll-down i {
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {

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

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

  60% {
    transform: translateY(-5px);
  }
}

/* Section shapes */
.section-shape-top,
.section-shape-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.section-shape-top {
  top: -1px;
  transform: rotate(180deg);
}

.section-shape-bottom {
  bottom: -1px;
}

.section-shape-top svg,
.section-shape-bottom svg {
  display: block;
  width: 100%;
}

/* About section enhancements */
.about-section {
  background-image: url(../images/ui-elements/section-bg.webp);
  background-size: contain;
  padding: 80px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/ui-elements/section-bg.webp);
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.about-image-col {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.about-main-image {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease-out;
}

.about-image-wrapper:hover .about-main-image {
  transform: translateY(-10px);
}

.about-image-decoration {
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  z-index: 1;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.about-stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 15px;
  width: calc(33.333% - 14px);
  min-width: 110px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-stat:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.about-stat-icon {
  font-size: 24px;
  color: #3b82f6;
  margin-bottom: 8px;
}

.about-stat-value {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
  background: linear-gradient(45deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-stat-label {
  font-size: 14px;
  color: #e2e8f0;
}

.about-content-col {
  flex: 1;
  min-width: 300px;
}

.about-badge {
  display: inline-block;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(23, 92, 230, 0.3);
}

.about-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #ffffff;
}

.about-text {
  font-size: 16px;
  line-height: 1.7;
  color: #e2e8f0;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateX(5px);
}

.about-feature-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 12px;
  font-size: 18px;
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
}

.about-feature-text {
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
}

.about-actions {
  display: flex;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.about-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.primary-about-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
}

.primary-about-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.5);
}

.secondary-about-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.secondary-about-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

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

.about-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }

  .about-image-col,
  .about-content-col {
    width: 100%;
  }

  .about-image-wrapper {
    max-width: 320px;
  }

  .about-heading {
    font-size: 30px;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-stats {
    gap: 15px;
  }

  .about-stat {
    width: calc(50% - 8px);
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 40px 0;
  }

  .about-heading {
    font-size: 24px;
  }

  .about-actions {
    flex-direction: column;
    gap: 15px;
  }

  .about-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Keep original container class for compatibility */
.container {
  display: block;
  width: 100%;
  align-items: center;
  justify-items: center;
}

.mobile-image,
.image,
.content {
  display: none;
}

/* Floating elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 122, 255, 0.1);
  color: #007AFF;
  border-radius: 50%;
  font-size: 24px;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  animation: float 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.floating-element.small {
  width: 40px;
  height: 40px;
  font-size: 16px;
  background: rgba(0, 122, 255, 0.05);
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }

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

/* Button enhancements */
.btn-white span,
.btn-blue span {
  margin-right: 8px;
}

.btn-white i,
.btn-blue i {
  transition: transform 0.3s ease;
}

.btn-white:hover i,
.btn-blue:hover i {
  transform: translateX(5px);
}

/* Stats section enhancements */
.stats-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #002147 0%, #0047AB 100%);
  color: white;
  overflow: hidden;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/ui-elements/dot-pattern.png);
  background-size: 20px;
  opacity: 0.05;
  z-index: 2;
}

.stat-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.stat-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-top: 15px;
  overflow: hidden;
}

.stat-progress {
  height: 100%;
  background: linear-gradient(90deg, #007AFF, #00C6FF);
  border-radius: 3px;
  width: 0;
  transition: width 1.5s ease-out;
}

/* Events section enhancements */
.events-section {
  position: relative;
  background: #f9f9f9;
  padding: 90px 0;
  overflow: hidden;
}

.events-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/ui-elements/dot-pattern.png);
  background-size: 20px;
  opacity: 0.05;
  z-index: 1;
}

/* CTA section enhancements */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, #007AFF 0%, #00C6FF 100%);
  color: white;
  padding: 90px 0;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/ui-elements/dot-pattern.png);
  background-size: 20px;
  opacity: 0.05;
  z-index: 1;
}

.cta-button span {
  margin-right: 8px;
}

.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* Media queries for responsiveness */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    justify-content: center;
  }

  .hero-content {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .hero-globe {
    display: none;
  }

  .hero-subtitle {
    margin: 0 auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    margin: 40px auto 0;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 600px;
    padding: 120px 0 80px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

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

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
  }

  .hero-stat {
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 15px;
  }
}

.about-section {
  padding: 100px 0;
}

.mission-vision-section,
.what-we-do-section,
.stats-section,
.publishing-section,
.events-section,
.gallery-section,
.partners-section,
.cta-section {
  padding: 90px 0;
}

.flag-section,
.countries-section {
  padding: 60px 0;
}

.countries-section {
  padding-top: 0;
}

.footer-section {
  padding: 70px 0 40px;
}

/* Update container padding */
.container {
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 992px) {
  section {
    padding: 70px 0;
  }

  .hero-section {
    padding: 0;
    height: 90vh;
    min-height: 550px;
    max-height: 800px;
  }

  .flag-section,
  .countries-section {
    padding: 50px 0;
  }

  .countries-section {
    padding-top: 0;
  }

  .footer-section {
    padding: 60px 0 30px;
  }

  .section-info {
    margin-bottom: 50px;
  }
}

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

  .hero-section {
    padding: 0;
    height: 85vh;
    min-height: 500px;
    max-height: 700px;
  }

  .about-section {
    padding: 80px 0;
  }

  .flag-section,
  .countries-section {
    padding: 40px 0;
  }

  .countries-section {
    padding-top: 0;
  }

  .footer-section {
    padding: 50px 0 25px;
  }

  .section-info {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 32px;
    padding-bottom: 12px;
  }

  .section-title::before {
    width: 50px;
  }

  .section-title::after {
    width: 80px;
  }

  .section-description {
    font-size: 15px;
  }

  .section-info::before {
    left: 10%;
  }

  .section-info::after {
    right: 10%;
  }
}

/* body */
section.inter-section {
  padding: 50px 0 100px;
  min-height: 350px;
}

@media (min-width: 1600px) {
  main.body {
    max-width: 1400px;
  }
}

@media (max-width: 1200px) {
  main.body {
    max-width: 1100px;
  }
}

@media (max-width: 992px) {
  main.body {
    max-width: 90vw;
  }
}

@media (max-width: 768px) {
  main.body {
    max-width: 95vw;
  }
}



/* Top Bar  + Navigation Bar*/
.top-bar {
  background-image: url(../images/ui-elements/section-bg.webp);
  background-size: contain;
}

.navbar {
  max-width: 1450px !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding: 0px 16px;
  font-size: 16px;
}

@media (max-width: 1060px) {

  #desktopNav,
  #desktopJoin,
  #flagtime {
    display: none;
  }

  .menu-toggle {
    display: flex !important;
  }

  #menuToggle {
    display: block;
  }

  #menu {
    display: none;
  }

  #menu.active {
    display: flex;
  }
}



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

.hero {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

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

.hero-content {
  color: #fff;
  width: 65%;
  text-align: left;
  font-weight: 500;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeIn 1.2s ease-in-out;
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 80%;
}

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

.btn {
  font-family: 'Poppins', sans-serif;
  margin-top: 10px;
  padding: 12px 24px;
  height: 67px;
  width: 220px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;
  backdrop-filter: blur(5px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
}

.btn:hover {
  background: #0066cc;
  border-color: #0066cc;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@media (max-width: 768px) {
  .hero {
    height: 600px;
    text-align: center;
    width: auto;
  }

  .hero-content {
    width: 90%;
    text-align: center;
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

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

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 668px) {
  .hero-content {
    width: 95%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .btn {
    width: 180px;
    height: 55px;
    font-size: 14px;
  }
}

/* about section */
.about-section {
  background-image: url(../images/ui-elements/section-bg.webp);
  background-size: contain;

}

.container {
  display: block;
  width: 100%;
  align-items: center;
  justify-items: center;
}

.container img {
  width: 220px;
  border-radius: 10px;
  object-fit: cover;
  animation: zoomIn 0.6s ease-out forwards;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content h2 {
  font-size: 50px;
  margin-bottom: 10px;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #fff;
}

.content h2 span {
  display: block;
}

.content p {
  margin: 5px 0;
  color: #fff;
  line-height: 1.6;
  font-size: 18px;
}

.mobile-image {
  display: none;
}

.btn-container {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn-blue,
.btn-white {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  border-radius: 16px;
  border: 1px solid;
  height: 67px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.1s ease;
  text-align: center;
}

.btn-blue {
  background-color: rgb(0, 122, 255);
  color: white;
  border-color: rgb(0, 122, 255);
}

.btn-blue:hover {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
  border-color: white;
}

.btn-white {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
  border-color: white;
}

.btn-white:hover {
  background-color: rgb(0, 122, 255);
  color: white;
  border-color: rgb(0, 122, 255);
}

@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
  }

  .content h2 {
    font-size: 2rem;
  }

  .image {
    display: none;
  }

  .mobile-image {
    display: flex;
    justify-content: center;
  }

  .mobile-image img {
    width: 13rem;
    height: auto;
    border-radius: 10px;
  }

  .btn-container {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}


@keyframes zoomIn {
  0% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}


/* section info */
.section-title {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-weight: 700;
  font-size: 46px;
  color: #162f6a;
  position: relative;
  display: inline-block;
  margin: 0 auto 20px;
  padding-bottom: 15px;
  letter-spacing: -0.5px;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

.section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #007AFF;
  border-radius: 3px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: rgba(0, 122, 255, 0.3);
  border-radius: 3px;
}

.section-description {
  text-align: center;
  max-width: 650px;
  margin: 20px auto 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Specific section title colors */
.stats-section .section-title {
  color: white;
}

.stats-section .section-title::before {
  background-color: white;
}

.stats-section .section-title::after {
  background-color: rgba(255, 255, 255, 0.3);
}

.stats-section .section-description {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
  .section-info {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 38px;
  }

  .section-description {
    font-size: 16px;
    max-width: 550px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }

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

  .section-info hr {
    width: 25%;
  }
}



/* flags slider */
.flag-section {
  background-color: aliceblue;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logo-slider {
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 12px;
  white-space: nowrap;

}


.logos-container {
  display: flex;
  width: max-content;
  animation: slide 30s linear infinite;
  will-change: transform;
}

.logos-container.show {
  opacity: 1;
}

.flag-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 12px;
  min-width: 0;
  overflow: visible;
}

.partner-logo-card {
  width: clamp(210px, 18vw, 280px);
  height: clamp(120px, 10vw, 150px);
  background: #fff;
  padding: 14px;
  box-sizing: border-box;
  border: 1px solid #e6eefc;
  box-shadow: 0 10px 24px rgba(12, 51, 112, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.flag-container img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center;
  display: block;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.partner-logo-card img {
  object-fit: contain !important;
  object-position: center;
}

.partner-logo-card:hover img {
  transform: translateY(-3px);
}

.partner-logo-card:hover {
  box-shadow: 0 14px 28px rgba(12, 51, 112, 0.15);
}

.flag-container span {
  font-size: 1rem;
  font-weight: 600;
  color: #162f6a;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .partner-logo-card {
    width: clamp(180px, 38vw, 220px);
    height: clamp(96px, 20vw, 115px);
    padding: 12px;
  }

  .flag-container img {
    max-width: 100% !important;
    max-height: 100% !important;
  }
}

@media (max-width: 480px) {
  .partner-logo-card {
    width: clamp(160px, 56vw, 190px);
    height: clamp(86px, 30vw, 100px);
    padding: 10px;
  }

  .flag-container img {
    max-width: 100% !important;
    max-height: 100% !important;
  }
}


/* countries section */
.countries-section {
  background-color: aliceblue;
}

@media (max-width: 990px) {
  #main-con {
    display: none;
  }

  #content-container {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  #content-container>div {
    overflow: visible !important;
  }

  .cust {
    min-height: auto !important;
  }

  .cust>div[data-country] {
    position: relative !important;
  }
}

.yorker-head {
  height: 100px !important;
  width: 100px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  object-position: top !important;

}

@media (min-width: 990px) {
  .check {
    display: flex;
  }


}

#main-con {
  height: 600px;
  max-height: 600px;
  overflow-y: auto;
  padding-top: 10px;
  position: relative;
}

#content-container {
  height: 600px;
  max-height: 600px;
  overflow: hidden !important;
}

#content-container>div {
  overflow: hidden !important;
}

#main-con::-webkit-scrollbar {
  width: 8px;
}

#main-con::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 10px;
}

#main-con ul::before {
  content: "";
  display: block;
  height: 10px;
}

.custom-scrollbar {
  overflow-y: auto;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 10px;
}

#map {
  width: 322px;
  width: 322px;
}

.check {
  margin-bottom: 100px;
}



/* publishing section */
.publishing-section {
  background-color: #ffffff;
}

.news-grid {
  margin-top: 20px;
}

.news-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #eaeaea;
}

.news-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.publishing-image-container {
  position: relative;
  overflow: hidden;
}

.publishing-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .publishing-image {
  transform: scale(1.05);
}

.news-date {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(0, 122, 255, 0.9);
  color: white;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 500;
  border-top-left-radius: 8px;
}

.news-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none !important;
}

.news-category {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: #007AFF;
  margin-bottom: 10px;
}

.news-title {
  font-size: 18px;
  font-weight: 700;
  color: #162f6a;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.news-card:hover .news-title {
  color: #007AFF;
}

.news-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.news-read-more {
  font-size: 14px;
  font-weight: 600;
  color: #007AFF;
  display: flex;
  align-items: center;
  margin-top: auto;
  transition: all 0.3s ease;
}

.news-read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.news-card:hover .news-read-more i {
  transform: translateX(5px);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: #007AFF;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #007AFF;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 122, 255, 0.2);
}

.primary-button:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 122, 255, 0.3);
}

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

  .news-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .news-content {
    padding: 20px;
  }

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


/* slider */
.image-slider {
  width: 100%;
  height: 100%;
  max-height: 700px;
  margin: auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.slider img {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: conver;
  display: block;
}


.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease-in-out;
}

.nav-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

#prev {
  left: 15px;
}

#next {
  right: 15px;
}

.dots-container {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.dot.active {
  transform: scale(1.6);
  background-color: white;
}

@media (max-width: 768px) {
  .slider img {
    height: 30vh;
  }

  .image-slider {
    height: 30vh;
  }

  .nav-button {
    padding: 8px 12px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}




/* footer */
.footer-section {
  background-image: linear-gradient(to right, #05235e, #0a3d82);
  position: relative;
  padding: 70px 0 30px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
}

.footer-pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/ui-elements/section-bg.webp);
  background-size: cover;
  opacity: 0.05;
  pointer-events: none;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #007AFF, #34C759);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}

.footer-logo-section {
  grid-column: 1 / 2;
}

.footer-contact {
  grid-column: 2 / 3;
  display: flex;
  flex-direction: column;
}

.contact-address,
.contact-emails {
  margin-bottom: 20px;
}

.contact-emails {
  margin-top: 20px;
}

.contact-emails a:hover i {
  transform: translateX(3px);
}

.footer-links.useful-links {
  grid-column: 3 / 4;
}

.footer-links.policies {
  grid-column: 4 / 5;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: translateY(-5px);
}

.footer-logo-section p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.8);
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #007AFF;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 122, 255, 0.4);
}

.footer-links {
  flex: 1 1 220px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 60px;
  height: 2px;
  background: #007AFF;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 1.6;
}

.footer-links a i {
  color: #007AFF;
  font-size: 10px;
  margin-right: 10px;
  transition: transform 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 3px;
}

.footer-links a:hover i {
  transform: translateX(3px);
}

.footer-contact {
  flex: 1 1 300px;
}

.address-contact p {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.address-contact i {
  width: 20px;
  color: #007AFF;
}

.address-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.address-contact a:hover {
  color: #ffffff;
}

.newsletter-form {
  margin-top: 25px;
}

.newsletter-form h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ffffff;
}

.newsletter-signup {
  margin-top: 10px;
}

.input-group {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.input-group input {
  flex: 1;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.9);
  outline: none;
}

.input-group button {
  border: none;
  background: linear-gradient(90deg, #007AFF, #34C759);
  color: white;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.input-group button:hover {
  background: linear-gradient(90deg, #0062CC, #2AAD4F);
}

.footer-flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 40px 0 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-flags .mini-flag {
  width: 40px;
  height: 30px;
  overflow: hidden;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.footer-flags .mini-flag:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.footer-flags .mini-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.copyright {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.copyright .copyright-row p {
  font-size: 14px;
}

/* Added styles for the copyright row and last updated section */
.copyright-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.last-updated {
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  .footer-logo-section,
  .footer-contact,
  .footer-links.useful-links,
  .footer-links.policies {
    grid-column: auto;
  }
}

@media (max-width: 768px) {

  .footer-section {
    padding: 60px 0 30px;
  }

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

  .footer-logo-section {
    text-align: center;
  }

  .footer-logo {
    max-width: 200px;
    margin: 0 auto 20px;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-title,
  .footer-links ul {
    text-align: center;
  }


  .address-contact p {
    text-align: center;
  }

  .contact-address,
  .contact-emails {
    text-align: center;
  }

  .newsletter-form {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-flags {
    gap: 10px;
  }

  .footer-flags .mini-flag {
    width: 30px;
    height: 22px;
  }
}

/* What We Do Section */
.what-we-do-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.what-we-do-section::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(0, 122, 255, 0.03);
  border-radius: 50%;
  top: 10%;
  right: -125px;
  z-index: 0;
}

.what-we-do-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(0, 122, 255, 0.05);
  border-radius: 50%;
  bottom: -175px;
  left: -175px;
  z-index: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #007AFF, #34C759);
  top: 0;
  left: 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
  transform: translateY(0);
}

.feature-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.feature-badge {
  background: #F2F2F7;
  color: #6E6E73;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 122, 255, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007AFF;
  font-size: 24px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: #007AFF;
  color: white;
  box-shadow: 0 10px 15px rgba(0, 122, 255, 0.2);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1D1D1F;
}

.feature-card p {
  color: #6E6E73;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.feature-footer {
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 15px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  color: #007AFF;
  font-weight: 600;
  transition: all 0.3s ease;
}

.feature-link i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.feature-link:hover {
  color: #0062CC;
}

.feature-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .feature-card {
    padding: 25px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Key Statistics Section */
.stats-section {
  position: relative;
  background-image: url(../images/ui-elements/section-bg.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 51, 102, 0.9), rgba(0, 122, 255, 0.85));
  z-index: 0;
}

.stats-section .section-info {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.stats-section .section-title {
  color: white;
}

.stats-section .section-title::after {
  background: white;
}

.stats-section .section-description {
  color: rgba(255, 255, 255, 0.9);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.stat-label {
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
}

@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card {
    padding: 20px 12px;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}

/* CTA Section */
.cta-section {
  background: linear-gradient(45deg, #f8f9fa, #eef0f5);
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #162f6a, #0066cc);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-content {
  flex: 1;
  padding: 50px;
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.cta-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-button.primary {
  background: white;
  color: #162f6a;
  border: 2px solid white;
}

.cta-button.primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.cta-image {
  flex: 0 0 300px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-image img {
  width: 100%;
  height: auto;
  max-width: 300px;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

@media (max-width: 992px) {
  .cta-container {
    flex-direction: column-reverse;
  }

  .cta-content {
    padding: 40px;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .cta-image {
    flex: 0 0 auto;
    padding: 30px 30px 0;
  }

  .cta-image img {
    max-width: 200px;
  }
}

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

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content {
    padding: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* Events Section */
.events-section {
  background-color: #f8f9fa;
}

.events-grid {
  margin-top: 20px;
}

.event-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #eaeaea;
}

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

.event-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-date {
  position: absolute;
  background: #007AFF;
  color: white;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.event-card:hover .event-date {
  background: #162f6a;
}

.event-day {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.event-month {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.event-image-container {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}

.event-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.event-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

.event-meta span {
  display: flex;
  align-items: center;
}

.event-meta i {
  margin-right: 5px;
  color: #007AFF;
}

.event-title {
  font-size: 18px;
  font-weight: 700;
  color: #162f6a;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.event-card:hover .event-title {
  color: #007AFF;
}

.event-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.event-button {
  background: #f0f0f0;
  color: #333;
  padding: 8px 15px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-align: center;
}

.event-card:hover .event-button {
  background: #007AFF;
  color: white;
}

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

  .event-card {
    margin-bottom: 20px;
  }

  .event-meta {
    flex-direction: column;
    gap: 5px;
  }
}

/* Partners Section */
.partners-section {
  background: linear-gradient(to bottom, #f8f9fa, white);
}

.partners-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 50px 0;
}

.partner-logo {
  background: white;
  border-radius: 16px;
  padding: 25px;
  width: calc(33.33% - 20px);
  max-width: 220px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.partner-logo:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 122, 255, 0.1);
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.partners-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.partner-button {
  display: inline-flex;
  align-items: center;
  background: white;
  color: #007AFF;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #007AFF;
  box-shadow: 0 10px 20px rgba(0, 122, 255, 0.1);
}

.partner-button i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.partner-button:hover {
  background: #007AFF;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 122, 255, 0.15);
}

.partner-button:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .partners-container {
    gap: 20px;
  }

  .partner-logo {
    width: calc(50% - 10px);
    height: 100px;
  }
}

@media (max-width: 576px) {
  .partners-container {
    gap: 15px;
  }

  .partner-logo {
    width: calc(50% - 8px);
    height: 80px;
    padding: 15px;
  }

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

/* Gallery Section */
.gallery-section {
  background-color: #f8f9fa;
  overflow: hidden;
  min-height: 800px;
}

.gallery-carousel {
  position: relative;
  margin: 0 auto;
  height: 600px;
  max-width: 1320px;
  margin-top: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.carousel-container {
  height: 100%;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.gallery-slide {
  flex: 0 0 100%;
  position: relative;
  height: 100%;
}

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

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  padding: 30px;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.slide-caption h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.slide-caption p {
  font-size: 16px;
  opacity: 0.9;
  max-width: 80%;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-control:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.gallery-control.prev {
  left: 20px;
}

.gallery-control.next {
  right: 20px;
}

.gallery-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.gallery-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dots .dot.active {
  background: white;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
  .gallery-carousel {
    height: 500px;
  }

  .slide-caption h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    min-height: 600px;
  }

  .gallery-carousel {
    height: 400px;
    border-radius: 8px;
  }

  .slide-caption {
    padding: 20px;
  }

  .slide-caption h3 {
    font-size: 20px;
  }

  .slide-caption p {
    font-size: 14px;
    max-width: 100%;
  }

  .gallery-control {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .gallery-carousel {
    height: 300px;
  }

  .slide-caption h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .gallery-control {
    width: 36px;
    height: 36px;
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  animation: float 3s ease-in-out infinite;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

.hero-stat:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-number {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.hero-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

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

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

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

@media (max-width: 768px) {
  .hero-stats {
    padding: 15px;
    gap: 15px;
  }

  .hero-stat {
    padding: 0 10px;
  }

  .hero-stat-number {
    font-size: 22px;
  }

  .hero-stat-label {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .hero-stat {
    width: 100%;
    padding: 10px 0;
  }

  .hero-stat:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* Enhance existing hero elements */
.hero {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
  background-image: url('/assets/images/common/bg.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-content {
  max-width: 800px;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 40px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mission & Vision Section */
.mission-vision-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.mission-vision-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 122, 255, 0.1) 0%, rgba(0, 122, 255, 0) 70%);
  top: -250px;
  left: -250px;
  border-radius: 50%;
  z-index: 0;
}

.mission-vision-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 122, 255, 0.08) 0%, rgba(0, 122, 255, 0) 70%);
  bottom: -150px;
  right: -150px;
  border-radius: 50%;
  z-index: 0;
}

.mission-vision-container {
  display: flex;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.mission-box,
.vision-box {
  flex: 1;
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-box:hover,
.vision-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mission-box::before,
.vision-box::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, rgba(0, 122, 255, 0.03) 0%, rgba(0, 122, 255, 0) 70%);
  top: -100%;
  left: -100%;
  border-radius: 50%;
  z-index: 0;
  transition: all 0.5s ease;
}

.mission-box:hover::before,
.vision-box:hover::before {
  transform: scale(1.1);
}

.mission-icon,
.vision-icon {
  width: 80px;
  height: 80px;
  background: #007AFF;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  font-size: 32px;
  box-shadow: 0 10px 20px rgba(0, 122, 255, 0.2);
}

.vision-icon {
  background: #34C759;
  box-shadow: 0 10px 20px rgba(52, 199, 89, 0.2);
}

.mission-box h2,
.vision-box h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1D1D1F;
}

.mission-box p,
.vision-box p {
  color: #6E6E73;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.mission-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #6E6E73;
}

.mission-list li i {
  color: #007AFF;
  margin-right: 10px;
  font-size: 18px;
}

.mission-action {
  margin-top: 30px;
}

.mission-btn {
  display: inline-flex;
  align-items: center;
  background: #007AFF;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mission-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.mission-btn:hover {
  background: #0062CC;
}

.mission-btn:hover i {
  transform: translateX(4px);
}

.vision-goals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.vision-goal {
  display: flex;
  align-items: center;
  background: rgba(52, 199, 89, 0.05);
  padding: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.vision-goal:hover {
  background: rgba(52, 199, 89, 0.1);
  transform: translateY(-2px);
}

.goal-icon {
  width: 40px;
  height: 40px;
  background: #34C759;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  margin-right: 14px;
  flex-shrink: 0;
}

.goal-text {
  font-weight: 600;
  color: #1D1D1F;
}

@media (max-width: 992px) {
  .mission-vision-container {
    flex-direction: column;
  }

  .mission-box,
  .vision-box {
    width: 100%;
  }

  .vision-goals {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .mission-vision-section {
    padding: 60px 0;
  }

  .mission-box,
  .vision-box {
    padding: 30px;
  }

  .mission-icon,
  .vision-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    border-radius: 16px;
  }

  .mission-box h2,
  .vision-box h2 {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .gallery-section {
    min-height: 700px;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    min-height: 600px;
  }
}

@media (max-width: 576px) {
  .gallery-section {
    min-height: 500px;
  }
}

/* Light Hero Section Styles */
.light-hero-section {
  position: relative;
  min-height: calc(100vh - 110px);
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url(../../assets/images/common/bg.webp);
  background-size: cover;
  background-position: bottom;
  z-index: 1;
  transition: filter 0.5s ease;
}

.light-hero-section.bg-loading {
  filter: blur(10px);
}

.light-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 77, 160, 0.65), rgba(0, 77, 160, 0.65));
  background-size: 100% 100%;
  background-position: bottom;
  z-index: 1;
  pointer-events: none;
}

.light-hero-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.light-hero-pattern::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.light-hero {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  min-height: auto;
}

.light-hero-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 20;
}

.light-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.light-hero-badge {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 30px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.light-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
  color: #ffffff;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.accent-text {
  color: #5cefff;
  position: relative;
  z-index: 1;
}

.accent-text::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: rgba(92, 239, 255, 0.25);
  z-index: -1;
  border-radius: 10px;
  transform: skewX(-5deg);
}

.light-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  max-width: 92%;
  font-weight: 400;
}

.light-hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 44px;
  position: relative;
  z-index: 20;
}

.light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  z-index: 20;
  pointer-events: auto;
}

.primary-btn {
  background-color: #007AFF;
  color: #fff;
  border: 2px solid #ffffff;
}

.primary-btn:hover {
  background-color: #ecf0f1;
  border-color: #ecf0f1;
}

.outline-btn {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.outline-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.light-hero-stats {
  display: flex;
  gap: 40px;
}

.light-hero-stat {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.light-hero-stat:hover {
  transform: translateY(-5px);
}

.light-hero-stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.light-hero-stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.light-hero-image {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.yorker-map {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
  border-radius: 20px;
  filter: drop-shadow(0 0 10px rgba(0, 122, 255, 0.2));
}

.yorker-map-container {
  position: relative;
  width: 450px;
  height: 450px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(92, 239, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateX(0deg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.yorker-map-container:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(92, 239, 255, 0.3);
  transform: perspective(1000px) rotateX(5deg) scale(1.05);
}

.yorker-map-container::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 80%);
  border-radius: 50%;
  filter: blur(10px);
  z-index: 1;
  opacity: 0.8;
}

.yorker-map {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.95;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.25)) brightness(1.05) contrast(1.05);
}

.yorker-map-container:hover .yorker-map {
  opacity: 1;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3)) brightness(1.1) contrast(1.1);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, rgba(92, 239, 255, 0.1) 100%);
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.yorker-logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  text-align: center;
  transition: all 0.5s ease;
}

.yorker-logo {
  width: 60%;
  max-width: 200px;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
  transition: all 0.4s ease;
  opacity: 0.9;
}

.yorker-map-container:hover .yorker-logo {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
  opacity: 1;
}

@keyframes dotPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 8px rgba(92, 239, 255, 0.6);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.7;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.9), 0 0 12px rgba(92, 239, 255, 0.8);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 8px rgba(92, 239, 255, 0.6);
  }
}

.light-hero-countries {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.country-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #007AFF;
  box-shadow: 0 0 20px rgba(0, 122, 255, 0.9);
  transform: translate(-50%, -50%);
  animation: dotPulse 2s infinite ease-in-out;
  z-index: 6;
  pointer-events: all;
  cursor: pointer;
}

.country-dot::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 122, 255, 0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 2s infinite ease-out;
}

@keyframes dotPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    width: 24px;
    height: 24px;
    opacity: 0;
  }
}

/* Country dot positions */
.country-dot.brazil {
  top: 65%;
  left: 30%;
  animation-delay: 0.2s;
}

.country-dot.russia {
  top: 25%;
  left: 72%;
  animation-delay: 0.4s;
}

.country-dot.india {
  top: 45%;
  left: 65%;
  animation-delay: 0.6s;
}

.country-dot.china {
  top: 35%;
  left: 75%;
  animation-delay: 0.8s;
}

.country-dot.south-africa {
  top: 70%;
  left: 55%;
  animation-delay: 1s;
}

.country-dot.egypt {
  top: 40%;
  left: 55%;
  animation-delay: 1.2s;
}

.country-dot.ethiopia {
  top: 52%;
  left: 57%;
  animation-delay: 1.4s;
}

.country-dot.iran {
  top: 38%;
  left: 60%;
  animation-delay: 1.6s;
}

.country-dot.uae {
  top: 43%;
  left: 62%;
  animation-delay: 1.8s;
}

.country-dot.indonesia {
  top: 60%;
  left: 78%;
  animation-delay: 2s;
}

.country-dot.saudi {
  top: 42%;
  left: 58%;
  animation-delay: 2.2s;
}

/* Create distinctive colors for each country */
.country-dot.brazil {
  background-color: #009c3b;
  box-shadow: 0 0 20px rgba(0, 156, 59, 0.9);
}

.country-dot.russia {
  background-color: #0039a6;
  box-shadow: 0 0 20px rgba(0, 57, 166, 0.9);
}

.country-dot.india {
  background-color: #ff9933;
  box-shadow: 0 0 20px rgba(255, 153, 51, 0.9);
}

.country-dot.china {
  background-color: #de2910;
  box-shadow: 0 0 20px rgba(222, 41, 16, 0.9);
}

.country-dot.south-africa {
  background-color: #007749;
  box-shadow: 0 0 20px rgba(0, 119, 73, 0.9);
}

.country-dot.egypt {
  background-color: #e4001b;
  box-shadow: 0 0 20px rgba(228, 0, 27, 0.9);
}

.country-dot.ethiopia {
  background-color: #ffc621;
  box-shadow: 0 0 20px rgba(255, 198, 33, 0.9);
}

.country-dot.iran {
  background-color: #239f40;
  box-shadow: 0 0 20px rgba(35, 159, 64, 0.9);
}

.country-dot.uae {
  background-color: #00732f;
  box-shadow: 0 0 20px rgba(0, 115, 47, 0.9);
}

.country-dot.indonesia {
  background-color: #ff0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.9);
}

.country-dot.saudi {
  background-color: #01401c;
  box-shadow: 0 0 20px rgba(1, 64, 28, 0.9);
}

.country-dot[title]:hover::before {
  content: attr(title);
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 100;
}

.country-dot[title]:hover::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
  z-index: 100;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .light-hero h1 {
    font-size: 2.8rem;
  }

  .yorker-map-container {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 992px) {
  .light-hero-section {
    padding: 100px 0 80px;
  }

  .light-hero {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .light-hero-content {
    max-width: 100%;
    padding: 0 20px;
    order: 1;
  }

  .light-hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .light-hero-buttons {
    justify-content: center;
  }

  .light-hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .light-hero-image {
    display: none !important;
  }

  .hero-globe-container,
  .yorker-circular-animation,
  .yorker-orbit {
    display: none !important;
  }

  .yorker-map-container {
    width: 350px;
    height: 350px;
    margin-top: 0;
    transform: none !important;
  }

  .yorker-map-container:hover {
    transform: none !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(92, 239, 255, 0.2);
  }
}

@media (max-width: 768px) {
  .light-hero-section {
    padding: 80px 0 60px;
    background-attachment: scroll;
  }

  .light-hero h1 {
    font-size: 2.4rem;
  }

  .light-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .light-btn {
    padding: 12px 26px;
    font-size: 0.95rem;
  }

  .yorker-map-container {
    width: 320px;
    height: 320px;
  }

  .yorker-logo {
    width: 55%;
  }

  .country-dot {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 576px) {
  .light-hero-section {
    padding: 60px 0 40px;
  }

  .light-hero h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .light-hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  .light-hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    width: 100%;
  }

  .light-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .light-hero-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }

  .light-hero-stat {
    flex: 0 0 calc(33.333% - 15px);
    text-align: center;
  }

  .light-hero-stat-number {
    font-size: 1.8rem;
  }

  .yorker-map-container {
    width: 280px;
    height: 280px;
    border-radius: 15px;
  }

  .yorker-logo {
    width: 50%;
  }

  .country-dot {
    width: 10px;
    height: 10px;
  }

  .country-dot::after {
    width: 24px;
    height: 24px;
  }
}

/* Hero Globe Styles */
.hero-globe-container {
  position: relative;
  width: 480px;
  height: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  z-index: 60;
}

.globe-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  transform-style: preserve-3d;
  animation: globeRotate 30s linear infinite;
  z-index: 5;
}

@keyframes globeRotate {
  0% {
    transform: rotateY(0) rotateX(12deg);
  }

  100% {
    transform: rotateY(360deg) rotateX(12deg);
  }
}

.globe {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(0, 38, 87, 0.2);
  background-image: linear-gradient(135deg, rgba(0, 38, 87, 0.6) 0%, rgba(0, 110, 185, 0.4) 100%);
  box-shadow:
    inset 0 0 30px rgba(255, 255, 255, 0.15),
    0 0 40px rgba(92, 239, 255, 0.3);
  overflow: hidden;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transform-style: preserve-3d;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.globe-map {
  position: absolute;
  width: 200%;
  height: 100%;
  left: -50%;
  top: 0;
  opacity: 0.7;
  filter: grayscale(20%) brightness(1.2) contrast(1.2);
  mix-blend-mode: overlay;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  animation: globeMapRotate 30s linear infinite;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes globeMapRotate {
  0% {
    left: -50%;
  }

  100% {
    left: 0%;
  }
}

.globe-shadow {
  position: absolute;
  width: 100%;
  height: 20px;
  bottom: -50px;
  border-radius: 50%;
  filter: blur(15px);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
  transform: rotateX(90deg) scale(1.2, 0.8);
  opacity: 0.5;
  z-index: 1;
}

.globe-rings {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  z-index: 4;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(92, 239, 255, 0.15);
  transform-style: preserve-3d;
  animation: ringSpin 20s linear infinite;
}

.ring-1 {
  width: 380px;
  height: 380px;
  animation-duration: 30s;
  border-width: 2px;
  border-color: rgba(92, 239, 255, 0.2);
  transform: rotateX(75deg) rotateY(15deg);
}

.ring-2 {
  width: 420px;
  height: 420px;
  animation-duration: 20s;
  animation-direction: reverse;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.1);
  transform: rotateX(65deg) rotateY(5deg);
}

.ring-3 {
  width: 460px;
  height: 460px;
  animation-duration: 40s;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.05);
  transform: rotateX(80deg) rotateY(25deg);
}

@keyframes ringSpin {
  0% {
    transform: rotateX(75deg) rotateY(0deg);
  }

  100% {
    transform: rotateX(75deg) rotateY(360deg);
  }
}

.particles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  z-index: 3;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(92, 239, 255, 0.8);
  box-shadow: 0 0 10px rgba(92, 239, 255, 0.6);
  transform-style: preserve-3d;
  animation: particleFloat 6s ease-in-out infinite;
}

.particle.p1 {
  top: 25%;
  left: 20%;
  animation-delay: 0s;
}

.particle.p2 {
  top: 15%;
  left: 70%;
  animation-delay: 0.6s;
}

.particle.p3 {
  top: 60%;
  left: 80%;
  animation-delay: 1.2s;
}

.particle.p4 {
  top: 75%;
  left: 30%;
  animation-delay: 1.8s;
}

.particle.p5 {
  top: 40%;
  left: 10%;
  animation-delay: 2.4s;
}

.particle.p6 {
  top: 85%;
  left: 60%;
  animation-delay: 3s;
}

.particle.p7 {
  top: 30%;
  left: 85%;
  animation-delay: 3.6s;
}

.particle.p8 {
  top: 50%;
  left: 40%;
  animation-delay: 4.2s;
}

@keyframes particleFloat {

  0%,
  100% {
    transform: translate3d(0, 0, 10px);
    opacity: 1;
  }

  50% {
    transform: translate3d(15px, -10px, 30px);
    opacity: 0.8;
  }
}

.connection-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.connection {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(92, 239, 255, 0), rgba(92, 239, 255, 0.6), rgba(92, 239, 255, 0));
  animation: connectionPulse 4s ease-in-out infinite;
  transform-origin: left center;
}

.connection.c1 {
  top: 25%;
  left: 20%;
  width: 150px;
  transform: rotate(30deg);
  animation-delay: 0.5s;
}

.connection.c2 {
  top: 60%;
  left: 80%;
  width: 120px;
  transform: rotate(-45deg);
  animation-delay: 1.5s;
}

.connection.c3 {
  top: 40%;
  left: 10%;
  width: 180px;
  transform: rotate(60deg);
  animation-delay: 2.5s;
}

.connection.c4 {
  top: 75%;
  left: 30%;
  width: 140px;
  transform: rotate(-15deg);
  animation-delay: 3.5s;
}

@keyframes connectionPulse {

  0%,
  100% {
    opacity: 0.2;
    transform-origin: left center;
  }

  50% {
    opacity: 0.8;
    transform-origin: left center;
  }
}

.stats-highlight {
  position: absolute;
  bottom: 40px;
  right: 30px;
  z-index: 10;
}

.stats-highlight.economic {
  bottom: 100px;
  right: 10px;
}

.stats-highlight.diplomacy {
  bottom: 160px;
  right: 20px;
}

@media (max-width: 992px) {
  .stats-highlight {
    bottom: 30px;
    right: 20px;
  }

  .stats-highlight.economic {
    bottom: 90px;
    right: 5px;
  }

  .stats-highlight.diplomacy {
    bottom: 150px;
    right: 15px;
  }
}

@media (max-width: 768px) {
  .stats-highlight.economic {
    display: none;
  }

  .stats-highlight.diplomacy {
    display: none;
  }
}

.highlight-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: highlightPulse 4s infinite;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@keyframes highlightPulse {

  0%,
  100% {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 0 0 rgba(92, 239, 255, 0);
  }

  50% {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 0 15px rgba(92, 239, 255, 0.3);
  }
}

.highlight-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5cefff 0%, #2d9aff 100%);
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 0 5px 10px rgba(92, 239, 255, 0.3);
  color: white;
  font-size: 16px;
}

.highlight-text {
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
  font-size: 14px;
}

@media (max-width: 576px) {
  .hero-globe-container {
    width: 300px;
    height: 300px;
  }

  .globe-wrapper {
    width: 180px;
    height: 180px;
  }

  .ring-1 {
    width: 220px;
    height: 220px;
  }

  .ring-2 {
    width: 250px;
    height: 250px;
  }

  .ring-3 {
    width: 280px;
    height: 280px;
  }

  .yorkerif-badge {
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
  }

  .yorkerif-badge-logo {
    width: 35px;
  }

  .highlight-item {
    padding: 8px 16px;
  }

  .highlight-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .highlight-text {
    font-size: 12px;
  }
}

.particle {
  width: 6px;
  height: 6px;
}

/* Improved About Section Styles */
.about-section.enhanced {
  position: relative;
  background: linear-gradient(to right, #f8fafc, #f0f9ff);
  padding: 7rem 0;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.about-section.enhanced .section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: #0f172a;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.about-section.enhanced .section-description {
  font-size: 1.15rem;
  color: #475569;
  max-width: 700px;
  line-height: 1.8;
}

.about-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(99, 102, 241, 0.08) 2px, transparent 2px);
  background-size: 40px 40px;
  background-position: 0 0;
  z-index: 0;
  opacity: 0.6;
  animation: particlesMove 60s linear infinite;
}

@keyframes particlesMove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 40px 40px;
  }
}

.about-pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236366f1' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

/* Enhanced About Container */
.enhanced-about-container {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  position: relative;
  z-index: 1;
  margin-top: 3.5rem;
}

/* Visual Column */
.enhanced-about-visual {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.visual-accent {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -25px;
  left: -25px;
  border-radius: 30px;
  z-index: -1;
  filter: blur(5px);
}

.logo-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07), 0 5px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.logo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 10px 20px rgba(0, 0, 0, 0.04);
}

.logo-glow-effect {
  position: absolute;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(139, 92, 246, 0.15) 35%, transparent 70%);
  top: -40%;
  left: -40%;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  transform: scale(0.8);
}

.logo-card:hover .logo-glow-effect {
  opacity: 1;
  animation: pulsate 3s ease-in-out infinite;
}

@keyframes pulsate {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }

  100% {
    transform: scale(0.8);
    opacity: 0.3;
  }
}

.enhanced-logo-image {
  max-width: 85%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 15px 25px rgba(59, 130, 246, 0.2));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-card:hover .enhanced-logo-image {
  transform: scale(1.08);
}

.logo-reflection {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.95));
  transform: scaleY(-1);
  filter: blur(5px);
  opacity: 0.4;
  z-index: 0;
}

/* Stats Styles */
.stats-wrapper {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
}

.enhanced-stat-card {
  flex: 1;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.enhanced-stat-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07), 0 5px 12px rgba(0, 0, 0, 0.04);
}

.stat-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #dbeafe, #c7d2fe);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enhanced-stat-card:hover .stat-icon-wrapper {
  transform: scale(1.1) translateZ(20px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.stat-icon-wrapper i {
  font-size: 1.5rem;
  color: #3b82f6;
  transition: transform 0.3s ease;
}

.enhanced-stat-card:hover .stat-icon-wrapper i {
  transform: scale(1.1);
}

.stat-details {
  text-align: center;
  z-index: 1;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.stat-description {
  font-size: 0.95rem;
  color: #475569;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.stat-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.enhanced-stat-card:hover .stat-highlight {
  transform: scaleX(1);
}

/* Country Flags Section */
.country-flags {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.country-flags:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07), 0 5px 12px rgba(0, 0, 0, 0.04);
}

.flag-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.25rem;
  text-align: center;
}

.flags-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.flags-row:last-child {
  margin-bottom: 0;
}

.mini-flag {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.mini-flag:hover {
  transform: scale(1.25);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.mini-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Column */
.enhanced-about-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
}

.content-badge {
  display: inline-block;
  background: linear-gradient(90deg, #bae6fd, #c7d2fe);
  color: #1e40af;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 5px 15px rgba(56, 189, 248, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.2);
}

.content-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.text-highlight {
  position: relative;
  color: #2563eb;
  display: inline-block;
  transition: color 0.3s ease;
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background-color: rgba(59, 130, 246, 0.15);
  z-index: -1;
  transform: skewX(-5deg);
  transition: height 0.3s ease, background-color 0.3s ease;
}

.text-highlight:hover {
  color: #1d4ed8;
}

.text-highlight:hover::after {
  height: 50%;
  background-color: rgba(59, 130, 246, 0.25);
}

/* Quote */
.content-quote {
  background: linear-gradient(135deg, #f1f5f9, #f8fafc);
  border-left: 4px solid #3b82f6;
  padding: 1.75rem;
  border-radius: 0 12px 12px 0;
  position: relative;
  margin: 1.75rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-quote:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.quote-icon {
  color: #cbd5e1;
  font-size: 1.75rem;
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
}

.content-quote blockquote {
  font-style: italic;
  color: #475569;
  font-size: 1.15rem;
  margin-left: 2.75rem;
  line-height: 1.6;
}

.content-paragraph {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

/* Pillars Section */
.pillars-section {
  margin: 2.5rem 0;
}

.pillars-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.75rem;
  position: relative;
  display: inline-block;
}

.pillars-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 3px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pillar-item {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.pillar-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
}

.pillar-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #dbeafe, #ede9fe);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-item:hover .pillar-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.pillar-icon i {
  font-size: 1.5rem;
  color: #3b82f6;
  transition: transform 0.3s ease;
}

.pillar-item:hover .pillar-icon i {
  transform: scale(1.1);
}

.pillar-content {
  flex: 1;
}

.pillar-content h5 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.pillar-content p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 1.25rem;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
}


.primary-btn:hover {
  background: linear-gradient(90deg, #2563eb, #4338ca);
}

.secondary-btn {
  background: white;
  color: #3b82f6;
  border: 2px solid #e2e8f0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.secondary-btn:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  border-color: #bfdbfe;
  color: #1d4ed8;
}

/* Achievements Strip */
.achievements-strip {
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06), 0 5px 15px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.achievements-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-5px);
}

.achievement-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #dbeafe, #ede9fe);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-item:hover .achievement-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.achievement-icon i {
  font-size: 1.25rem;
  color: #3b82f6;
  transition: transform 0.3s ease;
}

.achievement-item:hover .achievement-icon i {
  transform: scale(1.1);
}

.achievement-text {
  font-size: 1rem;
  font-weight: 600;
  color: #334155;
  transition: color 0.3s ease;
}

.achievement-item:hover .achievement-text {
  color: #1e40af;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .enhanced-about-container {
    flex-direction: column;
    gap: 2.5rem;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievements-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-section.enhanced {
    padding: 4rem 0;
  }

  .about-section.enhanced .section-title {
    font-size: 2.25rem;
  }

  .stats-wrapper {
    flex-direction: column;
    gap: 1.25rem;
  }

  .mini-flag {
    width: 35px;
    height: 35px;
  }

  .content-heading {
    font-size: 1.9rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

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

  .achievements-strip {
    grid-template-columns: 1fr;
  }

  .achievement-item {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 1rem;
  }

  .achievement-icon {
    min-width: 2.5rem;
    height: 2.5rem;
  }

  .achievement-text {
    text-align: left;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about-section.enhanced {
    padding: 3rem 0;
  }

  .about-section.enhanced .section-title {
    font-size: 1.85rem;
  }

  .flags-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .mini-flag {
    width: 30px;
    height: 30px;
  }

  .content-heading {
    font-size: 1.6rem;
  }

  .content-quote blockquote {
    font-size: 1rem;
    margin-left: 2.25rem;
  }

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

  .achievements-strip {
    padding: 1.25rem;
  }

  .achievement-item {
    gap: 0.75rem;
  }

  .achievement-icon {
    min-width: 2.25rem;
    height: 2.25rem;
  }

  .achievement-text {
    font-size: 0.9rem;
  }
}

/* Flag tooltip styles */
.flag-tooltip {
  position: absolute;
  background: rgba(15, 23, 42, 0.9);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  pointer-events: none;
  z-index: 1000;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(10px);
  animation: tooltipFadeIn 0.2s ease forwards;
}

.flag-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(15, 23, 42, 0.9);
}

@keyframes tooltipFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* Yorker Holidays Nations Showcase Section */
.yorker-nations-section {
  background: linear-gradient(145deg, #f8fafc 0%, #edf2f7 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.yorker-nations-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

/* New styles for enhanced map container and animations */
.nation-map-container {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}


/* Enhanced button animations */
#main-con button {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#main-con button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#main-con button:active {
  transform: translateY(1px) scale(0.98);
}

#main-con button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

#main-con button:hover::after {
  transform: translateX(0);
}

/* Improve the navigation buttons for mobile view */
.flex.justify-between button {
  transition: all 0.3s ease;
  overflow: hidden;
}


.flex.justify-between button span {
  transition: transform 0.3s ease;
}


/* Add animation for content transitions */
.transition.ease-out {
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Fix for country content overlay during transitions */
.cust {
  position: relative;
  min-height: 600px;
  /* Adjust based on your content */
}

.cust>div[data-country] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* Enhance shadow effects */
.shadow-lg {
  box-shadow: 0 10px 25px rgba(0, 50, 100, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nation-map-container {
    max-width: 280px;
    margin: 0 auto 20px;
  }

  .cust {
    min-height: 700px;
    /* Taller on mobile due to vertical layout */
  }
}

@media (max-width: 480px) {
  .nation-map-container {
    max-width: 220px;
  }

  #main-con button {
    padding: 8px 12px;
    font-size: 14px;
  }
}

.nations-carousel {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}

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

.nations-card {
  flex: 0 0 100%;
  display: flex;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transform: scale(0.98);
  transition: all 0.3s ease;
}

.nations-card:hover {
  transform: scale(1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.nation-flag {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nation-flag img {
  width: 90%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.15));
  transition: transform 0.5s ease;
}

.nations-card:hover .nation-flag img {
  transform: scale(1.05);
}

.flag-reflection {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
  transform: scaleY(-1);
  transform-origin: bottom;
  opacity: 0.5;
}

.nation-content {
  flex: 0 0 60%;
  padding: 30px;
}

.nation-name {
  font-size: 28px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
  position: relative;
}

.nation-name::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #3182ce;
  margin-top: 10px;
}

.nation-stats {
  margin-bottom: 20px;
}

.nation-stat {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.nation-stat i {
  color: #4299e1;
  margin-right: 12px;
  font-size: 16px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(66, 153, 225, 0.1);
  border-radius: 50%;
}

.nation-stat span {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.5;
}

.nation-description p {
  font-size: 15px;
  line-height: 1.6;
  color: #718096;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin: 0 15px;
}

.carousel-arrow:hover {
  background: #3182ce;
  color: #ffffff;
}

.carousel-arrow i {
  font-size: 16px;
}

.carousel-indicators {
  display: flex;
  align-items: center;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  width: 14px;
  height: 14px;
  background: #3182ce;
}

/* Yorker Holidays Initiatives Timeline Section */
.initiatives-timeline-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.timeline-container {
  position: relative;
  margin-top: 50px;
  padding: 20px 0;
}

.timeline-track {
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, #3182ce 10%, #3182ce 90%, transparent 100%);
  transform: translateX(-50%);
}

.timeline-event {
  position: relative;
  margin-bottom: 80px;
  width: 50%;
  padding-right: 50px;
}

.timeline-event.right {
  margin-left: 50%;
  padding-left: 50px;
  padding-right: 0;
}

.event-dot {
  position: absolute;
  top: 20px;
  right: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3182ce;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.3);
  z-index: 2;
}

.timeline-event.right .event-dot {
  right: auto;
  left: -9px;
}

.event-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.event-year {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  background: #ebf8ff;
  color: #2b6cb0;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 15px;
}

.event-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 12px;
}

.event-description {
  font-size: 15px;
  line-height: 1.6;
  color: #718096;
  margin-bottom: 0;
}

.event-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #edf2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4299e1;
  font-size: 18px;
  transition: all 0.3s ease;
}

.event-card:hover .event-icon {
  background: #4299e1;
  color: #ffffff;
}

/* Economic Cooperation Section */
.economic-cooperation-section {
  padding: 80px 0;
  background: linear-gradient(145deg, #f5f7fa 0%, #eef1f5 100%);
  position: relative;
  overflow: hidden;
}

.cooperation-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='96' viewBox='0 0 60 96'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.03'%3E%3Cpath d='M36 10a6 6 0 0 1 12 0v12a6 6 0 0 1-12 0V10zm24 78a6 6 0 0 1-12 0V76a6 6 0 0 1 12 0v12zm-12 0a6 6 0 0 1-12 0V76a6 6 0 0 1 12 0v12zm-12 0a6 6 0 0 1-12 0V76a6 6 0 0 1 12 0v12zM0 10a6 6 0 0 1 12 0v12a6 6 0 0 1-12 0V10zm12 0a6 6 0 0 1 12 0v12a6 6 0 0 1-12 0V10zm12 0a6 6 0 0 1 12 0v12a6 6 0 0 1-12 0V10zm12 0a6 6 0 0 1 12 0v12a6 6 0 0 1-12 0V10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.economic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
  overflow: visible !important;
  /* Ensure grid content can overflow without scrollbar */
}

.cooperation-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  transform-style: preserve-3d;
  /* Better handling of animations */
  backface-visibility: hidden;
  /* Prevents flickering during animation */
}

.cooperation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-icon {
  flex: 0 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3182ce;
  color: #ffffff;
  font-size: 24px;
}

.card-content {
  flex: 1;
  padding: 25px;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
}

.card-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #718096;
  margin-bottom: 20px;
}

.card-stats {
  display: flex;
  margin-bottom: 20px;
}

.card-stat {
  flex: 1;
  text-align: center;
  padding: 0 10px;
}

.card-stat:first-child {
  border-right: 1px solid #e2e8f0;
}

.stat-value {
  font-size: 22px;
  font-weight: 700;
  color: #2b6cb0;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  color: white;
}

.card-progress-wrapper {
  margin-top: 15px;
}

.card-progress-track {
  height: 8px;
  background: #edf2f7;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.card-progress-bar {
  height: 100%;
  background: linear-gradient(to right, #4299e1, #3182ce);
  border-radius: 4px;
  transition: width 1.5s ease;
}

.card-progress-label {
  font-size: 13px;
  color: #718096;
  text-align: right;
}

.cooperation-cta {
  margin-top: 50px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}

.cta-content p {
  font-size: 15px;
  color: white;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 30px;
  background: #3182ce;
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button span {
  margin-right: 10px;
}

.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover {
  background: #2c5282;
  transform: translateY(-2px);
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* Interactive Map Section */
.interactive-map-section {
  padding: 80px 0;
  background: #ffffff;
}

.map-container {
  position: relative;
  margin-top: 50px;
  display: flex;
  gap: 30px;
}

.world-map {
  flex: 3;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  background: #f8fafc;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

.map-marker {
  position: absolute;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
}

.marker-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3182ce;
  z-index: 3;
}

.map-marker.new-member .marker-dot {
  background: #ed8936;
}

.marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(49, 130, 206, 0.4);
  animation: mapPulse 2s infinite;
  z-index: 2;
}

.map-marker.new-member .marker-pulse {
  background: rgba(237, 137, 54, 0.4);
}

@keyframes mapPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  70% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

.marker-label {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: #2d3748;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-marker:hover .marker-label {
  opacity: 1;
}

.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.connection-path {
  fill: none;
  stroke: rgba(49, 130, 206, 0.3);
  stroke-width: 1.5;
  stroke-dasharray: 5;
  stroke-dashoffset: 0;
  animation: connectionDash 30s linear infinite;
}

@keyframes connectionDash {
  to {
    stroke-dashoffset: 1000;
  }
}

.map-legend {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  padding: 10px 15px;
  z-index: 10;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.legend-item:last-child {
  margin-bottom: 0;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 10px;
}

.legend-dot.founding {
  background: #3182ce;
}

.legend-dot.new {
  background: #ed8936;
}

.legend-line {
  width: 20px;
  height: 2px;
  margin-right: 10px;
  background: rgba(49, 130, 206, 0.5);
  position: relative;
}

.legend-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(90deg,
      rgba(49, 130, 206, 0.5),
      rgba(49, 130, 206, 0.5) 2px,
      transparent 2px,
      transparent 5px);
}

.legend-item span {
  font-size: 12px;
  color: #4a5568;
}

.map-info-panel {
  flex: 1;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.info-panel-header {
  padding: 20px;
  background: #3182ce;
}

.info-panel-header h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.info-panel-stats {
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.info-stat {
  flex: 1;
  text-align: center;
}

.info-stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #2b6cb0;
  margin-bottom: 5px;
}

.info-stat-label {
  font-size: 13px;
  color: #718096;
}

.info-panel-content {
  padding: 20px;
}

.info-panel-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #718096;
  margin-bottom: 0;
}

.info-panel-actions {
  padding: 0 20px 20px;
}

.info-panel-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 6px;
  background: #ebf8ff;
  color: #3182ce;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.info-panel-button span {
  margin-right: 10px;
}

.info-panel-button i {
  transition: transform 0.3s ease;
}

.info-panel-button:hover {
  background: #bee3f8;
}

.info-panel-button:hover i {
  transform: translateX(3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .economic-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    flex-direction: column;
  }

  .map-info-panel {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .nations-card {
    flex-direction: column;
  }

  .nation-flag,
  .nation-content {
    flex: 0 0 100%;
  }

  .nation-flag {
    padding: 20px 0;
  }

  .nation-flag img {
    max-height: 150px;
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-event {
    width: 100%;
    padding-left: 60px;
    padding-right: 0;
  }

  .timeline-event.right {
    margin-left: 0;
    padding-left: 60px;
  }

  .event-dot {
    left: 11px;
    right: auto;
  }

  .timeline-event.right .event-dot {
    left: 11px;
  }

  .cooperation-cta {
    flex-direction: column;
    text-align: center;
  }

  .cta-content {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .card-stats {
    flex-direction: column;
  }

  .card-stat {
    margin-bottom: 15px;
  }

  .card-stat:first-child {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
  }

  .info-panel-stats {
    flex-direction: column;
  }

  .info-stat {
    margin-bottom: 15px;
  }

  .info-stat:last-child {
    margin-bottom: 0;
  }
}

/* Add animation for content transitions */
.transition.ease-out {
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Add keyframe animation for pulse effect */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Enhance shadow effects */
.shadow-lg {
  box-shadow: 0 10px 25px rgba(0, 50, 100, 0.1);
}

/* Fix for AOS animations causing scrollbars */
[data-aos] {
  overflow: hidden;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

/* Ensure parent containers don't show scrollbars during animations */
main.body {
  overflow: visible !important;
}

section {
  overflow: hidden !important;
}

.footer-contact .footer-title {
  margin-bottom: 15px;
}

.contact-address,
.contact-emails,
.footer-links {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px;
  transition: all 0.3s ease;
}

.address-contact p {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.5;
}

.address-contact p:last-child {
  margin-bottom: 0;
}

/* Performance optimizations for animations */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hardware acceleration for animations */
.animate-all,
[class*='transition-'],
[class*='transform-'],
.timeline-item,
.stat-card,
.feature-card,
.hero-content,
.country-dot,
.floating-element,
.particle,
.globe-map,
.ring,
.btn {
  transform: translateZ(0);
  will-change: transform, opacity;
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Optimize animation timing */
[class*='transition-'],
.btn,
.card,
.timeline-item,
.stat-box,
.feature-card {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reduce animation duration for better performance */
.country-dot,
.particle,
.floating-element {
  animation-duration: 2s;
}

/* Optimize heavy animations */
.globe-map {
  animation: globeMapRotate 30s linear infinite;
  transform: translate3d(0, 0, 0);
}

.particle {
  animation: particleFloat 4s ease-in-out infinite;
  transform: translate3d(0, 0, 0);
}

/* Reduce animation complexity */
@media (prefers-reduced-motion: reduce) {

  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Yorker Holidays Circular Animation Styles */
.yorker-circular-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  /* Increased from 500px */
  height: 600px;
  /* Increased from 500px */
  z-index: 15;
}

.yorker-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  /* Increased from 140px */
  height: 280px;
  /* Increased from 140px */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.yorker-center-logo img {
  width: 220px;
  /* Increased from 100px */
  height: auto;
  filter: brightness(1.2);
}

.yorker-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: yorkerOrbitRotate 40s linear infinite;
}

.yorker-orbit-1 {
  width: 400px;
  height: 400px;
  animation-duration: 40s;
}

.yorker-country-logo {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: 2px solid rgba(0, 122, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.yorker-country-logo:hover {
  transform: scale(1.3);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 122, 255, 0.6);
  z-index: 100;
}

.yorker-country-logo img {
  width: 36px;
  height: 26px;
  border-radius: 4px;
  object-fit: cover;
}

/* Positioning all 11 countries evenly around the orbit */
.yorker-country-logo.brazil {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.yorker-country-logo.russia {
  top: 8.66%;
  right: 25%;
  transform: rotate(30deg);
}

.yorker-country-logo.india {
  top: 25%;
  right: 8.66%;
  transform: rotate(60deg);
}

.yorker-country-logo.china {
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(90deg);
}

.yorker-country-logo.south-africa {
  bottom: 25%;
  right: 8.66%;
  transform: rotate(120deg);
}

.yorker-country-logo.egypt {
  bottom: 8.66%;
  right: 25%;
  transform: rotate(150deg);
}

.yorker-country-logo.ethiopia {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}

.yorker-country-logo.iran {
  bottom: 8.66%;
  left: 25%;
  transform: rotate(210deg);
}

.yorker-country-logo.uae {
  bottom: 25%;
  left: 8.66%;
  transform: rotate(240deg);
}

.yorker-country-logo.indonesia {
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(270deg);
}

.yorker-country-logo.saudi-arabia {
  top: 25%;
  left: 8.66%;
  transform: rotate(300deg);
}

@keyframes yorkerOrbitRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Pulsing animation for center logo */
.yorker-center-logo {
  animation: yorkerCenterPulse 4s ease-in-out infinite;
}

@keyframes yorkerCenterPulse {

  0%,
  100% {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 rgba(92, 239, 255, 0);
  }

  50% {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 30px rgba(92, 239, 255, 0.4);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .yorker-circular-animation {
    width: 500px;
    /* Increased from 400px */
    height: 500px;
    /* Increased from 400px */
  }

  .yorker-orbit-1 {
    width: 400px;
    /* Increased from 320px */
    height: 400px;
    /* Increased from 320px */
  }

  .yorker-center-logo {
    width: 220px;
    /* Increased from 120px */
    height: 220px;
    /* Increased from 120px */
  }

  .yorker-center-logo img {
    width: 180px;
    /* Increased from 85px */
  }

  .yorker-country-logo {
    width: 45px;
    height: 45px;
  }

  .yorker-country-logo img {
    width: 32px;
    height: 24px;
  }
}

@media (max-width: 768px) {
  .yorker-circular-animation {
    width: 400px;
    /* Increased from 320px */
    height: 400px;
    /* Increased from 320px */
  }

  .yorker-orbit-1 {
    width: 320px;
    /* Increased from 260px */
    height: 320px;
    /* Increased from 260px */
  }

  .yorker-center-logo {
    width: 180px;
    /* Increased from 100px */
    height: 180px;
    /* Increased from 100px */
  }

  .yorker-center-logo img {
    width: 140px;
    /* Increased from 70px */
  }

  .yorker-country-logo {
    width: 40px;
    height: 40px;
  }

  .yorker-country-logo img {
    width: 28px;
    height: 20px;
  }
}

/* Hide the old globe container when circular animation is active */
.hero-globe-container.with-circular-animation .globe-wrapper,
.hero-globe-container.with-circular-animation .globe-rings,
.hero-globe-container.with-circular-animation .particles-container,
.hero-globe-container.with-circular-animation .connection-lines,
.hero-globe-container.with-circular-animation .yorkerif-badge {
  display: none;
}


/* Additional Yorker Holidays Animation Enhancements */
.yorker-circular-animation {
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.yorker-orbit {
  will-change: transform;
  backface-visibility: hidden;
}

/* Smooth animations for better performance */
.yorker-country-logo {
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: center center;
}

/* Enhanced hover effects */
.yorker-country-logo:hover {
  animation-play-state: paused;
  z-index: 100;
}

.yorker-country-logo:hover img {
  filter: brightness(1.1) contrast(1.1);
}

/* Pause animation on hover for accessibility */
.yorker-circular-animation:hover .yorker-orbit {
  animation-play-state: paused;
}

/* Staggered animation delays for more dynamic effect */
.yorker-country-logo.brazil {
  animation-delay: 0s;
}

.yorker-country-logo.russia {
  animation-delay: 0.5s;
}

.yorker-country-logo.india {
  animation-delay: 1s;
}

.yorker-country-logo.china {
  animation-delay: 1.5s;
}

.yorker-country-logo.south-africa {
  animation-delay: 2s;
}

.yorker-country-logo.egypt {
  animation-delay: 0.3s;
}

.yorker-country-logo.ethiopia {
  animation-delay: 0.8s;
}

.yorker-country-logo.iran {
  animation-delay: 1.3s;
}

.yorker-country-logo.uae {
  animation-delay: 1.8s;
}

.yorker-country-logo.indonesia {
  animation-delay: 2.3s;
}

.yorker-country-logo.saudi-arabia {
  animation-delay: 2.8s;
}

/* Add subtle glow animation to country logos */
.yorker-country-logo {
  animation: countryGlow 3s ease-in-out infinite alternate;
}

@keyframes countryGlow {
  0% {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  100% {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 122, 255, 0.2);
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .yorker-orbit {
    animation: none;
  }

  .yorker-center-logo {
    animation: none;
  }

  .yorker-country-logo {
    animation: none;
  }
}

@media (max-width: 768px) {
  .yorker-circular-animation {
    width: 400px;
    /* Increased from 320px */
    height: 400px;
    /* Increased from 320px */
  }

  .yorker-orbit-1 {
    width: 320px;
    /* Increased from 260px */
    height: 320px;
    /* Increased from 260px */
  }

  .yorker-center-logo {
    width: 180px;
    /* Increased from 100px */
    height: 180px;
    /* Increased from 100px */
  }

  .yorker-center-logo img {
    width: 140px;
    /* Increased from 70px */
  }

  .yorker-country-logo {
    width: 40px;
    height: 40px;
  }

  .yorker-country-logo img {
    width: 28px;
    height: 20px;
  }
}

/* Performance optimizations */
.yorker-circular-animation {
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.yorker-orbit {
  will-change: transform;
  backface-visibility: hidden;
}

.yorker-country-logo {
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: center center;
}

/* Enhanced hover effects */
.yorker-country-logo:hover img {
  filter: brightness(1.1) contrast(1.1);
}

/* Pause animation on hover for accessibility */
.yorker-circular-animation:hover .yorker-orbit {
  animation-play-state: paused;
}

/* Add subtle glow animation to country logos */
.yorker-country-logo {
  animation: countryGlow 3s ease-in-out infinite alternate;
}

@keyframes countryGlow {
  0% {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  100% {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 122, 255, 0.2);
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .yorker-orbit {
    animation: none;
  }

  .yorker-center-logo {
    animation: none;
  }

  .yorker-country-logo {
    animation: none;
  }
}


/* Fixed Yorker Holidays Single Orbit - Mathematical Positioning */
.yorker-circular-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  /* Increased from 500px */
  height: 600px;
  /* Increased from 500px */
  z-index: 15;
}

.yorker-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  /* Increased from 140px */
  height: 280px;
  /* Increased from 140px */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.yorker-center-logo img {
  width: 220px;
  /* Increased from 100px */
  height: auto;
  filter: brightness(1.2);
}

.yorker-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: yorkerOrbitRotate 40s linear infinite;
}

.yorker-orbit-1 {
  width: 400px;
  height: 400px;
  animation-duration: 40s;
}

.yorker-country-logo {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: 2px solid rgba(0, 122, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transform-origin: center center;
}

.yorker-country-logo:hover {
  transform: scale(1.3);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 122, 255, 0.6);
  z-index: 100;
}

.yorker-country-logo img {
  width: 36px;
  height: 26px;
  border-radius: 4px;
  object-fit: cover;
}

/* Mathematical positioning for perfect circle - 11 countries at 32.73° intervals */
.yorker-country-logo.brazil {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.yorker-country-logo.russia {
  top: 8.66%;
  right: 25%;
  transform: translate(50%, -50%);
}

.yorker-country-logo.india {
  top: 25%;
  right: 8.66%;
  transform: translate(50%, -50%);
}

.yorker-country-logo.china {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

.yorker-country-logo.south-africa {
  bottom: 25%;
  right: 8.66%;
  transform: translate(50%, 50%);
}

.yorker-country-logo.egypt {
  bottom: 8.66%;
  right: 25%;
  transform: translate(50%, 50%);
}

.yorker-country-logo.ethiopia {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.yorker-country-logo.iran {
  bottom: 8.66%;
  left: 25%;
  transform: translate(-50%, 50%);
}

.yorker-country-logo.uae {
  bottom: 25%;
  left: 8.66%;
  transform: translate(-50%, 50%);
}

.yorker-country-logo.indonesia {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.yorker-country-logo.saudi-arabia {
  top: 25%;
  left: 8.66%;
  transform: translate(-50%, -50%);
}

@keyframes yorkerOrbitRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Pulsing animation for center logo */
.yorker-center-logo {
  animation: yorkerCenterPulse 4s ease-in-out infinite;
}

@keyframes yorkerCenterPulse {

  0%,
  100% {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 rgba(92, 239, 255, 0);
  }

  50% {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 30px rgba(92, 239, 255, 0.4);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .yorker-circular-animation {
    width: 500px;
    /* Increased from 400px */
    height: 500px;
    /* Increased from 400px */
  }

  .yorker-orbit-1 {
    width: 400px;
    /* Increased from 320px */
    height: 400px;
    /* Increased from 320px */
  }

  .yorker-center-logo {
    width: 220px;
    /* Increased from 120px */
    height: 220px;
    /* Increased from 120px */
  }

  .yorker-center-logo img {
    width: 180px;
    /* Increased from 85px */
  }

  .yorker-country-logo {
    width: 45px;
    height: 45px;
  }

  .yorker-country-logo img {
    width: 32px;
    height: 24px;
  }

  /* Adjust positioning for smaller orbit */
  .yorker-country-logo.brazil {
    top: calc(50% - 160px);
  }

  .yorker-country-logo.russia {
    top: calc(50% - 160px * 0.866);
    left: calc(50% + 160px * 0.5);
  }

  .yorker-country-logo.india {
    top: calc(50% - 160px * 0.5);
    left: calc(50% + 160px * 0.866);
  }

  .yorker-country-logo.china {
    left: calc(50% + 160px);
  }

  .yorker-country-logo.south-africa {
    top: calc(50% + 160px * 0.5);
    left: calc(50% + 160px * 0.866);
  }

  .yorker-country-logo.egypt {
    top: calc(50% + 160px * 0.866);
    left: calc(50% + 160px * 0.5);
  }

  .yorker-country-logo.ethiopia {
    top: calc(50% + 160px);
  }

  .yorker-country-logo.iran {
    top: calc(50% + 160px * 0.866);
    left: calc(50% - 160px * 0.5);
  }

  .yorker-country-logo.uae {
    top: calc(50% + 160px * 0.5);
    left: calc(50% - 160px * 0.866);
  }

  .yorker-country-logo.indonesia {
    left: calc(50% - 160px);
  }

  .yorker-country-logo.saudi-arabia {
    top: calc(50% - 160px * 0.5);
    left: calc(50% - 160px * 0.866);
  }
}

@media (max-width: 768px) {
  .yorker-circular-animation {
    width: 400px;
    /* Increased from 320px */
    height: 400px;
    /* Increased from 320px */
  }

  .yorker-orbit-1 {
    width: 320px;
    /* Increased from 260px */
    height: 320px;
    /* Increased from 260px */
  }

  .yorker-center-logo {
    width: 180px;
    /* Increased from 100px */
    height: 180px;
    /* Increased from 100px */
  }

  .yorker-center-logo img {
    width: 140px;
    /* Increased from 70px */
  }

  .yorker-country-logo {
    width: 40px;
    height: 40px;
  }

  .yorker-country-logo img {
    width: 28px;
    height: 20px;
  }

  /* Adjust positioning for mobile orbit */
  .yorker-country-logo.brazil {
    top: calc(50% - 130px);
  }

  .yorker-country-logo.russia {
    top: calc(50% - 130px * 0.866);
    left: calc(50% + 130px * 0.5);
  }

  .yorker-country-logo.india {
    top: calc(50% - 130px * 0.5);
    left: calc(50% + 130px * 0.866);
  }

  .yorker-country-logo.china {
    left: calc(50% + 130px);
  }

  .yorker-country-logo.south-africa {
    top: calc(50% + 130px * 0.5);
    left: calc(50% + 130px * 0.866);
  }

  .yorker-country-logo.egypt {
    top: calc(50% + 130px * 0.866);
    left: calc(50% + 130px * 0.5);
  }

  .yorker-country-logo.ethiopia {
    top: calc(50% + 130px);
  }

  .yorker-country-logo.iran {
    top: calc(50% + 130px * 0.866);
    left: calc(50% - 130px * 0.5);
  }

  .yorker-country-logo.uae {
    top: calc(50% + 130px * 0.5);
    left: calc(50% - 130px * 0.866);
  }

  .yorker-country-logo.indonesia {
    left: calc(50% - 130px);
  }

  .yorker-country-logo.saudi-arabia {
    top: calc(50% - 130px * 0.5);
    left: calc(50% - 130px * 0.866);
  }
}

/* Performance optimizations */
.yorker-circular-animation {
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.yorker-orbit {
  will-change: transform;
  backface-visibility: hidden;
}

.yorker-country-logo {
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: center center;
}

/* Pause animation on hover for accessibility */
.yorker-circular-animation:hover .yorker-orbit {
  animation-play-state: paused;
}

/* Add subtle glow animation to country logos */
.yorker-country-logo {
  animation: countryGlow 3s ease-in-out infinite alternate;
}

@keyframes countryGlow {
  0% {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  100% {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 122, 255, 0.2);
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .yorker-orbit {
    animation: none;
  }

  .yorker-center-logo {
    animation: none;
  }

  .yorker-country-logo {
    animation: none;
  }
}


/* Enhanced Yorker Holidays Single Orbit - Larger Elements */
.yorker-circular-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  /* Increased from 500px */
  height: 600px;
  /* Increased from 500px */
  z-index: 15;
}

.yorker-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  /* Increased from 140px */
  height: 280px;
  /* Increased from 140px */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.yorker-center-logo img {
  width: 220px;
  /* Increased from 100px */
  height: auto;
  filter: brightness(1.2);
}

/* ... rest of existing code ... */
/* Responsive adjustments */
@media (max-width: 992px) {
  .yorker-circular-animation {
    width: 500px;
    /* Increased from 400px */
    height: 500px;
    /* Increased from 400px */
  }

  .yorker-orbit-1 {
    width: 400px;
    /* Increased from 320px */
    height: 400px;
    /* Increased from 320px */
  }

  .yorker-center-logo {
    width: 220px;
    /* Increased from 120px */
    height: 220px;
    /* Increased from 120px */
  }

  .yorker-center-logo img {
    width: 180px;
    /* Increased from 85px */
  }

  .yorker-country-logo {
    width: 45px;
    height: 45px;
  }

  .yorker-country-logo img {
    width: 32px;
    height: 24px;
  }
}

@media (max-width: 768px) {
  .yorker-circular-animation {
    width: 400px;
    /* Increased from 320px */
    max-width: 500px;
    max-height: 500px;
  }

  .yorker-center-logo {
    width: 160px;
    height: 160px;
  }

  .yorker-center-logo img {
    width: 120px;
  }

  .yorker-country-logo {
    width: 55px;
    height: 55px;
  }

  .yorker-country-logo img {
    width: 100%;
    height: 100%;
  }
}

/* Performance optimizations */
.yorker-circular-animation {
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.yorker-orbit {
  will-change: transform;
  backface-visibility: hidden;
}

.yorker-country-logo {
  will-change: transform;
  backface-visibility: hidden;
}


/* Pause animation on hover for accessibility */
.yorker-circular-animation:hover .yorker-orbit {
  animation-play-state: paused;
}

/* Enhanced glow animation to country logos */
.yorker-country-logo {
  animation: countryGlow 3s ease-in-out infinite alternate;
}

@keyframes countryGlow {
  0% {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  }

  100% {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15), 0 0 25px rgba(0, 122, 255, 0.3);
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .yorker-orbit {
    animation: none;
  }

  .yorker-center-logo {
    animation: none;
  }

  .yorker-country-logo {
    animation: none;
  }
}


/* Yorker Holidays Circular Animation - Even Larger Logo & Fixed Flag Rotation */
.yorker-circular-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: 900px;
  max-height: 900px;
  z-index: 15;
}

.yorker-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
  z-index: 20;
}

.yorker-center-logo img {
  width: 230px !important;
  height: 230px !important;
  filter: brightness(1.3);
}

.yorker-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: yorkerOrbitRotate 40s linear infinite;
}

.yorker-orbit-1 {
  width: 100%;
  height: 100%;
  animation-duration: 40s;
}

.yorker-country-logo {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  border: 3px solid rgba(0, 122, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform-origin: center center;
  overflow: hidden;
}


.yorker-country-logo img {
  width: calc(100% - 14px) !important;
  height: calc(100% - 14px) !important;
  border-radius: 50%;
  object-fit: contain !important;
  object-position: center !important;
  background: #fff;
}

.partner-logo-upright {
  animation: partnerLogoUpright 40s linear infinite;
}

@keyframes partnerLogoUpright {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes yorkerOrbitRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Enhanced pulsing animation for center logo */
.yorker-center-logo {
  animation: yorkerCenterPulse 4s ease-in-out infinite;
}

@keyframes yorkerCenterPulse {

  0%,
  100% {
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3), 0 0 0 rgba(92, 239, 255, 0);
  }

  50% {
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.4), 0 0 60px rgba(92, 239, 255, 0.7);
  }
}

/* Responsive adjustments - Even larger logo sizes */
@media (max-width: 992px) {
  .yorker-circular-animation {
    max-width: 750px;
    max-height: 750px;
  }

  .yorker-center-logo {
    width: 250px;
    height: 250px;
  }

  .yorker-center-logo img {
    width: 190px;
  }

  .yorker-country-logo {
    width: 65px;
    height: 65px;
  }

  .yorker-country-logo img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .yorker-circular-animation {
    max-width: 600px;
    max-height: 600px;
  }

  .yorker-center-logo {
    width: 200px;
    height: 200px;
  }

  .yorker-center-logo img {
    width: 150px;
  }

  .yorker-country-logo {
    width: 55px;
    height: 55px;
  }

  .yorker-country-logo img {
    width: 100%;
    height: 100%;
  }
}

/* Performance optimizations */
.yorker-circular-animation {
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.yorker-orbit {
  will-change: transform;
  backface-visibility: hidden;
}

.yorker-country-logo {
  will-change: transform;
  backface-visibility: hidden;
}

/* Enhanced hover effects */
.yorker-country-logo:hover img {
  filter: brightness(1.2) contrast(1.1);
}

/* Pause animation on hover for accessibility */
.yorker-circular-animation:hover .yorker-orbit {
  animation-play-state: paused;
}

/* Enhanced glow animation to country logos */
.yorker-country-logo {
  animation: countryGlow 3s ease-in-out infinite alternate;
}

@keyframes countryGlow {
  0% {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  }

  100% {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15), 0 0 25px rgba(0, 122, 255, 0.3);
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .yorker-orbit {
    animation: none;
  }

  .yorker-center-logo {
    animation: none;
  }

  .yorker-country-logo {
    animation: none;
  }
}


/* Hover effect for flag replacement and country name display */
.yorker-center-logo {
  position: relative;
  transition: all 0.4s ease;
}

.yorker-center-logo .country-name {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: #1a365d;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 25;
}

.yorker-center-logo .country-name.show {
  opacity: 1;
  visibility: visible;
  bottom: -50px;
}

.yorker-center-logo .flag-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 22;
}

.yorker-center-logo .flag-image.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.yorker-center-logo .original-logo {
  transition: all 0.4s ease;
  z-index: 21;
}

.yorker-center-logo .original-logo.hide {
  opacity: 0;
  transform: scale(0.8);
}

/* Enhanced hover effect for country logos */
.yorker-country-logo {
  cursor: pointer;
  transition: all 0.3s ease;
}

.yorker-country-logo:hover {
  z-index: 30;
  box-shadow: 0 15px 35px rgba(0, 122, 255, 0.4);
  border-color: rgba(0, 122, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .yorker-center-logo .country-name {
    bottom: -50px;
    font-size: 13px;
    padding: 6px 12px;
  }

  .yorker-center-logo .flag-image {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .yorker-center-logo .country-name {
    bottom: -40px;
    font-size: 12px;
    padding: 5px 10px;
  }

  .yorker-center-logo .flag-image {
    width: 120px;
    height: 120px;
  }
}
