/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.6;
  background: #cce7ff; /* Light blue background */
  color: #222;
  padding: 0;
  margin: 0;
}

/* Header */
header {
  background: #fff;
  border-bottom: 2px solid #0077cc;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 26px;
  font-weight: bold;
  color: #0077cc;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a.cta {
  background: #0077cc;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
}

nav a:hover {
  color: #0077cc;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #111;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero .cta {
  display: inline-block;
  background: #0077cc;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.hero .cta:hover {
  background: #005fa3;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: auto;
}

.services .svc {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.services img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.services h3 {
  margin-bottom: 10px;
  color: #0077cc;
}

.services p {
  margin-bottom: 15px;
}

.services .btn-link {
  text-decoration: none;
  color: #0077cc;
  font-weight: 600;
}

.services .btn-link:hover {
  text-decoration: underline;
}

/* Testimonials */
#testimonials {
  background: #f9fbff;
  padding: 60px 40px;
  text-align: center;
}

#testimonials h2 {
  margin-bottom: 20px;
  color: #0077cc;
}

#testimonials blockquote {
  font-style: italic;
  margin: 20px auto;
  max-width: 700px;
  color: #444;
}

/* Contact Section */
#contact {
  background: #fff;
  padding: 60px 40px;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#contact h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #0077cc;
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contact input,
#contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
}

#contact button {
  background: #0077cc;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

#contact button:hover {
  background: #005fa3;
}

/* Footer */
footer {
  background: #cce7ff;
  padding: 30px 20px;
  text-align: center;
  margin-top: 40px;
  border-top: 2px solid #0077cc;
}

footer .footer-contact {
  margin-bottom: 15px;
}

footer p {
  margin: 6px 0;
  color: #222;
}

footer a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 10px;
  }

  nav a {
    margin: 10px;
    display: inline-block;
  }

  .hero h1 {
    font-size: 28px;
  }
}


/* ==============================
   Service / Page Section Styling
   Applies to all pages except index.html
============================== */
.page-section {
  background: #fff;
  max-width: 900px;
  margin: 50px auto;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-section h2 {
  text-align: center;
  color: #0077cc;
  margin-bottom: 25px;
  font-size: 28px;
}

.page-section p {
  text-align: center;
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.page-section ul {
  list-style-type: disc;
  padding-left: 30px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.page-section li {
  margin-bottom: 12px;
}

/* Optional: Responsive adjustments */
@media (max-width: 768px) {
  .page-section {
    padding: 30px 20px;
  }

  .page-section h2 {
    font-size: 24px;
  }

  .page-section p,
  .page-section li {
    font-size: 15px;
  }
}


footer .social-icon img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-left: 5px;
  transition: transform 0.3s;
}

footer .social-icon:hover img {
  transform: scale(1.2);
}
