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

body {
  font-family: 'Segoe UI', sans-serif;
  background: #0d1117;
  color: #e6edf3;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #161b22;
  padding: 20px 40px;
}

header h1 span {
  color: #f78166;
}

nav a {
  margin-left: 20px;
  color: #e6edf3;
  text-decoration: none;
}

.hero {
  padding: 100px 20px;
  text-align: center;
}

.hero-inner {
  max-width: 600px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 2.2em;
  margin-bottom: 10px;
}

.hero h2 span {
  color: #f78166;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #238636;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}

.features, .cta-section, .gallery {
  padding: 30px 20px;
  text-align: center;
}

.features h3, .cta-section h3, .gallery h3 {
  font-size: 2em;
  margin-bottom: 30px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.partner {
  position: relative;
  text-align: center;
}

.partner img {
  height: 140px;
  transition: transform 0.3s;
}

.partner span {
  display: block;
  margin-top: 8px;
  font-size: 1em;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.partner:hover span {
  opacity: 1;
}

.cta-buttons button {
  margin: 10px;
  padding: 12px 20px;
  background: #161b22;
  color: #58a6ff;
  border: 2px solid #58a6ff;
  border-radius: 6px;
  cursor: pointer;
}

.cta-buttons button:hover {
  background: #58a6ff;
  color: #0d1117;
}

/* MODERN GALLERY SYSTEM */
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: auto;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track img {
  max-height: 400px;
  flex: 0 0 auto;
  border-radius: 10px;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  z-index: 2;
  user-select: none;
}

.carousel-button.left {
  left: 10px;
}

.carousel-button.right {
  right: 10px;
}

footer {
  background: #161b22;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}

#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #0d1117;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.radar {
  width: 50px;
  height: 50px;
  border: 3px solid #58a6ff;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}

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


.flag {
  height: 18px;
  width: auto;
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  border-radius: 3px;
}


#contact a {
  color: #58a6ff;
  text-decoration: underline;
}



#aspirations .partner img {
  max-width: 220px;
  max-height: 150px;
  object-fit: contain;
}

#aspirations .partner {
  text-align: center;
}
#aspirations .partner span {
  margin-top: 10px;
  display: block;
}

