
  @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('./1.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;
      word-spacing: normal;
      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;
  }
}



/* Section Title */
.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 */
.client-image {
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  object-fit: cover;
  height: auto;
  width: 100%;
}

/* Meta info */
.client-meta {
  gap: 15px;
}

.client-meta-list {
  padding: 0;
  margin: 0;
}

.client-meta-list li {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #333;
  background-color: rgb(231, 231, 255);
  padding: 6px 20px;
  border-radius: 30px;
}

.client-meta-list i {
  color: #007bff; 
  font-size: 20px;
  margin-right: 10px;
}

/* Paragraph */
.client-description {
  font-size: 1rem;
  color: #555;
  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;
}

/* Fix big image */
.solution-image {
  width:100%;   /* Limit width */
  height: auto;  /* Limit height */
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* Step boxes */
.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: #007bff;
}

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





.challenges-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}


/* Challenge Item */
.challenges-section .row > div {
  display: flex;
}

.challenges-section .row > div > div {
  background: #dae7fb;
  border: 1px solid #007bff27;
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  width: 100%;
}

.challenges-section .row > div > div:hover {
  background: #eef6ff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.challenges-section i {
  font-size: 18px;
  color: #007bff;
  margin-top: 5px;
  flex-shrink: 0;
}

.challenges-section p {
  margin: 0;
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}




.result-card {
  display: flex;
  align-items: flex-start;
  background: #f4fbff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.result-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.result-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #007bff58;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007bff;
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}

.result-text h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #003366;
}

.result-text p {
  margin: 5px 0 0;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}






.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);
}
.key-takeaways li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.key-takeaways li:hover {
  background: #eef6ff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.key-takeaways i {
  font-size: 24px;
  color: #007bff;
  margin-right: 15px;
  flex-shrink: 0;
}

.key-takeaways div {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}




/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #003366, #007bff);
  color: #fff;
  padding: 60px 20px;
  margin-top: 50px; /* gap from content */
}

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

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.cta-list {
  margin: 20px auto;
  max-width: 600px;
  text-align: left;
}
.cta-list {
  margin: 20px 0;
  padding: 0;
  text-align: left;
}

.cta-list li {
  font-size: 1.1rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 500;
}

.cta-list i {
  color: #007bff;
  font-size: 22px;
  margin-right: 12px;
}

.cta-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}


.cta-text {
  font-size: 1rem;
  line-height: 1.6;
}

.cta-section .btn-cta {
  font-size: 1.1rem;
  background: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.cta-section .btn-cta:hover {
    text-decoration: none;
  background: #d1d4ff;
  color: #003366;
}






.case-study h2 {
  color: #000000;
  font-size: 24px;
  font-weight: 600 !important;
}

.step-wrapper {
  background: #E8EAF6;
  border-radius: 8px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); 
}

.step-wrapper h4 {
  color: #3F51B5;
}

.step-list li {
  margin-bottom: 10px;
  font-size: 17px;
  color: #37474F;
}

.step-list li strong {
  color: #00BCD4;
}

.feature-box {
  background: #ffffff;
  border: 1px solid #ECEFF1;
  border-radius: 8px !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-shadow {
  box-shadow: 0 3px 15px rgba(63, 81, 181, 0.08);
}

.feature-box h5 {
  color: #3F51B5;
  font-size: 20px;
  margin-bottom: 1rem;
}

.feature-box p {
  color: #546E7A;
  line-height: 1.6;
}

.feature-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 188, 212, 0.2); 
  border-color: #00BCD4;
}

@media(max-width: 767px){
  .case-study h2 { font-size: 30px; }
}




    .business-impact h2 {
  color: #000000;
  font-size: 32px;
}

.impact-box {
  background: #fafdff;
  border-left: 6px solid #d5e7fe;
  font-size: 16px;
  line-height: 1.6;
  transition: 0.3s ease;
}

.impact-box:hover {
  transform: translateY(-6px);
  border-left-color: #707bf5;
  background-color: #ebebff;
}

@media(max-width: 767px){
  .business-impact h2 { font-size: 26px; }
}




.custom-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.full-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}
