* {
  padding: 0px;
  margin: 0px;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

body {
  background: #dddddd;
  color: rgb(16, 8, 48);
  overflow-x: hidden;
}

.linkBox {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-around;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  left: 0%;
  z-index: 1000;
  color: white;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

.logo {
  width: 50px;
  height: 50px;
  background: url(logo.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;

}

.linkBox .social-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  color: white;

}

.social-icons i {
  margin-left: 16px;
  color: white;
}

.hamburger {
  display: none;
  cursor: pointer;
}

/* HERO */
.hero {
  height: 80vh;
  background: url('https://sewamitra.up.gov.in/Upload/Service/2f3aa925-8713-4c37-8c14-9b01f40a33f5_.jpg') center/cover;
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.hero-content h1 {
  font-size: 32px;
}

.hero-content .service-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 24px;
}

.hero-content .service-list ul {
  display: flex;
  flex-wrap: wrap;
  /* responsive ke liye */
  gap: 15px;
  list-style: none;
  /* bullets remove */
  padding: 12px;
  align-items: center;
}

.hero-content .service-list li {
  font-size: 24px;
  color: white;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 14px;
}

/* GLASS EFFECT */
.service,
.content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  white-space: nowrap;

}

/* ROTATE */
/* SECTION */
.rotate-section {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 60px 80px;
}

/* LEFT CIRCLE */
.circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: linear-gradient(45deg, #00f, #0ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}

/* RIGHT CONTENT */
.content-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* CONTENT ITEM */
.content {
  padding: 12px 20px;
  border-radius: 25px;
  background: rgba(0,0,0,0.05);
  transition: 0.4s;
  font-size: 18px;
  width: fit-content;
}

/* ACTIVE */
.content.active {
  background: linear-gradient(45deg, #00f, #0ff);
  color: white;
  transform: scale(1.1);
}


/* SERVICES */
.services {
  margin-top: 24px;
}

.services h2 {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  padding: 50px;
}

.service {
  height: 300px;
  /* 👈 equal height */
  border-radius: 15px;
  overflow: hidden;
  /* background-size: cover;     👈 image full cover */
  background-position: center;
  /* 👈 center focus */
  background-repeat: no-repeat;
  transition: 0.4s;
}

.service:hover {
  transform: scale(1.05);
}

.s1 {
  background: url('fridge-1.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.s2 {
  background: url('Ac-1.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.s3 {
  background: url('microwave-1.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.s4 {
  background: url('Chimney-1.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.s5 {
  background: url('kitchen.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.s6 {
  background: url('sofa-1.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.testimonial {
  height: 800;
}

.testimonial h2{
  text-align: center;
  margin-bottom: 12px;
}

.testimonial img {
  border: 2px solid black;
  width: 500px;
  height: 750px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

/* FOOTER */
.footer-top {
  display: flex;
  justify-content: space-between;
  padding: 40px;
}

.footer-left {
  width: 100px;
  height: 100px;
  background: url(logo.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.divider {
  border: 2px solid black;
}

.footer-middle {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.footer-middle a {
  text-decoration: none;
  font-weight: 600;
  display: flex;

  gap: 5px;
  text-transform: capitalize;
  text-align: left;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.footer-bottom {
  text-align: center;
  padding: 10px;
}

/* MOBILE */
@media(max-width:768px) {
  .hamburger {
    display: block;
  }

  .navbar {
    align-items: center;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: black;
    width: 100%;
    transition: 0.3s;
  }

  .nav-links.active {
    left: 0;
  }

  .rotate-section {
    padding: 40px;
  }

  /* ===== SERVICES ===== */
  .services {
    width: 100%;
    padding: 30px 10px;
    text-align: center;
  }

  .services h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .services-grid {
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service {
    height: 560px;
    border-radius: 10px;
  }

  /* testimonial */

  .testimonial {
    width: 100%;
    padding: 20px 5px;
    justify-content: center;
  }

  .testimonial h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .testimonial img {
    width: 100%;
    max-width: 500px;
    height: auto;
    
  }

  /* FOOTER */
  .footer-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    gap: 15px;
  }

  .footer-left {
    width: 100px;
    height: 100px;
    background: url(logo.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  .divider {
    border: 2px solid black;
    opacity: 0;
  }

  .footer-middle {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
  }

  .footer-middle a {
    text-decoration: none;
    font-weight: 600;
    display: flex;
    gap: 5px;
    text-transform: capitalize;
    text-align: left;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom {
    text-align: center;
    padding: 10px;
  }
}


/* Mobile view */

/* MOBILE NAV FIX */
@media (max-width: 320px) {

  /* ===== NAVBAR ===== */
  .navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 12px 15px;
    align-items: center;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .hamburger {
    display: block;
    font-size: 22px;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition: 0.4s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .nav-links a {
    font-size: 18px;
  }

  .social-icons {
    display: none;
  }

  /* ===== HERO SECTION ===== */
  .hero {
    height: 100svh;
    width: 100%;


  }

  .hero-content h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .hero-content .service-list {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 5px;
  }


  .service {
    width: 100%;
  }

  .service-list ul {
    display: flex;
    justify-content: space-around;
  }

  .service-list li {
    font-size: 14px;
  }

  /* ===== ROTATE SECTION ===== */
  .circle {
    width: 90px;
    height: 90px;
    font-size: 12px;
  }

  .content {
    font-size: 13px;
  }

  /* ===== SERVICES ===== */
  .services {
    width: 100%;
    padding: 30px 10px;
    text-align: center;
  }

  .services h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service {
    height: 250px;
    border-radius: 10px;
  }

  /* ===== TESTIMONIAL ===== */
  .testimonial {
    width: 100%;
    padding: 20px 5px;
    text-align: center;
  }

  .testimonial h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .testimonial img {
    width: 100%;
    max-width: 500px;
    height: auto;
  }

  /* ===== SMALL FIXES ===== */
  footer {
    width: 100%;
  }

  iframe {
    width: 100% !important;
    height: 100px;
  }

}


@media (max-width: 425px) {

  /* ===== NAVBAR ===== */
  .navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 12px 15px;
    align-items: center;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .hamburger {
    display: block;
    font-size: 22px;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .nav-links a {
    font-size: 18px;
  }

  .social-icons {
    display: none;
  }

  /* ===== HERO SECTION ===== */
  .hero {
    height: 100svh;
    width: 100%;


  }

  .hero-content h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .hero-content .service-list {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 5px;
  }


  .service {
    width: 100%;
  }

  .service-list ul {
    display: flex;
    justify-content: space-around;
  }

  .service-list li {
    font-size: 14px;
  }

  /* ===== ROTATE SECTION ===== */
  .rotate-section {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .circle {
    width: 120px;
    height: 120px;
    font-size: 14px;
  }

  .content-box {
    align-items: center;
  }

  .content {
    font-size: 14px;
  }

  /* ===== SERVICES ===== */
  .services {
    width: 100%;
    padding: 30px 10px;
    text-align: center;
  }

  .services h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service {
    height: 350px;
    border-radius: 10px;
  }

  /* ===== TESTIMONIAL ===== */
  .testimonial {
    width: 100%;
    padding: 20px 5px;
    text-align: center;
  }

  .testimonial h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .testimonial img {
    width: 100%;
    max-width: 500px;
    height: auto;
  }

  /* ===== SMALL FIXES ===== */
  footer {
    width: 100%;
  }

  iframe {
    width: 100% !important;
    height: 100px;
  }

}