*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background-image: url(banner.png);
  background-position: center;
  color:#2E2E2E;
  scroll-behavior:smooth;
}

/* ================= HEADER ================= */
header{
  background:#555555b2;
  padding:15px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:fixed;
  width:100%;
  z-index:1000;
  top:0;
  transition:0.3s;
}

.logo img{
  height:55px;
}

nav{
  display:flex;
  gap:30px;
  align-items:center;
}

nav a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  padding:5px 0;
  transition:0.3s;
}

nav a:hover{
  color:#1ABC9C;
}

.call-btn{
  background:#1ABC9C;
  color:#000;
  padding:10px 22px;
  border-radius:25px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.call-btn:hover{
  background:#16a085;
  transform:scale(1.05);
}

/* ===== DROPDOWN MENU ===== */
.dropdown{
  position:relative;
}

.dropbtn{
  color:#fff;
  cursor:pointer;
  font-weight:500;
  display:flex;
  align-items:center;
  gap:5px;
}

.dropdown-content{
  position:absolute;
  top:35px;
  left:0;
  background:#121212;
  min-width:180px;
  display:none;
  flex-direction:column;
  border-radius:8px;
  box-shadow:0 10px 25px rgba(0,0,0,0.4);
  z-index:1000;
}

.dropdown-content a{
  padding:12px 18px;
  color:#fff;
  text-decoration:none;
  font-size:0.95rem;
  transition:0.3s;
}

.dropdown-content a:hover{
  background:#1ABC9C;
  color:#000;
}

.dropdown:hover .dropdown-content{
  display:flex;
}

/* ========== HAMBURGER MENU ========== */
.hamburger{
  display:none;
  font-size:1.8rem;
  color:#fff;
  cursor:pointer;
}

@media(max-width:992px){
  nav{
    position:fixed;
    top:70px;
    right:-100%;
    width:250px;
    height:100%;
    background:#121212;
    flex-direction:column;
    gap:20px;
    padding:20px;
    transition:0.3s;
  }
  nav.active{
    right:0;
  }
  .hamburger{
    display:block;
  }
  .dropdown-content{
    position:relative;
    top:0;
    box-shadow:none;
  }
}

/* ================= HERO ================= */
.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
}

.hero video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(18, 18, 18, 0.705);
}

.hero-content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding:20px;
  z-index:2;
  opacity:0;
  transform:translateY(50px);
  animation:fadeInUp 1s forwards 0.3s;
}

.hero-content h1{
  font-size:3rem;
  margin-bottom:15px;
  color: #1ABC9C;
}

.hero-content p{
  max-width:700px;
  font-size:1.5rem;
  color:#CFCFCF;
}

/* ================= SERVICES ================= */
.services{
  padding:70px 40px;
  background:#F2F2F2;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.service-box{
  background:#fff;
  padding:30px;
  text-align:center;
  border-radius:10px;
  text-decoration:none;
  color:#000;
  transition:0.4s;
  opacity:0;
  transform:translateY(30px);
  animation:fadeInUp 0.8s forwards;
}

.service-box:hover{
  border:2px solid #1ABC9C;
  transform:translateY(-8px) scale(1.03);
}

.service-box h3{
  margin-bottom:10px;
}

/* ================= GALLERY ================= */
.gallery{
  padding:70px 40px;
  background-color: #fff;
}

.gallery h2{
  text-align:center;
  margin-bottom:40px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.gallery-grid img{
  width:100%;
  border-radius:10px;
  transition:0.3s;
}

.gallery-grid img:hover{
  transform:scale(1.05);
}

/* ================= PROJECTS ================= */
.projects{
  padding:70px 40px;
  background:#F2F2F2;
}

.projects h2{
  text-align:center;
  margin-bottom:40px;
}

.project-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.project-grid img,
.project-grid video{
  width:100%;
  border-radius:10px;
  transition:0.3s;
}

.project-grid img:hover,
.project-grid video:hover{
  transform:scale(1.03);
}

/* ================= CLIENT VIDEOS ================= */
.clients{
  padding:70px 40px;
  background-color: #fff;
}

.clients h2{
  text-align:center;
  margin-bottom:40px;
}

.client-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.client-grid video{
  width:100%;
  border-radius:10px;
  transition:0.3s;
}

.client-grid video:hover{
  transform:scale(1.03);
}

/* ================= Team VIDEOS ================= */
.team{
  padding:70px 40px;
  background:#F2F2F2;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  max-width:1200px;
  margin:auto;
}

.team-card{
  background:#fff;
  border-radius:10px;
  text-align:center;
  padding:30px 20px;
  transition:0.4s;
  opacity:0;
  transform:translateY(30px);
  animation:fadeInUp 0.8s forwards;
}

.team-card:hover{
  transform:translateY(-8px) scale(1.03);
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.team-card img{
  width:120px;
  height:120px;
  object-fit:cover;
  border-radius:50%;
  margin-bottom:15px;
}

.team-card h3{
  margin-bottom:10px;
  color:#121212;
}

.team-card p{
  color:#555;
  font-size:0.95rem;
}

/* ================= STATS ================= */
.stats-section{
  background:#121212b7;
  padding:80px 20px;
}

.stats-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  text-align:center;
}

.stat-box h2{
  color:#1ABC9C;
  font-size:3rem;
  transition:0.3s;
}

.stat-box h4{
  color:#fff;
  margin:10px 0;
}

.stat-box p{
  color:#CFCFCF;
  font-size:.95rem;
}

/* ================= ASK SECTION ================= */
.ask{
  padding:70px 40px;
  text-align:center;
  background-color: #fff;
}

.ask p{
  max-width:700px;
  margin:20px auto;
}

.ask a{
  display:inline-block;
  margin-top:20px;
  background:#1ABC9C;
  color:#000;
  padding:14px 30px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.ask a:hover{
  transform:scale(1.05);
  background:#16a085;
}


.whatsapp-float{
  position:fixed;
  bottom:80px;
  text-decoration: none;
  right:20px;
  background:#ffffff;
  border-radius:10px;
  width:60px;
  height:60px;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:28px;
  box-shadow:0 4px 12px rgba(0,0,0,0.3);z-index:999;
}

.whatsapp-float i,
.whatsapp-float svg {
  font-size: 70px;   /* yahan size change hoga */
  color: #25d366;
  position: fixed;

}

/* ================= FOOTER ================= */
footer{
  background:#121212;
  color:#fff;
  padding:20px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.social a{
  color:#fff;
  margin-left:15px;
  text-decoration:none;
  transition:0.3s;
}

.social a:hover{
  color:#1ABC9C;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width:768px){
  header{
    flex-direction:row;
    gap:15px;
  }
  nav{
    right:-100%;
  }
  nav.active{
    right:0;
  }
}