body {
  margin: 0;

  font-family: "Ubuntu", sans-serif;
  line-height: 1.6;
  background-color: #f7f5f5;
}

h1, h2, h3, h4 {
  font-family: "Ubuntu", sans-serif;
}

section {
  padding: 60px 60px;
}
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  font-family: 'Lato', sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  color: #0051ff;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.menu-toggle {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: row;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1589216532372-1c2a367900d9?q=80&w=1471&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
  z-index: 1;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* adjust darkness here */
  z-index: -1;
}


.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero button {
  padding: 12px 28px;
  background-color: #0051ff;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 81, 255, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero button:hover {
  background-color: #003fd1;
  transform: translateY(-2px);
}


.about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.why-container {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 80%;
  margin: auto;
}

.why-text {
  flex: 1;
  min-width: 200px;
}

.why-image img {
  max-width: 100%;
  height: auto;
  box-shadow: #333 0px 0px 10px;
  border-radius: 10px;
}
.why-text button {
  padding: 12px 28px;
  background-color: #0051ff;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 81, 255, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.why-text button:hover {
  background-color: #003fd1;
  transform: translateY(-2px);
}


.services {
  text-align: center;
  width: 70%;
  margin: auto;
  color: #181818;
  
}
.services h2{
color:#f9f9f9
}
.services-section {
   background: url('https://images.unsplash.com/photo-1619771699034-fec6b1aabde3?q=80&w=1374&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  position: relative;
  color: white;
  text-align: center;
  padding: 50px 20px;
  z-index: 1;
  overflow: hidden;
}
.services-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* adjust darkness here */
  z-index: -1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background: #dadada;
  padding: 20px;
  border-radius: 8px;
}

.services-cta {
  padding: 12px 28px;
  background-color: #0051ff;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 81, 255, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin:20px 0 0 0
}

.services-cta:hover {
  background-color: #003fd1;
  transform: translateY(-2px);
}

.contact{
    
    width: 80%;
    margin: auto;
    color: #181818;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contact-column ul {
  list-style: none;
  padding: 0;
}

.contact-column ul li a {
  text-decoration: none;
  color: #333;
}

.contact-column form input,
.contact-column form textarea {
  width: 80%;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}


.contact-column form button {
  padding: 12px 28px;
  background-color: #0051ff;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 81, 255, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-column form button:hover {
  background-color: #003fd1;
  transform: translateY(-2px);
}

footer {
  background: #f2f2f2;
  padding: 20px;
}

footer hr {
  margin-bottom: 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-content p {
  margin: 0;
}

.social-icons a {
  color: #4d82f5;
  margin-left: 10px;
  text-decoration: none;
  font-size: 1.2em;
}
.social-icons a:hover {
  color: #0051ff;
}

/* Small Devices (Phones) */
@media (max-width: 768px) {

  section {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 2em;
    padding: 0 10px;
  }

  .hero button {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .about {
    padding: 20px;
  }

  .why-container {
    flex-direction: column;
    width: 95%;
  }

  .why-text {
    text-align: center;
  }

  .why-text button {
    width: 100%;
    max-width: 250px;
    margin-top: 20px;
  }

  .services {
    width: 80%;
    margin: auto;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .services-cta {
    width: 100%;
    max-width: 250px;
  }

  .contact {
    width: 90%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-column form input,
  .contact-column form textarea {
    width: 100%;
  }

  footer {
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 10px;
  }

  .social-icons a {
    margin: 0 5px;
  }

}
