* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
      header {
        background: linear-gradient(135deg, #1b1161 0%, #2c1810 100%);
        color: white;
        padding: 0.2rem 0;
        box-shadow: 0 4px 20px rgba(27, 17, 97, 0.3);
        position: sticky;
        top: 0;
        z-index: 1000;
      }

      .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
      }

      .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
      }

      .logo-image {
        height: 35px;
        width: auto;
        max-width: 300px;
        object-fit: contain;
        flex-shrink: 0;
      }

      .logo-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
      }

      .logo-text h1 {
        font-size: 1.3rem;
        font-weight: bold;
        background: linear-gradient(45deg, #ffffff, #e0e7ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin: 0;
      }

      .logo-text h2 {
        font-size: 0.9rem;
        font-weight: 600;
        color: #e0e7ff;
        margin: 0;
      }

      .logo-text p {
        font-size: 0.7rem;
        color: #c3cfe2;
        margin: 0;
      }

      .contact-info {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
        flex-shrink: 0;
      }

      .contact-info span {
        font-size: 0.75rem;
        opacity: 0.9;
        white-space: nowrap;
      }

/* Navigation */
nav {
  background: rgba(27, 17, 97, 0.95);
  padding: 1rem 0;
  backdrop-filter: blur(10px);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1b1161 0%, #667eea 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(238, 90, 36, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(238, 90, 36, 0.5);
}

/* Services Section */
.services {
  padding: 80px 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1b1161;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1b1161, #667eea);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(27, 17, 97, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(27, 17, 97, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(27, 17, 97, 0.2);
}

.service-icon {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1b1161, #667eea);
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* or contain, depending on your needs */
}

/* Or for background image approach: */
.service-icon {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card h3 {
  color: #1b1161;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image {
  height: 400px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 15px;
}

.certification {
  background: linear-gradient(135deg, #1b1161, #667eea);
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
}

.languages {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

.language-badge {
  background: white;
  color: #1b1161;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(27, 17, 97, 0.2);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #1b1161;
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-section {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.contact-form {
  background: white;
  color: #333;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #1b1161;
  font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e7ff;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #1b1161;
}

.submit-btn {
  background: linear-gradient(45deg, #1b1161, #667eea);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(27, 17, 97, 0.3);
}

/* Footer */
footer {
  background-color: #000; /* Optional: dark background for contrast */
  padding: 20px 0;
}

footer .container {
  display: flex;
  justify-content: center; /* Center the items horizontally */
  gap: 30px; /* Space between the links */
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .container li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

footer .container li a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .logo {
    flex-direction: column;
    gap: 15px;
  }

  .logo-image {
    height: 30px;
  }

  .contact-info {
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .languages {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .logo-image {
    height: 25px;
    max-width: 250px;
  }

  .logo-text h1 {
    font-size: 1.1rem;
  }

  .logo-text h2 {
    font-size: 0.8rem;
  }

  .contact-info span {
    font-size: 0.7rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.4s;
}
.service-card:nth-child(4) {
  animation-delay: 0.6s;
}

.no-underline {
  text-decoration: none;
}