body{
    background-color: #fafafa;
}


    .logo img {
      width: 120px;
    }
    .menu img {
      width: 25px;
      margin-right: 15px;
    }
    .nav-link {
      color: #02509E !important;
      font-weight: 500;
      font-size: 18px;
    }
    .btn-login {
      background-color: #02509E;
      color: white;
      border-radius: 8px;
      padding: 10px 18px;
      font-size: 16px;
      width: 140px;
      transform: translateX(30px);
    }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,86,179, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    .hero-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    z-index: 0;
    }

    /* Right dashboard image as background (before) */
    .hero-section::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 800px;
    height: 700px;
    background: url('img/herobg.png') no-repeat right center;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
    
    }

    /* Circular ring background (after) */
    .hero-section::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 700px;
    height: 600px;
    background: url('img/heroimg.png') no-repeat center right;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
    transform: translate(-50px, 0px); /* Moved 50px left and 91px down */
    }

    .hero-title {
    font-size: 100px;
    color: #02509E;
    }

    .hero-subtitle {
    font-size: 24px;
    letter-spacing: 1px;
    color: #0097FB !important;
    font-weight: 400;
    }

    .hero-description {
    font-size: 18px;
    font-weight: 300;
    line-height: 50px;
    max-width: 600px;
    color: #757575;

    }

    .btn-primary {
    background-color: #02509E;
    border-color: #0046a5;
    border-radius: 12px;
    width: 140px;
    height: 50px;
    padding: 15px 10px 10px 10px;
    }
    @media (max-width: 1250px) and (min-width: 1000px) {
  .hero-section {
    padding: 80px 0;
  }

  .hero-section::before {
    width: 600px;
    height: 500px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
    background-position: center right;
    opacity: 0.9;
  }

  .hero-section::after {
    width: 480px;
    height: 430px;
    top: 0;
    right: 0;
    transform: translate(-20px, 0px);
    background-size: contain;
    opacity: 0.8;
  }

  .hero-title {
    font-size: 72px;
  }

  .hero-subtitle {
    font-size: 22px;
    letter-spacing: 0.5px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 36px;
    max-width: 550px;
  }

  .btn-primary {
    width: 130px;
    height: 45px;
    font-size: 14px;
    padding: 12px 10px;
  }
}

/* services  */

    .services-section {
        margin-top: 70px;
      padding: 100px 0;
      text-align: center;
      position: relative;
      background: url('img/servicebg.png') center center no-repeat;
      background-size: 1000px 800px;
      z-index: 1;
    }

    .services-section::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .services-section h2 {
      color: #02509E;
      font-weight: 700;
      margin-bottom: 60px;
      font-size: 60px;
      position: relative;
      z-index: 2;
      letter-spacing: 1px;
      
    }

    .service-card {
      background: #ffffff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      border-radius: 12px;
      padding: 40px 20px 30px;
      height: 100%;
      position: relative;
      transition: 0.3s;
      z-index: 2;
    }

    .service-card:hover {
      transform: translateY(-5px);
      cursor: pointer;
    }

    .service-icon {
      margin-bottom: 20px;
    }

    .service-card h5 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #757575;
    }

    .service-card p {
      font-size: 16px;
      color: #757575;
      line-height: 25px;
      margin-bottom: 0;
    }

    .services-section .container {
      position: relative;
      z-index: 2;
    }

    /* modal section */

      .modules-section {
    position: relative;
    padding: 60px 20px;
    background-color: #f9f9f9;
    overflow: hidden;
  }
  .modules-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 700px;
    height: 100%;
    background: url('img/servicerightbg.png') no-repeat right center;
    background-size: contain;
    z-index: 1;
    /* opacity: 0.2;  */
  }
.section-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.section-title-wrapper::before,
.section-title-wrapper::after {
  content: "";
  flex: 1;
  height: 2px; 
  background-color: #02509E;
  margin: 0 20px;
  max-width: 150px; /* hard limit for line width */
}
.section-title {
  font-weight: 600;
  color: #02509E;
  text-transform: uppercase;
  margin: 0;
  font-size: 32px;
}

  .module-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
  }
  .module-icon {
    width: 48px;
    height: 48px;
    /* background-color: #ffffff; */
    /* border-radius: 50%; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
  }

  .module-content h6 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #757575;
  }
  .module-content p {
    font-size: 14px;
    margin: 0;
    color: #757575;
    font-weight: 300;
  }


  /* why chose us  */

         
        .main-container {
            /* max-width: 1350px; */
            width: 100%;
            margin: 0 auto;
            background: #fafafa;
            display: flex;
            min-height: 600px;
        }
        
        .left-section {
            /* background: linear-gradient(135deg, #1e5cb3 0%, #2b74d6 100%); */
            background-image: url('img/whychooseusleftbg.png');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            position: relative;
            overflow: hidden;
            width: 50%;
            height: 750px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        
        .main-title {
            position: relative;
            z-index: 2;
            color: white;
            font-size: 2.8rem;
            font-weight: 900;
            text-align: left;
            line-height: 0.9;
            letter-spacing: 2px;
            padding-left: 30px;
        }
        
        .right-section {
            padding: 40px 30px;
            background: #fafafa;
            flex: 1;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 40px;
            position: relative;
            margin-left: -73px;
            margin-top: 20px;
        }
        
        .feature-number {
            width: 90px;
            height: 90px;
            background: #1e5cb3;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 24px;
            margin-right: 25px;
            flex-shrink: 0;
            position: relative;
            z-index: 3;
            border: 10px solid white;
            /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
        }
        
 
        .feature-content h4 {
            color: #757575;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.3;
        }
        
        .feature-content p {
            color: #717171;
            font-size: 20px;
            font-weight: 300;
            line-height: 1.5;
            margin: 0;
        }

        /* footer */
    
    .footer-container {
      background-color: #f8f9fb;
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .footer-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 400px; 
      height: 430px;
      background-image: url('img/footerbg.png'); 
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      z-index: 0;
    }

    .footer-content {
      position: relative;
      z-index: 1;
      padding: 80px 20px 40px;
      max-width: 1300px;
      margin: 0 auto;
    }

    .footer-section h5 {
      font-size: 18px;
      font-weight: 400;
      margin-bottom: 25px;
      color: #757575 !important;
    }

    .footer-section ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-section ul li {
      margin-bottom: 12px;
    }

    .footer-section ul li a {
      color: #757575;
      font-size: 14px;
      text-decoration: none;
      font-weight: 400;
    }

    .subscribe-section {
      background: #203C860D;
      padding: 30px;
      border-radius: 8px;
    }

    .email-input-container {
      position: relative;
      margin-bottom: 15px;
    }

    .email-input {
      width: 100%;
      padding: 12px 50px 12px 15px;
      border: 1px solid #e1e5e9;
      border-radius: 6px;
      font-size: 12px;
      background: #f8f9fa;
      color: #757575 !important;
        }
    .subscribe-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #02509E;
    color: white;
    border: none;
    padding: 8px 20px; 
    border-radius: 4px;
    font-weight: 300 !important;
    font-size: 14px;
    }


    .footer-bottom {
      border-top: 1px solid #e1e5e9;
      padding: 30px 0 0;
      margin-top: 40px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
    }

    .logo-icon {
      width: 32px;
      height: 32px;
      background: #1e5cb3;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 10px;
    }

    .footer-links a {
      color: #757575;
      font-size: 14px;
      text-decoration: none;
    }

    .social-icons {
      display: flex;
      justify-content: flex-end;
      gap: 15px;
    }

    .social-icons a {
      width: 36px;
      height: 36px;
      background: #f1f3f4;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #7b8794;
    }

    .social-icons a:hover {
      background: #1e5cb3;
      color: white;
    }



    /* responsive */

  @media (max-width: 991px) {
          .btn-login {
        width: 100%;
        margin-top: 10px;
      }
      .navbar-nav {
        align-items: center;
      }

  .hero-section {
    padding: 60px 20px;
    text-align: center;
  }

  .hero-section::before {
    width: 400px;
    height: 350px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
    opacity: 0.5;
  }

  .hero-section::after {
    width: 350px;
    height: 300px;
    top: 30px;
    right: 0;
    transform: translate(0, 0);
    background-size: contain;
    opacity: 0.4;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 28px;
    margin: 0 auto;
    max-width: 90%;
  }

  .btn-primary {
    width: 130px;
    height: 45px;
    font-size: 16px;
    margin-top: 20px;
  }

  /* services  */

    
  .services-section {
    padding: 60px 20px;
    background-size: 700px 600px;
    background-position: center top;
  }

  .services-section h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .service-card {
    padding: 30px 15px 25px;
  }

  .service-card h5 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 15px;
    line-height: 24px;
  }
    .modules-section {
    padding: 40px 15px;
  }

  .modules-section::after {
    width: 400px;
    opacity: 0.3; /* Optional: make it subtle on smaller screens */
  }

  .section-title {
    font-size: 26px;
  }

  .section-title-wrapper::before,
  .section-title-wrapper::after {
    max-width: 80px;
    margin: 0 10px;
  }

  .module-box {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .module-icon {
    width: 40px;
    height: 40px;
  }

  .module-content h6 {
    font-size: 16px;
  }

  .module-content p {
    font-size: 13px;
  }

   .main-container {
    flex-direction: column;
    min-height: auto;
  }

  .left-section {
    width: 100%;
    height: 400px;
    justify-content: center;
    padding: 30px 20px;
  }

  .main-title {
    font-size: 2.2rem;
    text-align: center;
    padding-left: 0;
  }

  .right-section {
    padding: 30px 20px;
  }

  .feature-item {
    margin-left: 0;
    flex-direction: row;
    align-items: flex-start;
  }

  .feature-number {
    width: 70px;
    height: 70px;
    font-size: 20px;
    margin-right: 20px;
    border: 6px solid white;
  }

  .feature-content h4 {
    font-size: 18px;
  }

  .feature-content p {
    font-size: 16px;
  }
  .footer-content {
    padding: 60px 20px 30px;
  }

  .footer-section {
    margin-bottom: 30px;
    text-align: center;
  }

  .subscribe-section {
    padding: 25px 20px;
  }

  .footer-bottom {
    padding: 20px 0 0;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: 15px;
  }

  .footer-links {
    justify-content: center;
    margin-bottom: 15px;
    gap: 15px;
  }

  .social-icons {
    justify-content: center;
  }

  .subscribe-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

}

@media (max-width: 576px) {
  .hero-section::before {
    width: 300px;
    height: 260px;
    top: auto;
    bottom: 0;
    right: 0;
    transform: none;
    opacity: 0.3;
  }

  .hero-section::after {
    width: 250px;
    height: 200px;
    top: 10px;
    right: 0;
    transform: none;
    opacity: 0.3;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 26px;
  }

  .btn-primary {
    width: 120px;
    height: 42px;
    font-size: 14px;
  }
    /* servoces */

   .services-section {
    padding: 40px 15px;
    background-size: 500px 400px;
    background-position: center top;
    margin-top: 0;
  }

  .services-section h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .service-card {
    padding: 25px 12px 20px;
    margin-bottom: 20px;
  }

  .service-card h5 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 14px;
    line-height: 22px;
  }

  /* modal */
    .modules-section::after {
    width: 280px;
    background-position: center bottom;
    background-size: contain;
    opacity: 0.25;
  }

  .section-title {
    font-size: 22px;
    text-align: center;
  }

  .section-title-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .section-title-wrapper::before,
  .section-title-wrapper::after {
    display: none;
  }

  .module-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .module-icon {
    margin-bottom: 10px;
  }

  .module-content h6 {
    font-size: 15px;
  }

  .module-content p {
    font-size: 13px;
  }
   .left-section {
    height: 300px;
    background-position: center top;
  }

  .main-title {
    font-size: 1.8rem;
    line-height: 1.1;
    letter-spacing: 1px;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
  }

  .feature-number {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .feature-content h4 {
    font-size: 16px;
  }

  .feature-content p {
    font-size: 14px;
  }
    .footer-content {
    padding: 40px 15px 30px;
  }

  .footer-container::before {
    width: 100%;
    height: 200px;
    background-position: top center;
    opacity: 0.3;
  }

  .row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .col-sm-6 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding-left: 25px;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-section {
    text-align: left;
  }

  .footer-section h5 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-section ul li a {
    font-size: 13px;
  }

  .subscribe-section {
    margin-top: 20px;
    padding: 20px;
  }

  .email-input {
    font-size: 14px;
  }

  .subscribe-btn {
    font-size: 13px;
    padding: 7px 15px;
  }

  .footer-bottom .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo,
  .footer-links,
  .social-icons {
    justify-content: center !important;
    margin-top: 10px;
  }

  .footer-links {
    gap: 8px;
  }
}









