* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  height: 100vh;
  overflow: hidden;
}


.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.cursor-hint {
  position: fixed;
  top: 0;
  left: 0;
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #ffd700;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  pointer-events: none; 
  opacity: 0.9;
  transform: translate(12px, 12px);
  z-index: 1000;
  backdrop-filter: blur(4px);
  transition: opacity 0.3s ease;
}


.overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  position: relative;
  padding: 20px;
}

.contact {
position: absolute;
top: 20px;
left: 20px;
font-size: 14px;
padding: 10px 16px;
border: 1px solid rgb(238, 213, 49);
border-radius: 30px;
cursor: pointer;
background: rgba(0, 0, 0, 0.4);
backdrop-filter: blur(6px);
transition: all 0.35s ease;
color: whitesmoke;
}

.contact:hover {
background: linear-gradient(lightgray,rgb(154, 151, 151));

color: #000;
transform: translateY(-3px) scale(1.05);
box-shadow: 0 8px 25px rgba(209, 175, 24, 0.45);}

.instagram {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  cursor: pointer;
transition: transform 0.3s ease;
}

.instagram a {
color: #fff;
text-decoration: none;
transition: color 0.3s ease, letter-spacing 0.3s ease;
}
  

.instagram a img{
  width:15px;
  height:15px;
  margin-right:10px;
  
}
.instagram:hover {
transform: scale(1.08);
filter: drop-shadow(0 0 8px rgba(247, 119, 55, 0.8));
}
.instagram:hover a {
color: #ff00b7; 
letter-spacing: 1px;
}
.instagram a {
color: #fff;
text-decoration: none;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}

.logo {
  width: 120px;
  margin-bottom: 15px;
}

.heading {
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}


.boxes {
  display: flex;
  gap: 25px;
}

.box {
  width: 220px;
  height: 260px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  display: flex;
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .boxes {
    flex-direction: column;
  }
}

.tagline {
  position: absolute;
  bottom: 0px;
  width: 100%;
  font-size: 10px;
  letter-spacing: 1px;
  background-color: #000;
  left: 0px ;
  

 
}
.tagline p {
  text-align: center;
  color: #fff;
  padding: 5px 0;
  font-weight: bold;
}




