body {
  font-family: 'Segoe UI', sans-serif;
  background: url(../images/2tPrbZ.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}

body::-webkit-scrollbar {
  display: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: transparent;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.contact-btn {
  background: #00d084;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #4fa82140;
}


.contact-section {
  padding: 100px 20px;
  /* background: #041c15; */
}

.container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1 1 40%;
}

.contact-left h2 {
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.contact-left .highlight {
  color: #00ff9f;
}

.contact-left p {
  color: #ccc;
  margin-bottom: 30px;
  font-size: 15px;
}

.social-icons span {
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.social-icons .icons a {
  margin-right: 10px;
  display: inline-block;
}

.contact-right {
  flex: 1 1 50%;
  background: #020c018a;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #4fa82140;
}

form .row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

form input, form textarea {
    width: 100%;
    padding: 12px 9px;
    background: #0b0c0f;
    color: #0b0c0f;
    border: 1px solid #54815d;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

form textarea {
  resize: vertical;
  margin-bottom: 20px;
}

form button {
  background: #00ff9f;
  color: #000;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: #00e68a;
}
/* navbar responsive */

.nav-items{
  display: none;
}

.mobile-view-nav{
  display: none;
}

.navbar-btn {
    background: none;
    border: none;
    color: white;
}

@media (max-width: 768px) {
.nav-items{
  background: #f3f6f8;
  margin-top: 21rem;
  position: absolute;
  /* height: 100vh; */
  right: 46px;
  padding: 20px;
  border-radius: 10px;
  z-index: 1;
  width: 78%;
}

.nav-items a{
  text-decoration: none;
  color: #06140f;
  cursor: pointer;
}

.item1{
  width: 100%;
  margin-bottom: 10px;
  
}

.item1:hover{
  background: #c2bdbd;
  font-size: 22px;
  border-radius: 20px;
  padding: 10px;

}

}

@media (max-width: 1020px) {

.mobile-view-nav{
  display: block;
  position: relative;
}

.nav-items{
  display: none;
}


.web-view-nav{
  display: none;
}

.contact-us{
  display: none;
}

.nav-items{
  background: #f3f6f8;
  margin-top: 27rem;
  position: absolute;
  /* height: 100vh; */
  right: 46px;
  padding: 15px;
  border-radius: 10px;
  z-index: 1;
  width: 30%;
}

.nav-items a{
  text-decoration: none;
  color: #06140f;
  cursor: pointer;
}

.item1{
  /* width: 100%; */
  margin-bottom: 10px;
  padding: 10px;

}

.item1:hover{
  background: #c2bdbd;
  /* font-size: 20px; */
  border-radius: 10px;
  /* padding-left: 10px; */
}

.contact-btn{
  display: none;
}

}


@media(max-width: 420px) {
.nav-items{
  position: absolute;
  width: 67%;
  margin-top: 24rem;
  right: 46px;
  padding: 20px;
  border-radius: 10px;
  z-index: 1;
}

.nav-items a{
  text-decoration: none;
  color: #06140f;
  cursor: pointer;
}

.item1{
  margin-bottom: 0px;
  padding: 9px;
  
}

.item1:hover{
  background: #c2bdbd;
  font-size: 22px;
  border-radius: 20px;
  padding: 10px;

}
}


.navbar-btn{
  background: none;
}

.navbar-btn:hover{
  background: none;
}

/* footer section */

.site-footer {
  background-color: #0b0c0f;
  color: #ddd;
  padding: 60px 40px 20px;
  font-size: 14px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand h2 {
  color: white;
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-brand p {
  margin-bottom: 20px;
  color: #bbb;
}

.footer-cta {
  display: inline-block;
  background: #00d084;
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 140px;
  flex-wrap: wrap;
}

.footer-column h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #00d084;
}

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-size: 13px;
}

.footer-bottom span {
  color: #00d084;
}

.footer-socials a {
  margin-left: 15px;
  text-decoration: none;
  font-size: 16px;
  color: #bbb;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #00d084;
}

@media (max-width: 768px) {
  .site-footer{
    padding: 15px 40px 20px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    /* flex-direction: column;  */
    gap: 62px;
  }

  .footer-brand p{
    margin-bottom: 31px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  form .row{
    display: block;
  }
  form input, form textarea {
     margin-top: 1rem;
  }
}

@media (max-width: 920px) {
.footer-top{
  justify-content: space-between;
  gap: 49px;
}
.footer-bottom{
  padding-top: 15px;
}
.contact-left h2{
  font-size: 45px;
}
.contact-left p{
  font-size: 20px;
}
}