/* Reset & base styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #222;
  background: #f9f9f9;
}

/* Navbar */
/* .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 32px;
  background: linear-gradient(120deg, #232526 0%, #6a82fb 100%);
  color: #fff;
  position: relative;
  z-index: 10;
} */

.logo img {
  height: 60 px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: right 0.3s;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}


.nav-links .fa-whatsapp { color: #25d366; font-size: 1.3em; }
.nav-links .fa-facebook-f { color: #3b5998; font-size: 1.2em; }
.phone-link a { color: #fff; font-size: 1rem; }

/* Hero Section */
.hero-small {
  background: linear-gradient(120deg, #232526 0%, #6a82fb 100%);
  color: #fff;
  margin: auto;
  margin-top: 20px;
  border-radius: 15px;
  text-align: center;
  padding: 56px 16px 36px 16px;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-small h1 {
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-weight: bold;
}
.hero-small p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}


/* Services Cards */
.container{
  border-radius: 30px;
}

.services-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.service-block {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(40,0,80,0.07);
  padding: 32px 24px;
  width: 320px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  box-sizing: border-box;
}

.service-block:hover {
  box-shadow: 0 8px 32px rgba(40,40,80,0.13);
  transform: translateY(-8px) scale(1.03);
  z-index: 2;
}
.service-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.service-img {
  max-width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: #f9f9fb;
  box-shadow: 0 2px 8px rgba(79,140,255,0.07);
  margin-bottom: 10px;
  display: block;
}
.service-header h2 {
  margin: 0 0 8px 0;
  color: #4f8cff;
  font-size: 1.2rem;
  text-align: center;
}
.service-header p {
  margin: 0;
  color: #444;
  font-size: 1rem;
  text-align: center;
}
.sub-services {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.sub-services li {
  font-size: 1.05rem;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sub-services i {
  color: #4f8cff;
  font-size: 1.1em;
}
.service-btn {
  margin-top: auto;
  background: linear-gradient(90deg, #4f8cff 0%, #6ee7b7 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(79,140,255,0.08);
  transition: background 0.2s, transform 0.2s;
  display: block;
  width: 100%;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
}
.service-btn:hover {
  background: linear-gradient(90deg, #6ee7b7 0%, #4f8cff 100%);
  transform: translateY(-2px) scale(1.03);
}

.service-btn a {
  color: #fff;
  text-decoration-line: none;
}


/* Why Choose Me Section */
.why-choose-me {
  background: linear-gradient(90deg, #f9f9fb 60%, #e3f6ff 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(40,0,80,0.07);
  max-width: 800px;
  margin:  auto auto;
  padding: 36px 28px 32px 28px;
  width: 100%;
  box-sizing: border-box;
}
.why-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 90%;
  padding: 20px;
  padding-right: 20px;
}
.why-title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 90%;
  justify-content: left;
}
.why-icon {
  font-size: 2rem;
  margin-left: 120px; /* Adjusted for better alignment */
}
.why-choose-me h2 {
  font-size: 1.7rem;
  color: #1e1f1e;
  margin: 0;
  letter-spacing: 1px;
  word-break: break-word;
  text-align: center;
  font-weight: 900;
}
.why-desc {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 8px;
  word-break: break-word;
  text-align: center;
  width: 100%;
}
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-left: 120px; /* Adjusted for better alignment */
}
.why-list li {
  font-size: 1.08rem;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
  word-break: break-word;
}
.why-list i {
  color: #4f8cff;
  font-size: 1.1em;
  flex-shrink: 0;
}

/* Footer */
.footer {
  background: #232526;
  color: #fff;
  text-align: center;
  padding: 24px 0 12px 0;
  margin-top: 48px;
}
.footer-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .services-page {
    gap: 24px;
  }
}
@media (max-width: 1050px) {
  .services-page {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .service-block {
    width: 90vw;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 900px) {
  .why-choose-me {
    max-width: 98vw;
    padding: 18px 2vw;
    margin: 24px 0 24px 0;
  }
  .why-title h2 {
    font-size: 1.1rem;
  }
  .why-icon {
    font-size: 1.2rem;
  }
  .navbar {
    padding: 14px 10px;
  }
}
@media (max-width: 700px) {
  .why-choose-me {
    padding: 10px 1vw;
    border-radius: 10px;
    margin: 12px 0 12px 0;
  }
  .why-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .why-title h2 {
    font-size: 1rem;
    text-align: left;
  }
  .why-desc {
    font-size: 0.95rem;
  }
  .why-list li {
    font-size: 0.93rem;
    gap: 6px;
  }
}
@media (max-width: 500px) {
  .service-block {
    padding: 18px 6px;
    min-height: 420px;
  }
  .service-img {
    width: 80px;
    height: 80px;
  }
  .footer-content {
    font-size: 0.95rem;
  }
  .hero h1 {
    font-size: 1.4rem;
  }
}
@media (max-width: 400px) {
  .why-choose-me {
    padding: 8px 1vw;
  }
  .why-title h2 {
    font-size: 0.92rem;
  }
  .why-list li {
    font-size: 0.9rem;
  }
}