* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f8fafc;
  color: #0f172a;
}

/* NAVBAR */
nav {
  background: white;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

nav h2 {
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
}

/* ===== HERO PROFESSIONAL BACKGROUND ===== */

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8%;
  color: white;

  background: linear-gradient(
      rgba(15, 23, 42, 0.75),
      rgba(15, 23, 42, 0.75)
    ),
    url(https://marketplace.canva.com/EAGFIC-S2fs/2/0/1600w/canva-blue-and-cream-minimalist-professional-cleaning-services-promo-instagram-post-3Zsgb7ysGvA.jpg);


  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #e2e8f0;
}

/* ===== SERVICES SECTION WITH BACKGROUND IMAGE ===== */
.services {
  padding: 100px 8%;
  background: linear-gradient(
      rgba(255, 255, 255, 0.85), 
      rgba(255, 255, 255, 0.85)
    ),
    url("https://marketplace.canva.com/EAGFIC-S2fs/2/0/1600w/canva-blue-and-cream-minimalist-professional-cleaning-services-promo-instagram-post-3Zsgb7ysGvA.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 60px;
  color: #1f2937;
  font-weight: 600;
}

/* GRID LAYOUT */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* SERVICE CARDS */
.service-card {
  background: rgba(255, 255, 255, 0.95); /* semi-transparent so cards stand out */
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.4s;
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* ICON */
.icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #2563eb;
}

/* CARD HEADINGS */
.service-card h3 {
  margin-bottom: 15px;
  color: #111827;
}

/* CARD DESCRIPTION */
.service-card p {
  color: #4b5563;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* PRICE */
.price {
  font-weight: 600;
  margin-bottom: 20px;
  color: #2563eb;
}

/* BUTTON INSIDE CARD */
.btn-card {
  padding: 10px 20px;
  background: #2563eb;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-card:hover {
  background: #1d4ed8;
}

/* FOOTER */
footer {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 25px;
  font-size: 14px;
}
/* ===== KEY SERVICES PREMIUM ONE LINE ===== */

.services-preview {
  padding: 100px 8%;
  background: #f8fafc;
}

.services-preview h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 600;
}

/* Force 4 boxes in one line */
.services-preview .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Special Box Design */
.services-preview .card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-top: 4px solid #2563eb;
  transition: 0.4s;
}

.services-preview .card h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.services-preview .card p {
  color: #64748b;
  font-size: 14px;
}

/* Hover Effect */
.services-preview .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Responsive (Mobile pe 2-2 box) */
@media (max-width: 992px) {
  .services-preview .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-preview .grid {
    grid-template-columns: 1fr;
  }
}
/* ===== STATS SECTION CENTER PREMIUM ===== */

.stats {
  padding: 100px 8%;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: white;
  text-align: center;
}

.stats .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.stats .grid div {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 15px;
  width: 100%;
  max-width: 220px;
  backdrop-filter: blur(8px);
  transition: 0.4s;
}

.stats .grid div:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.stats h2 {
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #38bdf8;
}

.stats p {
  font-size: 15px;
  color: #e2e8f0;
}

/* Responsive */
@media (max-width: 992px) {
  .stats .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats .grid {
    grid-template-columns: 1fr;
  }
}
/* ===== PREMIUM BUTTON BOX ===== */

.btn {
  display: inline-block;
  padding: 15px 35px;
  background: #2595eb;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease;
}

.btn:hover {
  background: #1d4ed8;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(37, 129, 235, 0.755);
}
/* ===== SERVICES SECTION WITH FULL BACKGROUND IMAGE ===== */

.services {
  padding: 120px 8%;
  background: linear-gradient(
      rgba(15, 23, 42, 0.75),
      rgba(15, 23, 42, 0.75)
    ),
    url("https://marketplace.canva.com/EAGFIC-S2fs/2/0/1600w/canva-blue-and-cream-minimalist-professional-cleaning-services-promo-instagram-post-3Zsgb7ysGvA.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;   /* premium scrolling effect */
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 70px;
  color: #ffffff;
  font-weight: 600;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* SERVICE BOX */
.service-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 45px 35px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  text-align: center;
  transition: 0.4s;
  backdrop-filter: blur(8px);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.3);
}

/* ICON */
.icon {
  font-size: 45px;
  margin-bottom: 20px;
  color: #2563eb;
}

/* TEXT */
.service-card h3 {
  margin-bottom: 15px;
  color: #0f172a;
}

.service-card p {
  color: #475569;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* PRICE */
.price {
  font-weight: 600;
  margin-bottom: 20px;
  color: #2563eb;
  font-size: 18px;
}

/* BUTTON */
.btn-card {
  padding: 12px 25px;
  background: #2563eb;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-card:hover {
  background: #1d4ed8;
}