@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* Hero Section */
.hero-video {
  position: relative;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.header-wrapper{
  position: absolute;
  top: 0;
  width: 100%;
}
/* Video Background */
.hero-video-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.social-links-wrapper{
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    position: absolute;
    right: 0;
    padding-right: 4px;
    z-index: 9999;
}
.social-links .social-link-list a{
    font-size: 18px;
    line-height: 52px;
    color: white; 
}
.social-links .social-link-list{
    border: 1px solid rgb(204, 211, 217, 0.2);
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    width: 57px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block: 10px;
    cursor: pointer;
    overflow: hidden;
}
.social-links .social-link-list:hover{
    /* background-color:#80DB66; */
    background-color: #52c721;
}
.social-icon-box{
    transform: rotateY(0deg);
    transition: all 0.3s ease-out 0s;
}
.social-link-list:hover .social-icon-box{
    transform: rotateY(360deg);
    transition: all 0.3s ease-out 0s;
}
#hero-video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
/* Dark Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 1;
  opacity: 0.75;
}
/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; 
  color: white;
  text-align: center;
  max-width: 1280px;
  padding: 0 20px;
  display: flex;
  width: 100%;
  justify-content: center;
}
.hero-left{
  width: 50%;
}
.contact-form{
  width: 50%;
}
.hero-heading {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 40px;
  font-family: "Kaushan Script", cursive;
  /* color: #ff6137; */
  color: #52c721;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}
.hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 38px;
  padding-inline: 40px;
  max-width: 886px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}
/* Responsive Styles */
@media screen and (max-width: 768px) {
  .hero-heading {
    font-size: 32px;
    line-height: 40px;
  }
  .vm-title {
    margin-right: 27px;
  }
  .odometer-title {
    margin-inline: auto;
  }
}
@media (max-width:886px){
  .hero-desc {
  padding-inline: 0px;
}
.social-links-wrapper {
  position: absolute;
  top: 87%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  margin: 0 auto;
  padding-right: 0px;
  width: 100%;
  display: flex;
  margin-inline: auto;
  justify-content: center;
}
.social-links {
  display: flex;
  gap: 10px;
}
.hero-content {
    padding-top: 50px;
}

}






