
  @import url('https://fonts.googleapis.com/css2?family=Annie+Use+Your+Telescope&family=Cabin:ital,wdth,wght@0,87.5,600;1,87.5,600&family=Cedarville+Cursive&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Edu+NSW+ACT+Cursive:wght@400..700&family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Michroma&family=Montserrat:ital,wght@0,600;1,600&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Outfit:wght@100..900&family=Qwitcher+Grypen:wght@400;700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Nunito", sans-serif !important;
}  
    
    /* Hero Section */
    .hero-section {
      position: relative;
      background: url('./odooERP.webp') center/cover no-repeat;
      height: 500px;
      display: flex;
      align-items: center;
    }

    .hero-overlay {
      background: rgba(0, 0, 0, 0.4); /* Dark overlay */
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 400px;
      background: rgba(255, 255, 255, 0.685);
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
      margin-left: 5%;
    }

    .hero-content h1 {
      font-size: 1.5rem;
      font-weight: bold;
      color: #222;
    }

    .hero-content p {
      margin-top: 15px;
      font-size: 1rem;
      color: #444;
    }

    .hero-buttons .btn {
      border-radius: 30px;
      padding: 0.6rem 1.5rem;
      font-weight: 500;
      font-size: 14px;
      margin-right: 10px;
      transition: all 0.3s ease;
    }

    .btn-dark {
      background-color: #000;
      border: none;
    }

    .btn-dark:hover {
      background-color: #333;
    }

    .btn-success {
      background-color: #2863a7;
      border: none;
    }

    .btn-success:hover {
      background-color: #2863a7;
    }
    


    /* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .hero-section {
    height: 400px;
  }
  .hero-content {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 1.3rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .hero-buttons .btn {
    font-size: 13px;
    padding: 0.5rem 1.2rem;
    margin: 5px;
  }
}

/* Mobile Landscape (≤ 768px) */
@media (max-width: 768px) {
  .hero-section {
    height: 350px;
  }
  .hero-content {
    padding: 1.5rem;
    border-radius: 10px;
  }
  .hero-content h1 {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
}

/* Mobile Portrait (≤ 576px) */
@media (max-width: 576px) {
  .hero-section {
    height: auto;
    padding: 50px 15px;
  }
  .hero-content {
    max-width: 100%;
    padding: 1rem;
  }
  .hero-content h1 {
    font-size: 1.1rem;
  }
  .hero-content p {
    font-size: 0.85rem;
  }
  .hero-buttons .btn {
    font-size: 12px;
    padding: 0.45rem 1rem;
    width: 100%; /* full width buttons for small screens */
    margin: 8px 0;
  }
}





/* Title styling */
.client-overview-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #003366;
  position: relative;
  padding-bottom: 10px;
}
.client-overview-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #007bff;
  border-radius: 2px;
} 


.client-image {
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* Meta info pills */
.client-meta {
  gap: 10px;
}
.client-meta .info-box {
  background: #ecf5ff;  
  padding: 8px 14px;    
  border-radius: 20px;   
  border: 1px solid #dce7f5;
  font-size: 0.9rem;
  color: #333;
  margin: 5px;
  white-space: nowrap;
  display: inline-block;
}

/* Paragraph */
.client-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Needs list */
.client-needs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.client-needs li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #444;
  display: flex;
  align-items: center;
}

.client-needs li i {
  color: #007bff;   /* Accent color */
  margin-right: 10px;
  font-size: 1.2rem;
}







.challenges-section .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.challenges-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
}

.challenges-section .intro-text,
.challenges-section .conclusion {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.challenge-card {
    background-color: #3271b1;
    color: #ffffff; 
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


.challenge-card .icon-box {
    width: 100%;
    height: auto;
    background-color: transparent; 
    color: #d8e9fb;
    border-radius: 0;
    font-size: 10rem;
    font-weight: 700;
    margin-bottom: 0;
    display: block;
    text-align: center;
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    z-index: 0;
}


.challenge-card h5,
.challenge-card p {
    position: relative; 
    z-index: 1;
    text-align: center; 
}

.challenge-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #181818;
    margin-bottom: 0.75rem;
}

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


.process-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 40px;
}

.process-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-box {
  display: flex;
  align-items: start;
  margin-bottom: 25px;
  border-radius: 8px;
  transition: 0.3s;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: black;
  margin-right: 15px;
}


.step-content h5 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.step-content p {
  margin: 0;
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}




.result-card {
  background: #e8f1fd;            
  border-radius: 10px;             
  padding: 10px;
  display: flex;
  align-items: flex-start;
  border: 1px solid #d4e6fd;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.result-card:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,0.1); /* hover effect */
}

.result-card i {
  color: #3459d0;   /* Green check */
  font-size: 1rem;
  margin-right: 12px;
  margin-top: 3px;
}

.result-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  color: #444;
  line-height: 1.6;
}










.key-takeaways h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 20px;
  position: relative;
}

.key-takeaways h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #007bff;
  margin-top: 8px;
  border-radius: 2px;
}

.key-takeaways p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.takeaway-img {
  border-radius: 15px;
  max-height: 350px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}



.cta-section {
   background: linear-gradient(135deg, #6cb5fe, #b4efff);
  color: #1b1b1b;
  padding: 30px 40px;
  margin-top: 30px; /* gap from content */
  margin-bottom: 30px;
  border-radius: 30px;
}


.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #1c1c1c;
}

.btn-cta {
  background: black;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-cta:hover {
  background: #002954;
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
