* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #c5dbf0;
  color: #222;
}

.header {
  background: #081237;
  padding: 36px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 32px;
  color: white;
  font-weight: bold;
}

.logo span {
  color: rgb(61, 107, 244);
}

.navbar a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.navbar a:hover, .navbar a.active {
  color: rgb(58, 129, 200);
}

.hero {
 width: 100%;
    min-height: 85vh;
    background: rgb(251, 248, 248) ;
    display: flex;
    align-items: center;
    gap: 7em;
    padding: 30px 12% 0;
}
.img-box img {
    position: relative;
    width: 550px;
    box-shadow: 0 0 25px rgb(42, 62, 181), 0 0 50px rgb(40, 42, 181);
    border-radius: 50%;
}

.hero-content {
  flex: 1 1 400px;
}

.hero-content h1 {
  font-size: 55px;
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 24px;
  background: rgb(52, 85, 193);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #100f0f;
}

.product{
 padding: 2rem;
  max-width: 1000px;
  margin: auto;
}.services {
  padding: 2rem;
  text-align: center;
}

.services h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.services h2 span {
  color: #00bcd4;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  padding: 1rem;
  font-size: 1.1rem;
  color: #333;
}

.products h2,
.services h2 {
  font-size: 2.2rem;
  text-align: center;
  margin: 2rem 0 1.5rem;
}

.products h2 span,
.services h2 span {
  color: #00bcd4;
}


.product-cards,
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem 2rem;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  padding: 1rem;
  font-size: 1.1rem;
  color: #333;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #fff;
  box-shadow: 0 10px 25px rgba(104, 171, 243, 0.1);
  border-radius: 10px;
}

.contact-form h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-form h2 span {
  color: #2765ac;
}


.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00bcd4;
  outline: none;
}


.btn-1 {
  background-color: #00bcd4;
  color: white;
  border: none;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-1:hover {
  background-color: #0097a7;
}

.about {
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #f9f4f4;
  box-shadow: 0 10px 25px rgba(245, 241, 241, 0.1);
  border-radius: 10px;
  text-align: center;
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.about h2 span {
  color: #00bcd4;
}

.about p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
}



.footer {
  background: #0a1439;
  color: white;
  padding: 40px 10%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  text-align: center;
}

.footer-section h3 {
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin: 7px 0;
}

.footer-section ul li a,
.footer-section a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

.footer-section a:hover {
  color: rgb(63, 104, 229);
}

.footer-section i {
  font-size: 24px;
  margin: 0 8px;
  transition: 0.3s;
}

.footer-section i:hover {
  transform: scale(1.2);
  color: rgb(42, 99, 206);
}

.footer .btn {
  margin-top: 10px;
}

.copyright {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  font-size: 14px;
  color: #aaa;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 40px 5%;
  }

  .footer {
    flex-direction: column;
    align-items: center;
  }
}



