@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  
}

body {
  background-image: url(../img/n.png);
  scroll-behavior: smooth;
  color: white;
  
}
.fade-in { opacity: 0; transform: translateY(20px); transition: all 0.6s ease-out; }
.fade-in.show { opacity: 1; transform: translateY(0); }
.contact .image {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

.contact .image .logo {
  position: absolute;
  top: 2.5%;
  left: 1%;
  width: 5%;
  height: auto;
  border-radius: 50%;
  z-index: 10;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 100;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-left: 70%;
}

.nav-links li {
    padding: 10px;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
}

.nav-links li a:hover {
      background: linear-gradient(90deg, #a915e4, #2109ff);
    background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.nav-toggle-label {
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.txt,
.txt1,
.txt2 {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #fff;
  animation: fadeUp 1s ease-out;
}

.txt { top: 20%; font-size: 35px; }
.txt1 { top: 45%; font-size: 25px; animation-delay: 0.2s; }
.txt2 { top: 65%; font-size: 20px; animation-delay: 0.4s; }

.container {
  width: 100%;
  display: flex;
  background-color:black;
  color:white;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 100px;
  flex-wrap: nowrap;
  gap: 50px;
}

.contactInfo {
  width: 48%;
}

.contactInfo .box {
  display: flex;
  margin: 20px 0;
}

.contactInfo .icon {
  min-width: 60px;
  height: 60px;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 24px;
  margin-right: 15px;
  background-color: white;
}

.contactForm {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.contactForm .contactimg {
  width: 50%;
  max-width: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.contactForm form {
  width: 50%;
  color: #000;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  background-color:white;
}

.contactForm h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.inputBox {
  width: 100%;
  margin-bottom: 20px;
}

.inputBox label {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
  color: #444;
}

.inputBox input,
.inputBox textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
  background: transparent;
  color: #000;
}

.inputBox input[type="submit"] {
  background: #03a9f4;
  font-weight: bold;
  border: none;
  cursor: pointer;
  animation: pulse 2s infinite;
  transition: 0.3s;
}

.inputBox input[type="submit"]:hover {
  background: #0288d1;
}

.footer-services {
  background-color: #000;
  padding: 50px 20px;
  color: white;
}

.services-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 40px;
}

.service-card {
  background: #111;
  border: 2px solid blueviolet;
  border-radius: 20px;
  padding: 30px 20px;
  flex: 1 1 250px;
  max-width: 300px;
  box-shadow: 0 0 15px rgba(137, 43, 226, 0.055);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px blueviolet;
  border-color: blueviolet;
}

.service-card .icon {
  font-size: 30px;
  margin-bottom: 15px;
}

.service-card ul {
  list-style: disc;
  padding-left: 20px;
  text-align: left;
}

.service-card li {
  margin-bottom: 10px;
}

.service-card button {
  margin-top: 20px;
  background: #03a9f4;
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  align-self: center;
}
/* section_footer */
#footer{
    width: 100%;
    height: 500px;
    gap: 3rem;
    text-align: center;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    
}
#footer ul {
  list-style: none;
  padding: 0;
}
.social-footer {
  
  border-radius: none;
  padding: 20px 20px;
  text-align: center;
}

.social-footer h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
  
  gap: 20px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.social-icons a:hover img {
  transform: scale(1.2);
}



.service-card button:hover {
  background: #0288d1;
  color: #fff;
}

.social-footer {
  border-top: 1px solid #333;
  padding: 20px 20px;
  text-align: center;
}

.social-footer h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.social-icons a:hover img {
  transform: scale(1.2);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(3, 169, 244, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(3, 169, 244, 0); }
  100% { box-shadow: 0 0 0 0 rgba(3, 169, 244, 0); }
}

/* RESPONSIVE */
/* @media (max-width: 768px) {
  .contact .image .logo {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    width: 40px;
    height: 40px;
    top: 10px;
    left: 35%;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 50px;
    background-color: #000;
    padding: 10px 20px;
    display: none;
    z-index: 10000;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-left: -15px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 10px 10px;
    text-align: center;
  }

  .nav-toggle:checked + .nav-toggle-label + .nav-links {
    display: flex;
  }

  .nav-toggle-label {
    display: block;
  }

  .txt { font-size: 25px; }
  .txt1 { font-size: 20px; top: 40%; }
  .txt2 { font-size: 12px; top: 60%; padding: 0 10px; }

  .contact .image {
    height: 35vh;
  }

  .container {
    flex-direction: column;
    padding: 20px;
    gap: 30px;
  }

  .contactInfo,
  .contactForm {
    width: 100%;
  }

  .contactForm {
    flex-direction: column;
    align-items: center;
  }

  .contactForm .contactimg {
    display: none;
  }

  .contactForm form {
    width: 100%;
    padding: 20px;
  }

  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    max-width: 90%;
  }
} */


