*{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-padding-top: 2rem;
    scroll-behavior: smooth;
}

section{
    padding: 4.5rem 0 1.5rem;
}

.logo-image{
    max-height: 45px;
    width: auto;
}

    header{
    position: fixed;
    background-color: #21242c;
    width: 100%;
    height:70px;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 11px rgb(14 55 54 / 15%);
    padding: 20px 100px;
    transition: 0.5s;
}
/*
.profile{
     display: flex;
     align-items: center;
     column-gap: 0.5rem;
     cursor: pointer;
}
.profile-img{
    width: 40px;
    height: 40px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}
.profile-span{
    font-size: 13px;
    font-weight: 500;
    color: white;
     
}
.my-icon{
    color: white;
}
    */
.navbar{
    display: flex;
    column-gap: 2rem;
} 
.navbar a{
    font-size: 1rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    color: white
}
.navbar a:hover, .navbar .our-services{
    background-color: green;
    border-radius: 5rem;
    color: white;
    transition: background 0.5s;

}
#menu-icon{
    font-size: 24px;
    cursor: pointer;
    margin-left: auto;
    display: none;
}


    body {
      font-family: 'Inter', sans-serif;
      background-color: #f5f7fa;
      color: #1f1f1f;
    }
.service-details {
  max-width: 1100px;
  margin: 80px auto;
  text-align: left;
}

.service-details h2 {
  text-align: center;
  color: green;
  margin-bottom: 40px;
}

.detail {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.detail h3 {
  color: green;
  margin-bottom: 15px;
}

.detail ul {
  margin-top: 15px;
  padding-left: 20px;
}

.detail ul li {
  margin-bottom: 8px;
  list-style: disc;
}

    .services-section {
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
    }

    .services-section h2 {
      font-size: 2.8rem;
      color: green;
      margin-bottom: 15px;
    }

    .services-section p {
      font-size: 1.1rem;
      color: #555;
      margin-bottom: 50px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .service-card {
      background-color: #ffffff;
      border-radius: 12px;
      padding: 30px 25px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      border: 1px solid #e0e7ff;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }

    .service-card h3 {
      font-size: 1.4rem;
      color: green;
      margin-bottom: 15px;
    }

    .service-card p {
      font-size: 1rem;
      color: #555;
      line-height: 1.6;
    }

    .how-we-work {
  background: #f0f4ff;
  padding: 80px 20px;
}

.how-we-work h2 {
  text-align: center;
  color: green;
  margin-bottom: 50px;
}

.work-steps {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.step {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.step span {
  font-size: 2rem;
  font-weight: bold;
  color: green;
}
.faq {
  max-width: 900px;
  margin: 80px auto;
}

.faq h2 {
  text-align: center;
  color: green;
  margin-bottom: 30px;
}

.accordion {
  background: #fff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  font-weight: bold;
  margin-bottom: 10px;
  border-radius: 8px;
}

.panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}


.cta {
  background: green;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  background: #fff;
  color: green;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
}

    @media (max-width: 600px) {
      .services-section h2 {
        font-size: 2.2rem;
      }

      .service-card {
        padding: 25px 20px;
      }
    }
@media (max-width: 768px) {
    header {
      padding: 20px;
      flex-wrap: wrap;
    }
    
    .logo-image{
      padding-bottom: 15px;
    }
  
    #menu-icon {
      display: block;
      color: white;
      font-size: 24px;
      cursor: pointer;
      z-index: 1001;
    }
    .navbar {
      flex-direction: column;
      position: absolute;
      top: 70px;
      right: -100%;
      width: 100%;
      background-color: #333;
      transition: right 0.3s ease-in-out;
      text-align: center;
      z-index: 1000;
    }
  
    .navbar.active {
      right: 0;
    }
  
    .navbar li {
      margin: 1rem 0;
    }
}


    /*the footer*/
  
footer {
  background-color: #21242c;
  color: white;
  padding: 3rem 2rem;
  min-height:350px;
  line-height:4.0;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 100px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  width: 100px;
  margin-bottom: 1rem;
}

.footer-about p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.8;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  margin-bottom: 1rem;
  font-size: 18px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: green;
}

.footer-contact p {
  font-size: 14px;
  color: #ccc;
  margin: 0.5rem 0;
}

.footer-contact i {
  color: green;
  margin-right: 8px;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: #ccc;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
  color: green;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
}

.footer-bottom hr {
  border: none;
  height: 1px;
  background-color: #444;
  margin-bottom: 1rem;
}

.footer-bottom p {
  color: #aaa;
  font-size: 14px;
}
/* === Enhanced Footer Styling === */

/* Fade-in animation on load */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply the animation */
.footer {
  animation: fadeInUp 0.9s ease-out;
}

/* Accent underline for section titles */
.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  position: relative;
  display: inline-block;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 35%;
  height: 2px;
  background-color: green;
  border-radius: 4px;
}

/* Social icon glow + hover effect */
.social-icons a {
  position: relative;
  color: #ccc;
  font-size: 22px;
  transition: all 0.3s ease;
}

.social-icons a::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: radial-gradient(rgba(0, 255, 0, 0.2), transparent 70%);
  opacity: 0;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}

.social-icons a:hover {
  color: #00ff6a;
  transform: scale(1.2);
}

.social-icons a:hover::before {
  opacity: 1;
}

/* Smooth link hover underline animation */
.footer-links a {
  position: relative;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: green;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #00ff6a;
}

.footer-links a:hover::after {
  width: 100%;
}


@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}


