*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  /* color: white !important; */
}
body{
  width: 100%;
  min-height: 100vh;
  background-image: url("newnew.png");
  color: white;
  font-weight: bold;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 1000000000000 !important;
  background-color: rgba(0, 0, 0, 0.7);
  font-weight: normal;
}

header .navbar {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  z-index: 1000000000000 !important;
}

#menu-btn {
  color: #fff;
  cursor: pointer;
  display: none;
}

#close-menu-btn {
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  color: black !important;
}

.navbar .logo {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 600;
}

.navbar .logo span {
  color: #C06B3E;
}

.navbar .menu-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  transition: 0.2s ease;
}

.navbar a:hover {
  color: #C06B3E;
}

.container{
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 8%;
}
.container .row{
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
}
.row section.col{
  display: flex;
  flex-direction: column;
}
.row section.left{
  flex-basis: 35%;
  min-width: 320px;
  margin-right: 60px;
}
.row section.right{
  flex-basis: 60%;
}
section.left .contactTitle h2{
  position: relative;
  font-size: 28px;
  color: white;
  display: inline-block;
  margin-bottom: 25px;
}
/* section.left .contactTitle h2::before{
  content: '';
  position: absolute;
  width: 50%;
  height: 1px;
  background-color: black;
  top: 120%;
  left: 0;
  z-index: 1 !important;
} */
/* section.left .contactTitle h2::after{
  content: '';
  position: absolute;
  width: 25%;
  height: 3px;
  background-color: dodgerblue;
  top: calc(120% - 1px);
  left: 0;
  z-index: 1 !important;
} */
section.left .contactTitle p{
  font-size: 17px;
  color: white;
  letter-spacing: 1px;
  line-height: 1.2;
  padding-bottom: 22px;
}
section.left .contactInfo{
  margin-bottom: 16px;
}
.contactInfo .iconGroup{
  display: flex;
  align-items: center;
  margin: 25px 0px;
}
.iconGroup .icon{
  width: 45px;
  height: 45px;
  border: 2px solid dodgerblue;
  border-radius: 50%;
  margin-right: 20px;
  position: relative;
}
.iconGroup .icon i{
  font-size: 20px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.iconGroup .details span{
  display: block;
  color: white;
  font-size: 18px;
}
.iconGroup .details span:nth-child(1){
  text-transform: uppercase;
  color: white;
}
section.left .socialMedia{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: 22px 0px 20px;
}
.socialMedia a{
  width: 35px;
  height: 35px;
  text-decoration: none;
  text-align: center;
  margin-right: 15px;
  border-radius: 5px;
  background-color: dodgerblue;
  transition: 0.4s;
}
.socialMedia a i{
  color: white;
  font-size: 18px;
  line-height: 35px;
  border: 1px solid transparent;
  transition-delay: 0.4s;
}
.socialMedia a:hover{
  transform: translateY(-5px);
  background-color: #f9f9f9;
  color: dodgerblue;
  border: 1px solid dodgerblue;
}
.socialMedia a:hover i{
  color: dodgerblue;
}

/* Code for the right section (column) */

.row section.right .messageForm{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 30px;
}
.row section.right .inputGroup{
  margin: 18px 0px;
  position: relative;
}
.messageForm .halfWidth{
  flex-basis: 48%;
}
.messageForm .fullWidth{
  flex-basis: 100%;
}
.messageForm input, .messageForm textarea{
  width: 100%;
  font-size: 18px;
  padding: 2px 0px;
  background-color: transparent;
  color: #ddd;
  border: none;
  border-bottom: 2px solid #666;
  outline: none;
}
.messageForm textarea{
  resize: none;
  height: 220px;
  display: block;
}
textarea::-webkit-scrollbar{
  width: 5px;
}
textarea::-webkit-scrollbar-track{
  background-color: #f9f9f9;
  border-radius: 15px;
}
textarea::-webkit-scrollbar-thumb{
  background-color: dodgerblue;
  border-radius: 15px;
}
.inputGroup label{
  position: absolute;
  left: 0;
  bottom: 4px;
  color: white;
  font-size: 18px;
  transition: 0.4s;
  pointer-events: none;
}
.inputGroup:nth-child(4) label{
  top: 2px;
}
.inputGroup input:focus ~ label, .inputGroup textarea:focus ~ label,
.inputGroup input:valid ~ label, .inputGroup textarea:valid ~ label
{
  transform: translateY(-30px);
  font-size: 16px;
}
.inputGroup button{
  padding: 8px 16px;
  font-size: 18px;
  background-color: dodgerblue;
  color: white;
  border: 1px solid transparent;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
  transition: 0.4s;
}
.inputGroup button:hover{
  background-color: #f9f9f9;
  color: dodgerblue;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid dodgerblue;
}
.hero-section {
  z-index: 1 !important;
}

@media(max-width: 1100px){
  .messageForm .halfWidth{
    flex-basis: 100%;
  }
}
@media(max-width: 900px){
  .container .row{
    flex-wrap: wrap;
  }
  .row section.left, .row section.right{
    flex-basis: 100%;
    margin: 0px;
  }
}

@media screen and (max-width: 900px) {
  header {
    padding: 10px 20px;
  }
  header.show-mobile-menu::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
  }
  #close-menu-btn, #menu-btn {
    display: block;
  }
  .navbar .menu-links {
    position: fixed;
    left: -260px;
    top: 0;
    flex-direction: column;
    width: 260px;
    height: 100vh;
    background: white;
    padding: 70px 40px 0;
    transition: left 0.15s ease;
  }

  header.show-mobile-menu .navbar .menu-links {
    left: 0;
    color: black !important;
  }

  header.show-mobile-menu .navbar .menu-links li a {
    color: black !important;
  }
  .navbar a {
    /* color: #000 !important; */
  }

  .hero-section .content {
    text-align: center;
    padding-top: 60px;
  }

  .hero-section .content :is(h1, p) {
    max-width: 100%;
  }

  .hero-section .content h1 {
    font-size: 2.3rem;
    line-height: 60px;
  }

  .hero-section .content button {
    padding: 9px 18px;
  }
}