 body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #fefcf9;
    }
.hero-section {
      background: url('images/8.jpeg') no-repeat center center/cover;
      height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }

    .hero-overlay {
      background: rgba(0, 0, 0, 0.6);
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
    }

    .hero-content h4 {
      color: #04195B;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .hero-content h1 {
      font-size: 2.8rem;
      font-weight: bold;
      margin-bottom: 25px;
    }

    .btn-custom {
      background-color: #fff;
      color: #04195B;
      border: none;
      padding: 10px 25px;
      font-weight: 600;
      font-size: 1rem;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .btn-custom:hover {
      background-color: #04195B;
      color: #fff;
    }

    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 1.9rem;
      }

      .hero-content h4 {
        font-size: 1.1rem;
      }

      .btn-custom {
        font-size: 0.9rem;
        padding: 8px 20px;
      }
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    .row {
      display: flex;
      flex-wrap: wrap;
      margin-right: -15px;
      margin-left: -15px;
    }
    .col-md-5, .col-md-7 {
      position: relative;
      width: 100%;
      padding-right: 15px;
      padding-left: 15px;
    }
    @media (min-width: 768px) {
      .col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
      }
      .col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
      }
    }
    h1, h2, h3, h4, h5, h6 {
      margin-top: 0;
      margin-bottom: 10px;
}
   
    .btn-started {
      background-color: #5f90a3;
      color: #fff;
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 600;
      transition: all 0.3s ease;
      border: none;
      position: relative;
      overflow: hidden;
    }

    .btn-started::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 0;
      height: 0;
      background: rgba(255,255,255,0.2);
      transform: translate(-50%, -50%);
      border-radius: 50%;
      transition: width 0.4s ease, height 0.4s ease;
    }

    .btn-started:hover::after {
      width: 200%;
      height: 500%;
    }

    .btn-started:hover {
      transform: scale(1.05);
    }

    .btn-play {
      background-color: transparent;
      border: 2px solid #ddd;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      font-size: 18px;
      margin-left: 15px;
      color: #111;
      transition: all 0.3s ease;
    }

    .btn-play:hover {
      background-color: #111;
      color: #fff;
      transform: scale(1.1);
    }

    .hero-image {
      position: relative;
      z-index: 1;
    }

    .hero-image img {
      max-width: 40%;
      border-radius: 10px;
      animation: floatImage 5s ease-in-out infinite;
    }

    .floating-card {
      position: absolute;
      top: 50px;
      right: 20px;
      background: #fff;
      padding: 15px;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      max-width: 240px;
      z-index: 2;
      animation: floatCard 4s ease-in-out infinite;
    }

    @keyframes floatImage {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    @keyframes floatCard {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    @keyframes slideFade {
      from { opacity: 0; transform: translateY(-15px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes bounceIn {
      0% { transform: scale(0.8); opacity: 0; }
      60% { transform: scale(1.05); opacity: 1; }
      100% { transform: scale(1); }
    }

    @media (max-width: 767px) {
      .hero-title {
        font-size: 34px;
      }

      .floating-card {
        position: relative;
        top: 20px;
        right: auto;
        margin-top: 20px;
      }

      .btn-play {
        margin-top: 15px;
      }
    }
    /* 2 */
    .badge-custom {
      background: #04195B;
      color: #ffffff;
      font-weight: 600;
      padding: 6px 14px;
      font-size: 13px;
      border-radius: 20px;
    }

    .icon-box {
      background: #04195B;
      padding: 12px 16px;
      border-radius: 10px;
      margin-bottom: 15px;
      transition: 0.3s;
    }

    .icon-box:hover {
      background: #004560;
      transform: translateY(-3px);
    }

    .insight-box {
      background: #04195B;
      color: #fff;
      border-radius: 12px;
      padding: 40px 30px;
    }

    .insight-box h5 {
      color: #fff;
      font-weight: bold;
    }

    .insight-box p {
      color: #cbd5c0;
    }

    .stats {
      font-size: 26px;
      font-weight: bold;
    }

    .services-box {
      background: #f9f9f9;
      border-radius: 10px;
      padding: 15px;
    }

    .services-box i {
      color: #5f90a3;
      margin-right: 10px;
    }

    .section-title {
      font-weight: 700;
      font-size: 28px;
    }

    .more-btn {
      border-radius: 40px;
      padding: 10px 24px;
      font-weight: 600;
    }

    @media(max-width: 767px) {
      .stats { font-size: 22px; }
    }
    .bg1 {
      /* background: url('images/bg1.jpg') no-repeat center center; */

      background-color: #f9f9f9;
      background-size: cover;
      padding: 80px 0;
    }
    /* 3 */
     .testimonial-section {
      background-color: #04195B;
      color: white;
      padding: 80px 0;
      position: relative;
    }

    .testimonial-card {
      max-width: 700px;
      margin: auto;
      text-align: center;
    }

    .testimonial-card img {
      border-radius: 50%;
      width: 120px;
      height: 120px;
      object-fit: cover;
    }

    .testimonial-stars i {
      color: #ffc107;
    }

    .floating-card {
      position: absolute;
      background: #fff;
      padding: 10px 20px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      font-size: 14px;
    }

    .floating-left {
      bottom: 50px;
      left: 10%;
    }

    .floating-right {
      top: 40px;
      right: 15%;
    }

    .section-title {
      font-size: 28px;
      font-weight: 700;
      color: #111;
    }

    .badge-custom {
      background: #04195B;
      font-size: 12px;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
      display: inline-block;
    }

    .faq-image {
      border-radius: 12px;
      overflow: hidden;
    }

    .accordion-button:not(.collapsed) {
      color: #143c2b;
      background-color: #ecfdf5;
    }

    @media(max-width: 768px) {
      .floating-card {
        display: none;
      }
    }
    .features-section {
      padding: 80px 0;
      position: relative;
      background: #fcfbf8;
    }

    .badge-custom {
      background: #04195B;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 10px;
    }

    .section-title {
      font-size: 36px;
      font-weight: 700;
      color: #000000;
    }

    .feature-box {
      background: #fff;
      padding: 40px 30px;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
      transition: all 0.3s ease;
      text-align: center;
    }

    .feature-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
    }

    .feature-icon {
      font-size: 40px;
      color: #5f90a3;
      margin-bottom: 20px;
    }

    .feature-title {
      font-size: 20px;
      font-weight: 600;
      color: #0f321e;
      margin-bottom: 10px;
    }

    .feature-link {
      font-weight: 500;
      color: #0f321e;
      font-size: 14px;
      display: inline-block;
      transition: color 0.3s;
    }

    .feature-link:hover {
      color: #88c000;
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 28px;
        text-align: center;
      }
    }
    @media (max-width: 768px) {
  .hide {
    display: none;
  }
}
/* table */
 

    .table-custom {
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      border-radius: 10px;
      overflow: hidden;
    }

    .table th {
      background-color: #04195B;
      color: white;
      text-align: center;
    }

    .table td {
      text-align: center;
    }

    @media (max-width: 767px) {
      .table-custom {
        margin-bottom: 20px;
      }
    }
