body {
    font-family: 'Inter', sans-serif;
}
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
#scroll-inquiry{
    scroll-margin-top: 60px;
}
img {
    max-width: 100%;
    height: auto;
}
.hero-section {
    position: relative;
    background: url('../image/bg-banner.jpg')
        center / cover no-repeat;
    padding: 50px 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 3rem;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.hero-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.card {
    border-radius: 18px;
}

.card-body {
    padding: 32px;
}

.card h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #111827;
}

.form-control {
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.95rem;
    border: 1px solid #e5e7eb;
}

.form-control:focus {
    border-color: #ff8c1a;
    box-shadow: 0 0 0 3px rgba(255,140,26,0.2);
}

.form-control::placeholder {
    color: #9ca3af;
}
.hero-cta .btn {
    padding: 14px 26px;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* PRIMARY CTA */
.hero-cta .btn-primary {
    background: linear-gradient(135deg, #ff8c1a, #ff6a00);
    border: none;
    color: #fff;
    box-shadow: 0 8px 30px rgba(255,140,26,0.35);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255,140,26,0.55);
}

/* SECONDARY CTA */
.hero-cta .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    background: transparent;
}

.hero-cta .btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
}

/* TRUST TEXT */
.hero-trust {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}
.btn-warning {
    background: linear-gradient(135deg, #ff8c1a, #ff6a00);
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-family: 'Poppins', sans-serif;
}

.btn-warning:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(255,140,26,0.4);
}
.hero-badge {
    background: rgba(255,140,26,0.18);
    color: #ffb366;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-block;
}
.audience-section {
    background: #f9fafb;
}

.section-badge {
    display: inline-block;
    background: rgba(255,140,26,0.15);
    color: #ff8c1a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.section-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #0f172a;
}

.section-heading span {
    color: #ff8c1a;
}

.section-subtext {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1rem;
    color: #475569;
}

/* AUDIENCE CARD */
.audience-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.audience-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff8c1a, #ff6a00);
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.audience-card h6 {
    font-weight: 700;
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 6px;
}

.audience-card p {
    font-size: 0.9rem;
    color: #475569;
    margin: 0;
}
.audience-icon i {
    font-size: 26px;
    line-height: 1;
}
.learn-section {
    background: #ffffff;
}

/* Card */
.learn-card {
    background: #f9fafb;
    border-radius: 18px;
    padding: 28px 22px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eef2f7;
}

.learn-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* Icon */
.learn-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff8c1a, #ff6a00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

/* Text */
.learn-card h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.learn-card p {
    font-size: 0.9rem;
    color: #475569;
    margin: 0;
}
.premium-content {
    background: linear-gradient(180deg, #ffffff, #f9fafb);
    border-radius: 20px;
    padding: 34px 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.program-summary-card {
    background: #f9fafb;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.program-summary-card .price {
    font-weight: 700;
}

.program-summary-card del {
    color: #9ca3af;
    margin-right: 8px;
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.program-features span {
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
/* HEADING */
.premium-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

/* INTRO TEXT */
.module-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 18px;
}

/* POINTS */
.module-points {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.module-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #1f2937;
    margin-bottom: 10px;
}

.module-points i {
    color: #ff8c1a;
    margin-top: 4px;
}

/* HIGHLIGHT BAR */
.module-highlight {
    background: rgba(255,140,26,0.12);
    border-left: 4px solid #ff8c1a;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #92400e;
}
.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-primary-light { background-color: rgba(13, 110, 253, 0.1); }
.bg-success-light { background-color: rgba(25, 135, 84, 0.1); }
.bg-warning-light { background-color: rgba(255, 193, 7, 0.1); }
.bg-info-light { background-color: rgba(13, 202, 240, 0.1); }
.bg-danger-light { background-color: rgba(220, 53, 69, 0.1); }

.info-card {
    border: 1px solid #eee;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.bg-success-light {
    background-color: rgba(25, 135, 84, 0.15);
    border: 1px solid rgba(25, 135, 84, 0.2);
}
.testinomials-section {
    background: #f8fafc;
}

/* CARD */
.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #eef2f7;
    transition: all 0.35s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    border-color: transparent;
}

/* PROFILE */
.testimonial-card img {
    border: 3px solid #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* NAME */
.testimonial-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}

/* META */
.testimonial-card .text-muted {
    font-size: 0.85rem;
}

/* STAR RATING */
.testimonial-card .rating i {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-right: 2px;
}

/* REVIEW TEXT */
.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #334155;
}

/* FOOTER */
.testimonial-card .border-top {
    border-color: #eef2f7 !important;
}

/* BADGES (Unified Look) */
.badge {
    font-weight: 600;
    font-size: 0.75rem;
    padding: 6px 10px;
    border-radius: 20px;
}

/* CUSTOM COLORS */
.bg-purple.bg-opacity-10 {
    background: rgba(111, 66, 193, 0.12);
    color: #6f42c1;
}

.bg-pink.bg-opacity-10 {
    background: rgba(232, 62, 140, 0.12);
    color: #e83e8c;
}

/* SECTION HEADER */
.section-badge {
    background: rgba(255,140,26,0.15);
    color: #ff8c1a;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
}

.contact-section .section-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #0f172a;
}

.section-subtext {
    font-size: 1.05rem;
    color: #475569;
    max-width: 620px;
    margin: 0 auto;
}
.testimonials-swiper {
    padding-bottom: 60px;
}

/* SLIDE HEIGHT FIX */
.swiper-slide {
    height: auto;
}

/* NAV BUTTONS */
.swiper-button-next,
.swiper-button-prev {
    color: #ff8c1a;
}

/* PAGINATION */
.swiper-pagination-bullet {
    background: #cbd5e1;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #ff8c1a;
}

/* CARD (reuse your polished CSS) */
.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* STARS */
.rating i {
    color: #fbbf24;
    font-size: 0.85rem;
}

/* GROUP */
/* GROUP TITLE */
.tool-group-title {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

/* LOGO */
.tool-logo {
    height: auto;
    max-width: 100%;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.tool-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

/* CARD */
.trainer-authority-section {
    background: #ffffff;
}

/* LEFT SIDE */
.authority-left {
    padding-right: 20px;
}

.authority-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin-top: 12px;
}

/* STATS */
.authority-stat {
    background: #fdfeff;
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.authority-stat h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff8c1a;
    margin-bottom: 6px;
}

.authority-stat p {
    font-size: 0.9rem;
    color: #475569;
    margin: 0;
}

/* RIGHT CARD */
.why-card {
    position: relative;
    height: 100%;
    border-radius: 24px;
    background: url('https://images.unsplash.com/photo-1556761175-4b46a572b786')
        center / cover no-repeat;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

/* OVERLAY */
.why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15,23,42,0.85),
        rgba(15,23,42,0.95)
    );
}

/* CONTENT */
.why-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: #ffffff;
}

.why-content h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
}

/* BULLETS */
.why-points {
    list-style: none;
    padding: 0;
    margin: 0 0 0px;
}

.why-points li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.why-points i {
    color: #ff8c1a;
    margin-top: 4px;
}
.faq-section {
    background: #ffffff;
}

/* ACCORDION */
.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 14px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.custom-accordion .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: #0f172a;
    background: #f9fafb;
    padding: 18px 20px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: #fff7ed;
    color: #92400e;
    box-shadow: none;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

.custom-accordion .accordion-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #334155;
    background: #ffffff;
    padding: 18px 20px;
}
.contact-section {
    background: #f9fafb;
}

/* LEFT INFO */
.contact-info {
    background: #ffffff;
    border-radius: 22px;
    padding: 36px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-text {
    font-size: 1rem;
    color: #475569;
    margin-top: 12px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.contact-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: #1f2937;
}

.contact-list i {
    font-size: 18px;
    color: #ff8c1a;
    margin-top: 4px;
}

/* RIGHT FORM */
.contact-form-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 36px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-form-card h4 {
    font-weight: 700;
    color: #0f172a;
}

/* INPUTS */
.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.95rem;
}
.footer-section {
    background: #0f172a;
    color: #cbd5e1;
    font-size: 0.9rem;
}
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -8px 25px rgba(0,0,0,0.15);
}

/* BUTTON BASE */
.mobile-sticky-cta .cta-btn {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* WHATSAPP */
.whatsapp-btn {
    background: #25D366;
}

/* CALL */
.call-btn {
    background: #0d6efd;
}

/* ICON */
.mobile-sticky-cta i {
    font-size: 16px;
}
.mobile-sticky-cta {
    transition: transform 0.3s ease;
}
.linkedin-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #0a66c2;
    color: #ffffff;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.linkedin-inline:hover {
    background: #004182;
    color: #ffffff;
}

.associate-trainers h5 {
    font-weight: 700;
    color: #1c1c1c;
    position: relative;
    padding-left: 14px;
}

.associate-trainers h5::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 4px;
    height: 20px;
    background: #f0ad4e;
    border-radius: 4px;
}

/* Trainer Card */
.trainer-mini-card {
    height: 100%;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    border-radius: 12px;
    padding: 16px 18px;
    border: 1px solid #ececec;
    transition: all 0.3s ease;
}

.trainer-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    border-color: #f0ad4e;
}

/* Name */
.trainer-mini-card h6 {
    font-weight: 700;
    margin-bottom: 4px;
    color: #111;
}

/* Role */
.trainer-mini-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.4;
}

/* Experience */
.trainer-mini-card small {
    font-size: 12px;
    color: #777;
    display: inline-block;
}
.hod-label {
    display: inline-block;
    margin-left: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ff8c1a;
}

/* HOD CARD – SUBTLE */
.hod-card {
    border-left: 4px solid #ff8c1a;
}
.why-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
}
/* COMMON BUTTON STYLE */
.why-cta .cta-btn {
    padding: 10px 20px;         
    font-weight: 600;
    border-radius: 10px;
    min-width: auto;            
}
.btn-whatsapp {
    background: #25D366;  
    color: #ffffff;
    font-weight: 600;
    border-radius: 12px;
    border: none;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    color: #ffffff;
}
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.4rem;
        line-height: 1.25;
    }

    .hero-section p {
        font-size: 0.95rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust {
        font-size: 0.85rem;
    }

    #scroll-banner-inquiry {
        scroll-margin-top: 40px;
    }
}
@media (max-width: 767px) {
    body {
        padding-bottom: 46px;
    }
    .hero-section {
        padding: 40px 0;
        text-align: center;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .hero-section h1 {
        font-size: 1.85rem;
        line-height: 1.3;
    }

    .hero-section p {
        font-size: 0.9rem;
    }

    .hero-cta a {
        width: 100%;
        padding: 14px;
        font-size: 0.95rem;
    }

    .hero-trust {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    /* FORM CARD */
    .card {
        border-radius: 16px;
    }

    .card-body {
        padding: 20px;
    }

    .card h4 {
        font-size: 1.15rem;
    }

    .form-control {
        font-size: 0.9rem;
        padding: 12px 14px;
    }

    .btn-warning {
        font-size: 0.95rem;
        padding: 12px;
    }
    .associate-trainers {
        padding: 16px;
    }
    .why-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .why-cta .cta-btn {
        width: 100%;
        padding: 14px 18px;      
        font-size: 1rem;
        text-align: center;
    }
    .head-btn-cta a {
        width: 42px;
        height: 42px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .head-btn-cta a i {
        font-size: 16px;
        margin: 0;
    }
}
@media(max-width:467px){
    .why-content{
        padding: 22px;
    }
}