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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
  background: #ffffff;
}

.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 0.8rem 1.5rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 110, 255, 0.08);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.6rem 1.5rem;
  box-shadow: 0 4px 30px rgba(0, 110, 255, 0.12);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.logo-container > img {
  width: 50px;
}
.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #006eff;
  letter-spacing: 0.3px;
}

.logo-subtitle {
  font-size: 0.65rem;
  color: #666;
  font-weight: 500;
  letter-spacing: 1.2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
  font-size: 0.85rem;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #006eff;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #006eff;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  background: linear-gradient(135deg, #006eff 0%, #0052cc 100%);
  color: white;
  padding: 120px 2rem 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 1;
  }
  50% {
    transform: scale(1.1) translate(20px, -20px);
    opacity: 0.8;
  }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.hero-content > div {
  flex: 1;
}
.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 900;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

.hero-text .highlight {
  color: #ffd700;
  position: relative;
  display: inline-block;
}

.hero-text p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-buttons {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-primary {
  background: white;
  color: #006eff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

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

.btn-secondary {
  background: transparent;
  color: white;
  padding: 0.9rem 2rem;
  border: 2px solid white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-secondary:hover {
  background: white;
  color: #006eff;
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
  display: flex;
  justify-content: flex-end;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-logo-large {
  width: 100%;
  max-width: 350px;
  height: auto;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
}

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

.stats-bar {
  background: white;
  padding: 2.5rem 2rem;
  box-shadow: 0 -8px 40px rgba(0, 110, 255, 0.1);
  position: relative;
  z-index: 10;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item::after {
  content: "";
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, #006eff, transparent);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: #006eff;
  display: block;
  margin-bottom: 0.3rem;
}

.stat-label {
  color: #666;
  font-weight: 600;
  font-size: 0.85rem;
}

.section {
  padding: 70px 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-subtitle {
  color: #006eff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.section-title {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 900;
}

.section-description {
  font-size: 1rem;
  color: #666;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.countries-section {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.country-card {
  background: white;
  padding: 1.8rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 110, 255, 0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.country-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #006eff, #0052cc);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.country-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 110, 255, 0.2);
  border-color: #006eff;
}

.country-card:hover::before {
  transform: scaleX(1);
}

.country-flag {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
.country-flag img {
  width: 50px;
}
.country-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.country-description {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.5;
}

.services-section {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  padding: 2.2rem;
  border-radius: 16px;
  border: 2px solid #e8f4ff;
  transition: all 0.4s ease;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #006eff 0%, #0052cc 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: scale(1.03);
  border-color: transparent;
}

.service-card:hover * {
  color: white !important;
}

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

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.service-icon svg {
  width: 40px;
}
.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.7rem;
}

.service-text {
  color: #666;
  line-height: 1.6;
  font-size: 0.9rem;
}

.testimonials-section {
  background: linear-gradient(135deg, #006eff 0%, #0052cc 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
  color: white;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.8rem;
  left: 1.2rem;
  font-size: 4rem;
  opacity: 0.2;
  font-family: Georgia, serif;
  color: white;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.4);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.author-title {
  opacity: 0.8;
  font-size: 0.8rem;
}

.partners-section {
  background: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.partner-card {
  background: #f8fbff;
  padding: 1.8rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #e8f4ff;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partner-card:hover {
  background: white;
  border-color: #006eff;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 110, 255, 0.1);
}

.partner-icon {
  margin-bottom: 0.7rem;
}
.partner-icon svg {
  width: 40px;
  color: #006eff;
}
.partner-name {
  font-weight: 700;
  color: #006eff;
  font-size: 0.95rem;
}

.cta-section {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  padding: 70px 2rem;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3.5rem;
  border-radius: 24px;
  box-shadow: 0 15px 60px rgba(0, 110, 255, 0.15);
}

.cta-content h2 {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 900;
}

.cta-content p {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-section {
  background: #1a1a1a;
  color: white;
  padding: 70px 2rem;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 900;
}

.contact-info p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.contact-item:hover {
  background: rgba(0, 110, 255, 0.1);
  border-color: #006eff;
  transform: translateX(8px);
}

.contact-icon img,
.contact-icon svg {
  width: 40px;
}
.contact-details h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.contact-details a {
  color: #006eff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  word-break: break-word;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem;
  border: 2px solid #e8f4ff;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #006eff;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  background: linear-gradient(135deg, #006eff, #0052cc);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 110, 255, 0.3);
}

.footer {
  background: #0a0a0a;
  color: white;
  padding: 2.5rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: left;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #006eff;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.footer-section p,
.footer-section a {
  color: #999;
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
  font-size: 0.85rem;
}

.footer-section a:hover {
  color: #006eff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  color: #666;
  text-align: center;
  font-size: 0.85rem;
}

@media (max-width: 1200px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

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

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

  .hero-logo-large {
    max-width: 250px;
    margin: 0 auto;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 100px 1.5rem 60px;
  }

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

  .hero-text p {
    font-size: 0.95rem;
  }

  .section {
    padding: 50px 1.5rem;
  }

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

  .stats-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .countries-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-content {
    padding: 2.5rem 1.5rem;
  }

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

  .btn-primary,
  .btn-secondary {
    font-size: 0.85rem;
    padding: 0.8rem 1.5rem;
  }
}
