* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

body {
  background-color: #f9f9f9;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 500;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.nav-links a {
  margin-left: 24px;
  text-decoration: none;
  color: #334155;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #2563eb;
}

/* Buttons */
.btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  text-align: center;
  background-color: #2563eb;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: #1e40af;
}

/* Hero Section */
.hero {
  background-color: #ffffff;
  padding: 60px 20px;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0f172a;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #334155;
}

.hero-btn {
  max-width: 200px;
  text-decoration: none;
  cursor: pointer;
}

/* Rasm qismi */
.hero-image {
  flex: 1;
  cursor: auto;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-image {
    margin-top: 20px;
  }
  .hero-btn {
    margin: 0 auto;
    text-decoration: none;
    cursor: pointer;
  }
}


/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #0f172a;
  user-select: none;
  z-index: 1002;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1001;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    margin: 12px 0;
  }

  .nav-links a.btn {
    width: 100%;
  }
}

/* Overlay show when menu open */
.overlay.show {
  opacity: 1;
  visibility: visible;
}
.services {
  background-color: #f9f9f9;
  padding: 80px 20px;
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.service-card.horizontal {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
}

.service-text {
  flex: 1;
}

.service-text h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #0f172a;
}

.service-text p {
  font-size: 1rem;
  color: #334155;
  margin-bottom: 20px;
}

.service-text ul {
  list-style: none;
  margin-bottom: 24px;
}

.service-text ul li {
  margin: 8px 0;
  color: #475569;
}

.service-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.service-image img {
  width: 100%;
  max-width: 360px;
  height: auto;
}



.footer {
  background-color: #1e3a8a;
  color: #ffffff;
  padding: 60px 20px 30px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #d1d5db;
}

.footer-links, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a, .footer-social a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover, .footer-social a:hover {
  color: #2563eb;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-links, .footer-social {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }
}
.process {
  padding: 80px 20px;
  text-align: center;
}
.process-steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.process-steps div span {
  display: block;
  font-size: 24px;
  color: #2563eb;
}
@media (max-width: 500px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-image {
    order: 2;
    margin-top: 20px;
  }

  .hero-text {
    order: 1;
    text-align: center;
  }
}

/* CONTACT */
.contact {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}
.contact-form {
  max-width: 400px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}
.process {
  padding: 90px 20px;
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  text-align: center;
}

.process h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 10px;
}

.process p {
  color: #dbeafe;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
}

.process-step span {
  display: inline-flex;
  width: 55px;
  height: 55px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.process-step h3 {
  color: #0f172a;
  margin-bottom: 8px;
}

.process-step p {
  color: #475569;
  font-size: 0.95rem;
}
.contact {
  background: #f9fafb;
  padding: 90px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  color: #0f172a;
}

.contact p {
  color: #475569;
  margin-top: 10px;
}

.contact-form {
  max-width: 420px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2563eb;
}

.contact-form button {
  margin-top: 10px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #2563eb;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #1e40af;
}






