* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "PT Serif", serif;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.top-bar {
  background: #1e293b;
  color: #fff;
  padding: 0.5rem 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-content p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b0b0b;
  font-family: "PT Serif", serif;
}

.logo-img {
  width: 54px;
  height: 54px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #64748b;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #0c60a8;
  text-decoration: none;
  font-weight: 600;
}

/* Hero Section */
.hero {
  padding: 11rem 0 3rem;
}

.hero-content {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.cta-button {
  background: #0c60a8;
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s, transform 0.2s;
}
.cta-button:hover {
  text-decoration: none;
}

.cta-button:hover {
  /* background: #1d4ed8; */
  transform: translateY(-2px);
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 4rem;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 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='%230c60a8' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.about .container {
  position: relative;
  z-index: 2;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}

.about-text {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); */
  position: relative;
  border: 3px dashed #ececec;
  margin-top: 2rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
  position: relative;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text p:first-child {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1e293b;
  position: relative;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 2.5rem;
  border-radius: 1rem;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12); */
}

.service-icon {
  font-size: 3rem;
  color: #0c60a8;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.service-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Why Choose Us */
.benefits {
  background: #fbfcfc;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  padding: 1rem;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: #0c60a8;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-text {
  color: #1e293b;
  font-family: "PT Serif", serif;
}

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #0c60a8;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 1.5rem;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.process-step p {
  color: #64748b;
  line-height: 1.6;
  text-align: center;
}

/* Testimonials */
.testimonials {
  background: #fbfcfc;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
  font-style: italic;
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #1e293b;
}

.testimonial-role {
  color: #64748b;
  font-size: 0.9rem;
}

/* Contact */
.contact {
  background: #1e293b;
  color: white;
}
.section.contact {
  padding: 4rem 0;
}

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

.contact .section-subtitle {
  color: #cbd5e1;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: #0c60a8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

/* Footer */
.footer {
  background: #0f172a;
  color: #ffffff25;
  text-align: center;
  padding: 0.5rem 0;
  font-size: 0.8rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .nav {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .nav-menu {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    margin-top: 2rem;
  }

  .about-image::before {
    width: 280px;
    height: 280px;
    top: -15px;
  }

  .about-image img {
    width: 260px;
    height: 260px;
  }

  .about-text {
    padding: 2rem;
    margin-top: 2rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .about-stat {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
  }

  .contact-info {
    flex-direction: column;
    align-items: start;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding: 6rem 0 4rem;
  }

  .language-switch {
    margin-top: 1rem;
  }

  .language-switch a {
    display: block;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .top-bar-content {
    font-size: 0.8rem;
  }

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

  .cta-button {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .logo-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.1rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-img {
    width: 32px;
    height: 32px;
  }

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

  .services-grid,
  .benefits-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .about-image::before {
    width: 240px;
    height: 240px;
    top: -12px;
  }

  .about-image img {
    width: 220px;
    height: 220px;
  }

  .about-text {
    padding: 1.5rem;
  }

  .about-text::before {
    font-size: 3rem;
    top: -5px;
    left: 15px;
  }
}

a {
  color: #0c60a8;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.bg-about-bg-shape {
  background: url(/img/about-bg-shape.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-map-bg {
  background: url(/img/map-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
