/* Google Fonts: Montserrat */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #e3f2fd;
  color: #222;
}

header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2196f3;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #2196f3;
}

.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1642505172378-a6f5e5b15580?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33, 150, 243, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem 3rem 1rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-btn {
  display: inline-block;
  background: #2196f3;
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(33,150,243,0.08);
  transition: background 0.2s, transform 0.2s;
}

.cta-btn:hover {
  background: #1565c0;
  transform: translateY(-2px) scale(1.03);
}

.cta-btn.secondary {
  background: #fff;
  color: #2196f3;
  border: 2px solid #2196f3;
  margin-top: 1.5rem;
}

.cta-btn.secondary:hover {
  background: #e3f2fd;
}

.cta-btn.hero-cta {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cta-btn.hero-cta::before {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  border-radius: 35px;
  border: 3px solid transparent;
  background: linear-gradient(120deg, #2196f3, #25D366, #2196f3, #fff, #2196f3);
  background-size: 300% 300%;
  z-index: -1;
  animation: borderMove 2.5s linear infinite;
  pointer-events: none;
}
@keyframes borderMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.services {
  background: #fff;
  padding: 4rem 0 3rem 0;
}

.services h2 {
  text-align: center;
  color: #2196f3;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.service-card {
  background: #e3f2fd;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(33,150,243,0.07);
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  max-width: 300px;
  min-width: 220px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 6px 24px rgba(33,150,243,0.13);
  transform: translateY(-4px) scale(1.03);
}

.service-card h3 {
  color: #2196f3;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.about {
  background: #bbdefb;
  padding: 4rem 0 3rem 0;
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  color: #2196f3;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.about blockquote {
  font-style: italic;
  color: #1565c0;
  background: #fff;
  border-left: 5px solid #2196f3;
  padding: 1.2rem 1.5rem;
  border-radius: 10px;
  margin: 0 auto 1.5rem auto;
  max-width: 500px;
}

.about blockquote span {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.95rem;
  color: #2196f3;
}

.contact {
  background: #fff;
  padding: 4rem 0 3rem 0;
}

.contact-content {
  text-align: center;
}

.contact h2 {
  color: #2196f3;
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.phone-link {
  display: inline-block;
  font-size: 1.3rem;
  color: #2196f3;
  font-weight: 700;
  margin: 1.2rem 0 0.5rem 0;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.phone-link:hover {
  color: #1565c0;
  text-decoration: underline;
}

footer {
  background: #2196f3;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 1rem;
}

.map-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin: 2rem 0 1.5rem 0;
  box-shadow: 0 2px 12px rgba(33,150,243,0.07);
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.testimonials {
  background: #e3f2fd;
  padding: 4rem 0 3rem 0;
  text-align: center;
}

.testimonial-title {
  color: #2196f3;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 2.2rem;
  text-transform: uppercase;
}

.testimonial-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-arrow {
  background: none;
  border: none;
  color: #2196f3;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  padding: 0 1rem;
  user-select: none;
}
.testimonial-arrow:hover {
  color: #1565c0;
  transform: scale(1.15);
}

.testimonial-content {
  flex: 1 1 0;
  min-width: 0;
  max-width: 600px;
  position: relative;
}

.testimonial {
  display: none;
  flex-direction: column;
  align-items: center;
  font-size: 1.1rem;
  color: #222;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(33,150,243,0.07);
  padding: 2.2rem 2rem 2rem 2rem;
  min-height: 180px;
  transition: box-shadow 0.2s;
}

.testimonial.active {
  display: flex;
}

.testimonial-quote {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2196f3;
  margin-bottom: 0.7rem;
}

.testimonial-author {
  display: block;
  margin-top: 1.2rem;
  font-size: 1rem;
  color: #1565c0;
  font-style: italic;
}

.testimonial-dots {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bbdefb;
  display: inline-block;
  transition: background 0.2s;
  cursor: pointer;
}
.dot.active {
  background: #2196f3;
}

.services-catchy {
  color: #2196f3;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: -1rem;
  letter-spacing: 0.5px;
}

.service-img {
  width: 100%;
  max-width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-us {
  background: #e3f2fd;
  padding: 4rem 0 3rem 0;
  text-align: center;
}

.why-title {
  color: #2196f3;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.why-features {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.why-feature {
  flex: 1 1 180px;
  color: #2196f3;
  font-size: 1.35rem;
  font-weight: 600;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  line-height: 1.3;
}

.why-divider {
  width: 2px;
  background: #2196f3;
  opacity: 0.2;
  margin: 0 0.5rem;
  border-radius: 2px;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .services-list {
    flex-direction: column;
    align-items: center;
  }
  .service-card {
    max-width: 90%;
  }
  .why-features {
    flex-direction: column;
    gap: 1.5rem;
  }
  .why-divider {
    width: 60%;
    height: 2px;
    margin: 1.2rem auto;
  }
}

@media (max-width: 700px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .about-content, .contact-content {
    padding: 0 1rem;
  }
  .testimonial-slider {
    gap: 0.5rem;
  }
  .testimonial-content {
    max-width: 98vw;
    padding: 0 0.5rem;
  }
  .testimonial {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
  .testimonial-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 500px) {
  .container {
    width: 98%;
  }
  .logo {
    font-size: 1.1rem;
  }
  .hero-content h1 {
    font-size: 1.3rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
  }
  .service-card {
    padding: 1.2rem 0.7rem;
  }
} 