html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden; /* This disables scrolling */
}

.bgimg {
  height: 100vh; /* Ensure full screen height */
  width: 100vw;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px;
  box-sizing: border-box;
}


/* Logo */
.logo img {
  height: 230px;
  max-width: 100%;
  margin: 30px auto 0;
  display: block;
}

/* Main Title */
.middle {
  max-width: 800px;
  margin: 20px auto;
}
.middle h2 {
  color: #ef7c00;
  font-size: 70px;
  font-weight: bold;
  margin: 10px 0;
}
.middle h2 span {
  color: #e3000f;
}
.middle p {
  color: #000;
  font-size: 16px;
  margin-top: 10px;
  padding: 0 10px;
  font-weight: normal;
}

/* Social Icons */
.social {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 30px 0 50px 0;
}
.social a {
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}
.social-f a {
  background-color: #0866ff;
  border: 1px solid #0866ff;
}
.social-i a {
  background-color: #ff8f3f;
  border: 1px solid #ff8f3f;
}
.social-y a {
  background-color: #ff0033;
  border: 1px solid #ff0033;
}
.contact a {
  text-decoration: none;
  font-size: 50px;
  color:red;
}
/* Footer */
.footer {
  margin-top: 0px;
  text-align: center;
  font-size: 14px;
  color: #000;
}
.footer span {
  color: red;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .middle h2 {
    font-size: 50px;
  }
  .middle h2 span {
    font-size: 50px;
  }
  .middle p {
    font-size: 14px;
    margin-top:20px;
  }
  .logo img {
    height: 100px;
  }
.social a {
  font-size: 18px;
  padding: 10px 10px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}
.social {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 30px 0 70px 0;
}
.contact a {
  text-decoration: none;
  font-size: 40px;
  color:red;
}
.footer {
  text-align: center;
  font-size: 14px;
  color: #000;
}
.footer span {
  color: red;
}

}

@media (max-width: 480px) {
  .middle h2 {
    margin-top:-30px;
    font-size: 40px;
  }
  .middle h2 span {
    font-size: 40px;
  }
  .middle p {
    font-size: 14px;
    margin-top:20px;
  }
  .social a {
  font-size: 14px;
  padding: 10px 5px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}
.social {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: -40px 0 40px 0;
}
.contact{
  margin-top:-80px;
}
.contact a {
  text-decoration: none;
  font-size: 40px;
  color:red;
}
.footer {
  text-align: center;
  font-size: 13px;
  color: #000;
}
.footer span {
  color: red;
}

}
@media (max-width: 350px) {
  .middle h2 {
    margin-top:-30px;
    font-size: 30px;
  }
  .middle h2 span {
    font-size: 30px;
  }
  .middle p {
    font-size: 14px;
    margin-top:20px;
  }
  .social a {
  font-size: 13px;
  padding: 10px 5px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}
.social {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: -40px 0 40px 0;
}
.contact{
  margin-top:-80px;
}
.contact a {
  text-decoration: none;
  font-size: 30px;
  color:red;
}
.footer {
  text-align: center;
  font-size: 12px;
  color: #000;
}
.footer span {
  color: red;
}

}
