    .hero {
            min-height: 100%;
            background:
                linear-gradient(rgba(15, 23, 42, 0.8),
                    rgba(15, 23, 42, 0.8)),
                url(../images/hero-bg-image.jpg) center/cover;
            display: flex;
            align-items: center;
            color: white; 
        }

        .hero h1 {
            font-size: 65px;
            font-weight: 800;
            line-height: 1.2;
        }

        .hero p {
            font-size: 18px;
            margin-top: 20px;
            color: #e5e7eb;
        }

             .trust-badge {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 12px 18px;
            backdrop-filter: blur(10px);
            font-size: 14px;
        }

        .img-hero-land{
            height: 450px;
            width: 100%;
            object-fit: cover;
        }


        

        .btn-outline-custom {
            border: 2px solid #fff;
            color: #fff; 
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-outline-custom:hover {
            background: #fff;
            color: #111827;
        }


       .feature-card {
    position: relative;
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    overflow: hidden;
    z-index: 1;
    height: 100%;
    transition: all 0.45s ease;
    border: 1px solid rgba(195, 188, 188, 0.4);
    backdrop-filter: blur(10px);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.6);
}

/* Top Gradient Border */
/* .feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--c1), var(--c2));
} */

/* Background Glow */
/* .feature-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(48, 31, 4, 0.08);
    border-radius: 50%;
    top: -70px;
    right: -70px;
    z-index: -1;
    transition: 0.5s ease;
} */

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow:
        0 25px 50px rgba(0,0,0,0.12),
        0 10px 20px rgba(50, 41, 26, 0.12);
}

.feature-card:hover::after {
    transform: scale(1.2);
}

/* Icon Box */
.feature-icon {
    width: 85px;
    height: 85px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    margin-bottom: 28px;
    box-shadow: 0 10px 25px rgba(39, 26, 3, 0.25);
    position: relative;
}

.feature-icon::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 18px;
}

.feature-icon i {
    font-size: 38px;
    color: #fff;
}

/* Heading */
.feature-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0f172a;
}

/* Paragraph */
.feature-card p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 15px;
}

/* Hover Arrow */
.feature-arrow {
    margin-top: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--c1);
    transition: 0.3s ease;
}

.feature-arrow i {
    font-size: 18px;
    transition: 0.3s ease;
}

.feature-card:hover .feature-arrow i {
    transform: translateX(5px);
}


 .service-box {
        position: relative;
        padding: 20px;
        border-radius: 30px;
        overflow: hidden;
        height: 100%;
        background:
            linear-gradient(145deg,
                rgba(15, 23, 42, 1),
                rgba(30, 41, 59, 1));

        border: 1px solid rgba(255,255,255,0.08);

        transition: all 0.45s ease;

        box-shadow:
            0 15px 35px rgba(0,0,0,0.18);
    }

    /* Glow Effect */
    .service-box::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        background: rgba(245, 158, 11, 0.08);
        border-radius: 50%;
        top: -90px;
        right: -90px;
        transition: 0.5s ease;
    }

    .service-box:hover::before {
        transform: scale(1.2);
    }

    .service-box:hover {
        transform: translateY(-12px);
        border-color: rgba(245, 158, 11, 0.35);

        box-shadow:
            0 25px 50px rgba(0,0,0,0.25),
            0 10px 30px rgba(245, 158, 11, 0.12);
    }

    .service-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 35px;
    }

    .service-icon {
        width: 85px;
        height: 85px;
        border-radius: 24px;
        background:
            linear-gradient(135deg,
                #f59e0b,
                #f97316);

        display: flex;
        align-items: center;
        justify-content: center;

        position: relative;

        box-shadow:
            0 12px 30px rgba(245, 158, 11, 0.35);
    }

    .service-icon::before {
        content: "";
        position: absolute;
        inset: 8px;
        border-radius: 18px;
        border: 1px solid rgba(255,255,255,0.25);
    }

    .service-icon i {
        font-size: 36px;
        color: #fff;
    }

    .service-number {
        font-size: 60px;
        font-weight: 800;
        line-height: 1;
        color: rgba(255,255,255,0.06);
    }

    .service-content h5 {
        color: #fff;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .service-content p {
        color: #cbd5e1;
        line-height: 1.9;
        margin-bottom: 28px;
        font-size: 15px;
    }

    

    .service-btn i {
        transition: 0.3s ease;
    }

    .service-box:hover .service-btn i {
        transform: translateX(5px);
    }

    
 .feature-card {
    position: relative;
    padding: 20px 25px;
    border-radius: 15px;
    background: linear-gradient(145deg, #ffffff, #f7f7f7);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: center;
    transition: 0.4s ease;
    height: 100%;
    z-index: 1;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    border-radius: 50%;
    opacity: 0.08;
    transition: 0.4s;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.18);
}

.feature-card:hover::before {
    transform: scale(1.2);
}

.feature-number {
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: 2px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius:13px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.feature-icon i {
    color: #fff;
    font-size: 25px;
}

.feature-card h5 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #111827;
}

@media(max-width:576px){
    .feature-card {
        padding: 30px 15px;
    }

    .feature-card h5 {
        font-size: 18px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 24px;
    }
}


/* =============== faq Page ======================== */
    /* .faq{
      background-color: var(--c5);
    } */
    .faq .accordion-item{
      margin-bottom: 1rem !important;
    }
    .faq .accordion-button{
      background-color: #fff;
      /* box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px; */
      box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
      /* height: 0px; */
    }
    
    .accordion-button:focus{
   box-shadow:unset !important;
    }
    .accordion-button:not(.collapsed) {
      color: #fff !important;
      background-color: var(--c1) !important;
      /* box-shadow: unset !important; */
  }
  .accordion-button::after {
     content: '+'!important;
     font-size: 22px;
     font-weight: bold;
     color: var(--c1);
     background-image: unset !important;
     /* background-color: #fff; */
     font-display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
    transition: all 0.5s;
    line-height: inherit;
  }
  .accordion-button:not(.collapsed)::after {
   content: '—' !important;
   font-size: 18px;
   color: #fff;
   background-image: unset !important;
   font-display: flex;
     align-items: center;
     justify-content: center;
     line-height: inherit;
  }
  .faq-acc button{
    display: flex !important;
    align-items: center;
  }

          .cta-section {
            background:
                linear-gradient(rgba(15,23,42,0.85),
                    rgba(15,23,42,0.85)),
                url(../images/hero-bg-image.jpg) center/cover;
            color: white;
        }



    .benefit-badge {
        background: rgba(37, 99, 235, 0.1);
        color: #2563eb;
        padding: 10px 24px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .benefit-title {
        font-size: 32px;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .benefit-subtitle {
        color: #64748b;
        line-height: 1.9;
        font-size: 17px;
    }

    .benefit-card {
        position: relative;
        padding: 40px 32px;
        border-radius: 28px;
        overflow: hidden;
        height: 100%;
        background: #fff;

        transition: all 0.45s ease;

        border: 1px solid rgba(15,23,42,0.06);

        box-shadow:
            0 10px 40px rgba(0,0,0,0.05);
    }

    .benefit-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(135deg,
                rgba(37, 99, 235, 0.03),
                transparent);

        opacity: 0;
        transition: 0.4s ease;
    }

    .benefit-card:hover::before {
        opacity: 1;
    }

    .benefit-card:hover {
        transform: translateY(-12px);

        border-color: rgba(37, 99, 235, 0.15);

        box-shadow:
            0 25px 50px rgba(0,0,0,0.08);
    }

    .benefit-icon {
        width: 90px;
        height: 90px;
        border-radius: 24px;

        background:
            linear-gradient(135deg,
                #2563eb,
                #1d4ed8);

        display: flex;
        align-items: center;
        justify-content: center;

        margin-bottom: 28px;

        box-shadow:
            0 12px 30px rgba(37, 99, 235, 0.25);

        position: relative;
    }

    .benefit-icon::before {
        content: "";
        position: absolute;
        inset: 8px;
        border-radius: 18px;
        border: 1px solid rgba(255,255,255,0.25);
    }

    .benefit-icon i {
        color: #fff;
        font-size: 38px;
    }

    .benefit-card h4 {
        font-size: 26px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 18px;
    }

    .benefit-card p {
        color: #64748b;
        line-height: 1.9;
        font-size: 15px;
        margin-bottom: 0;
    }

    .benefit-number {
        position: absolute;
        right: 25px;
        bottom: 15px;

        font-size: 70px;
        font-weight: 800;

        color: rgba(37, 99, 235, 0.05);

        line-height: 1;
    }

    @media(max-width:991px) {

        .benefit-title {
            font-size: 28px;
        }
    }

    @media(max-width:576px) {

        .benefit-title {
            font-size: 20px;
        }

        .benefit-card {
            padding: 32px 25px;
        }

        .benefit-icon {
            width: 75px;
            height: 75px;
        }

        .benefit-icon i {
            font-size: 30px;
        }

        .benefit-card h4 {
            font-size: 22px;
        }
    }


      .courses-section {
        background:
            radial-gradient(circle at top right,
                rgba(245, 158, 11, 0.08),
                transparent 30%),
            #f8fafc;
    }

    .course-badge {
        background: rgba(245, 158, 11, 0.12);
        color: #f59e0b;
        padding: 10px 22px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .course-title {
        font-size: 32px;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 18px;
    }

    .course-subtitle {
        max-width: 760px;
        color: #64748b;
        line-height: 1.9;
        font-size: 17px;
    }

    .course-card {
        background: #fff;
        border-radius: 30px;
        padding: 38px 32px;
        height: 100%;
        position: relative;
        overflow: hidden;

        border: 1px solid rgba(15,23,42,0.06);

        transition: all 0.45s ease;

        box-shadow:
            0 10px 40px rgba(0,0,0,0.05);
    }

    .course-card:hover {
        transform: translateY(-12px);

        box-shadow:
            0 25px 60px rgba(0,0,0,0.08);
    }

    .course-icon {
        width: 85px;
        height: 85px;
        border-radius: 24px;

        background:
            linear-gradient(135deg,
                #f59e0b,
                #f97316);

        display: flex;
        align-items: center;
        justify-content: center;

        margin-bottom: 28px;

        box-shadow:
            0 12px 30px rgba(245,158,11,0.25);
    }

    .course-icon i {
        font-size: 36px;
        color: #fff;
    }

    .course-card h4 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 18px;
        color: #0f172a;
    }

    .course-card p {
        color: #64748b;
        line-height: 1.9;
        margin-bottom: 0;
        font-size: 15px;
    }

    @media(max-width:991px) {
        .course-title {
            font-size:28px;
        }
    }

    @media(max-width:576px) {

        .course-title {
            font-size: 20px;
        }

        .course-card {
            padding: 30px 24px;
        }

        .course-icon {
            width: 75px;
            height: 75px;
        }

        .course-icon i {
            font-size: 30px;
        }

        .course-card h4 {
            font-size: 22px;
        }
    }

    .section-title{
        font-weight: 800;
    }
    /* -------------------------------- responsive ---------------------   */

        @media screen and (max-width:660px) {
                .hero h1 {
            font-size: 40px;
            font-weight: 800;
            line-height: 1.2;
        }

          .service-icon {
            width: 75px;
            height: 75px;
        }

        .service-icon i {
            font-size: 30px;
        }

        .service-number {
            font-size: 45px;
        }

        .service-content h5 {
            font-size: 24px;
        } 
        }