

/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');
/* General Reset */

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

/* Layout & Sections */
section {
  padding: 20px;
  margin: 100px auto;
  max-width: 900px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

ul {
  list-style: none;
  padding: 0;
}
ul li {
  margin-bottom: 10px;
}

/* Header Styling */
.site-header {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(to bottom, #111 0%, #1a1a1a 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.site-header .logo {
  width: 400px;
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.site-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.site-header p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-top: 8px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Section Titles */
.intro,
.services {
  padding: 40px 20px;
}

.intro h2,
.services h2,
.about h2,
.contact h2 {
  color: #222;
}

/* Buttons */
a.btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

a.btn:hover {
  background-color: #007acc;
  transition: background-color 0.3s ease;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #aaaaaa;
}

.callout-box {
  background-color: #ffffff;
  padding: 3rem;
  max-width: 800px;
  margin: 4rem auto;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.callout-box h2 {
  font-size: 2rem;
  color: #222222;
  margin-bottom: 1rem;
}

.callout-box p {
  font-size: 1.1rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.callout-button {
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.callout-button {
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

/* polish the main CTA */
.callout-button {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.callout-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  background-color: #0066cc; /* slightly deeper blue */
}

.callout-button:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.callout-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.25), 0 10px 20px rgba(0,0,0,0.12);
}

.callout-button:hover {
  background-color: #0056b3;
}
.features-section {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}

.features-section h2 {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: #222;
}

.features-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease; /* ✅ Add here */
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature:hover i {
  color: #007bff;
  transform: scale(1.2);
  transition: transform 0.3s ease, color 0.3s ease;
}

[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}


.feature i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, color 0.3s ease; /* <-- add this */
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.feature p {
  font-size: 1rem;
  color: #666;
}
.services-section {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.services-section h2 {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: #222;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background-color: #f1f1f1;
  border-radius: 12px;
  padding: 2rem;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.service-card:hover h3 {
  color: #007bff; /* Accent blue */
}

.service-card:focus-within {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12), 
              0 0 0 3px rgba(0, 123, 255, 0.15);
}

.service-card i {
    color: #007bff; /* Accent blue */
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-card:hover i {
    color: #0056b3; /* Darker blue on hover */
    transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.service-card p {
  font-size: 1rem;
  color: #555;
}

/* =========================
   About & Contact polish
   ========================= */
.about-section h2::after,
.contact-section h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 0.75rem auto 0;
  background: #007bff;
  border-radius: 2px;
  opacity: 0.9;
}

/* Contact icons + links */
.contact-info i {
  margin-right: 0.5rem;
  color: #007bff;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

/* Contact CTA buttons under info */
.contact-actions {
  margin-top: 1.5rem;
}
.contact-actions .btn {
  display: inline-block;
  margin: 0.25rem 0.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.contact-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  background: #0066cc;
}
.contact-actions .btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.25), 0 10px 20px rgba(0,0,0,0.12);
}

/* Light variant to pair with your main blue */
.contact-actions .btn.btn-light {
  background: #eef5ff;
  color: #0b5ed7;
}
.contact-actions .btn.btn-light:hover {
  background: #d9eaff;
}
/* ====== end About & Contact polish ====== */

.about-section {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}

.about-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #222;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}
.contact-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #222;
}

.contact-info p {
  font-size: 1.1rem;
  color: #555;
  margin: 0.5rem 0;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
.site-footer {
  background-color: #1f1f1f;
  color: #cccccc;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #007bff;
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.2s ease;
  z-index: 999;

  /* start hidden until scrolled */
  opacity: 0;
  pointer-events: none;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.top-nav { text-align: center; margin-top: 10px; }
.back-link {
  color: #a8d1ff;
  font-weight: 600;
  text-decoration: none;
}
.back-link:hover { text-decoration: underline; }
