* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --blackColor: black;
    --whiteColor: white;
    --primary: #ffffff;
    --secondary: #4CAF4F;
    --btnPadding: 6px 16px;
    --sectionPadding: 40px 10px;
  }
  .navbar, .heroSection {
    background-color: var(--primary) !important;
  }
  .myBtn {
    color: var(--whiteColor);
    background-color: var(--secondary) !important;
  }.textBlack {
    color: var(--blackColor);
  }
  
  .myBtn {
    padding: var(--btnPadding) !important;
    border-radius: 6px;
    width: fit-content;
    border: none;
  }
  
  .signupBtn {
    background-color: var(--secondary) !important;
  }
  .heroSection {
    padding: var(--sectionPadding) !important;
    color: var(--blackColor);
  }
  .ourClient,.manage {
    padding: var(--sectionPadding) !important;
    color: var(--blackColor);
    
  }
  .ourClient h1,.manage h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
    margin-bottom: 20px;
    text-align: center;
  }
  .ourClient p,.manage p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
  }
  .manage{
    
    margin: auto;
  }
  .cards{
    width: 100%;
    margin: auto;
  }
  .cards .col{
    width: 100%;
    margin: auto;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin:0 20px;
    padding: 20px;
  }
  .cards .col h1{
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 20px;
    text-align: center;
  }
  .cards .col p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
  }
  .text1 h1{
    font-size: 38px;
    font-weight: 600;
    line-height: 60px;
    margin-bottom: 20px;
    
  }
  .text1 p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
  .content2{

    margin: 60px;
  }
  .content2 img{
    width: 60%;
    

  }
  /* dfdfdfdafadad */
  .blog-section h2 {
    font-size: 1.8rem;
}
.blog-section .readmore {
    color: #28a745;
    text-decoration: none;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background-color: #f8f9fa;
}
.cta-section h1 {
    font-size: 2rem;
}

/* Footer */
.footer {
    background-color: #263238;
}
.footer h6 {
    margin-bottom: 15px;
}
.footer ul li {
    margin-bottom: 5px;
}
.footer .social-icons a {
    margin-right: 10px;
}
.footer input[type="email"]::placeholder {
  color: #ccc;
}
  @media (max-width: 768px) {
    .manage {
      width: 100%;
      font-size: smaller;
      padding: 30px !important;
    }
    .manage h1 {
      font-size: 24px;
      line-height: 36px;
    }
    .manage p {
      font-size: 12px;
      line-height: 14px;

    }
  }
 
 