* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.navbar{
    background: linear-gradient(90deg,rgba(134, 42, 155, 1) 0%, rgba(83, 232, 237, 1) 100%);
}
.nav-item a {
    color: aliceblue;
  font-size: 20px;
  border-radius: 20px;
}
.navbar-brand{
    color: aliceblue;
}
#contactus{
    width: 100%;
    background: linear-gradient(90deg,rgba(134, 42, 155, 1) 0%, rgba(83, 232, 237, 1) 100%);
}
#contactus h1{
    padding-top: 200px;
    padding-bottom: 200px;
    text-align: center;
    font-size: 80px;
    color: aliceblue;
    font-family: sans-serif;
    font-weight: bold;
}

.first-second{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* comment */

#cont-comt{
  max-width: 600px;
  margin: 0 auto;
}

.comment-box {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.comment-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #fff;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  transition: background-color 0.3s;
  background-color: #f2f2f2;
  color: #333;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
  background-color: #fff;
}

.btn-submit {
  background-color: #005aaa;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #003366;
}

.gradient-bg {
  background: linear-gradient(to bottom, #003366, #005aaa);
}

.gradient-bg .btn-submit {
  background-color: #fff;
  color: #005aaa;
  border: 2px solid #fff;
  transition: background-color 0.3s, color 0.3s;
}

.gradient-bg .btn-submit:hover {
  background-color: #005aaa;
  color: #fff;
}
/* footer */
#footer-full {
  background-color: #282626;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font-family: sans-serif;
  color: #ffffff;
  gap: 20px;
  border-bottom: 2px solid white;
  padding-bottom: 40px;
}

.footer-links h2 {
  padding-bottom: 30px;
  color: #0075db;
  font-family: "oswald", sans-serif;
  font-size: 40px;
}

.footer-links h3 {
  color: #0075db;
  padding-bottom: 25px;
  font-weight: bold;
  font-size: 27px;
}

.footer-links p {
  line-height: 1.4;
  font-size: 20px;
}

.footer-links h6 {
  text-align: start;
  width: 90%;
  margin-bottom: 10px;
}

.footer-links ul,
a {
  color: white;
  line-height: 2;
  font-family: sans-serif;
  display: flex;
  text-align: start;
  flex-direction: column;
  list-style: none;
  cursor: pointer;
  padding-left: 0;
  margin: 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: white;
}
.footer-bottom {
  text-align: center;
  font-weight: bold;
  color: white;
  padding-top: 20px;
}



/* Tablets */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-links h2 {
    font-size: 32px;
  }

  .footer-links h3 {
    font-size: 22px;
  }
  
  .footer-links p,
  .footer-links h6 {
    font-size: 16px;
  }
}

/* Mobile devices */
@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .footer-links h2 {
    font-size: 28px;
    padding-bottom: 20px;
  }

  .footer-links h3 {
    font-size: 20px;
    padding-bottom: 15px;
  }
  
  .footer-links p,
  .footer-links h6 {
    font-size: 14px;
    width: 100%;
  }
  
  .footer-links ul,
  a {
    line-height: 1.6;
  }
  
  .footer-bottom {
    padding: 15px 10px;
    font-size: 14px;
  }
}