body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f7fb;
}

/* ✅ GLOBAL FADE-IN ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* delay for nicer effect */
.fade-delay-1 { animation-delay: 0.2s; }
.fade-delay-2 { animation-delay: 0.4s; }
.fade-delay-3 { animation-delay: 0.6s; }

/* ✅ LANGUAGE SWITCH */
.lang-switch {
  position: fixed;
  top: 15px;
  left: 20px;   /* ✅ moved to left */
  z-index: 999;
}

.lang-switch button {
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #1e88e5, #0b3c66);
  color: white;
  border-radius: 20px;
  font-weight: bold;
  transition: 0.3s;
}

.lang-switch button:hover {
  transform: scale(1.05);
}

/* HERO */
html {
  scroll-behavior: smooth;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, #0b3c66, #1e88e5);
  color: white;
  padding: 80px 20px;
  overflow: hidden;
  background-attachment: scroll;
  padding: 60px 15px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -200px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: white;
  border-radius: 50%;
  z-index: 1;
}

.container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  max-width: 500px;
}

.hero-text ul {
  list-style: none;
  padding: 0;
}

.hero-text li {
  display: grid;
  grid-template-columns: 18px 26px 1fr; /* ✅ more stable widths */
  align-items: center;
  column-gap: 6px;
}

.hero-text .bullet,
.hero-text .icon {
  display: flex;
  justify-content: center;   /* ✅ force perfect centering */
  align-items: center;
}

.hero-text img {
  width: 150px;
  margin-bottom: 15px;
  filter:
    brightness(110%)
    drop-shadow(0 0 5px rgba(255,255,255,0.6))
    drop-shadow(0 6px 12px rgba(0,0,0,0.25));
}

.hero img.ac {
  width: 320px;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3));
}

/* CONTACT BAR */
.contact-bar {
  background: #0b3c66;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

/* SERVICES */
.services {
  padding: 60px 20px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

/* CARD */
.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(40px);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.card.active {
  opacity: 1;
  transform: translateY(0);
}

/* stagger delays */
.card:nth-child(1){transition-delay:0.1s}
.card:nth-child(2){transition-delay:0.2s}
.card:nth-child(3){transition-delay:0.3s}
.card:nth-child(4){transition-delay:0.4s}
.card:nth-child(5){transition-delay:0.5s}
.card:nth-child(6){transition-delay:0.6s}

/* WHY */
.why {
  background: #e3f2fd;
  text-align: center;
  padding: 50px 20px;
}

/* CONTACT */
.contact {
  padding: 60px 20px;
}

form {
  max-width: 500px;
  margin: auto;
}

/* ✅ FORCE SAME WIDTH */
form input,
form textarea,
form button {
  width: 100%;
  box-sizing: border-box;
}

/* ✅ OPTIONAL spacing consistency */
form input,
form textarea {
  padding: 12px;
  margin: 8px 0;
}


input, textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  width: 100%;
  padding: 12px;
  background: #1e88e5;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #1565c0;
}

footer {
  background: #0b3c66;
  color: white;
  text-align: center;
  padding: 15px;
}

/* ✅ SCROLL ANIMATION BASE */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* ✅ WHEN VISIBLE */
.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* ✅ slight variations */
.scroll-left {
  transform: translateX(-40px);
}
.scroll-right {
  transform: translateX(40px);
}
.scroll-animate.active.scroll-left,
.scroll-animate.active.scroll-right {
  transform: translateX(0);
}

#topBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: #1e88e5;
  color: white;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#topBtn:hover {
  transform: scale(1.15);
}

#topBtn.show {
  display: block;
  opacity: 1;
}

#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0b3c66;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  z-index: 9999;
}

.spinner {
  border: 4px solid #ffffff30;
  border-top: 4px solid white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* ✅ MOBILE FIX */
@media (max-width: 768px) {

  .hero-content {
    flex-direction: column;        /* ✅ stack everything */
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
	text-align: left;
  }

  .hero-text .icon {
    font-size: 16px; /* ✅ normalize emoji size */
  }

  .hero img.ac {
    width: 250px;                 /* ✅ smaller image */
    margin-top: 20px;
  }

  /* ✅ FIX WHITE CURVE */
  .hero::after {
    width: 300px;
    height: 300px;
    right: -150px;
    top: -150px;
  }

  /* ✅ LOGO SIZE */
  .hero-text img {
    width: 120px;
    margin: 0 auto 10px;
  }

}

.contact-link {
  color: inherit;        /* ✅ keeps same white color */
  text-decoration: none; /* ✅ removes underline */
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}