:root {
    --primary-yellow: #f18917;
    --light-grey: #f7f8fd;
    --dark-grey: #333333;
    --text-color: #222222;
    --white_color: #FFFFFF;
    --featured_black: #000000;
    --shadow_effect: 0 2px 10px rgba(0, 0, 0, 0.05);
    --primary-orange: #f18917;
    --primary-dark: #d97514;
    --primary-light: #ff9d3d;
    --gradient-primary: linear-gradient(135deg, #f18917 0%, #d97514 100%);
    --gradient-secondary: linear-gradient(135deg, #ff9d3d 0%, #f18917 100%);
    --gradient-hero: linear-gradient(135deg, #f18917 0%, #ff6b35 50%, #d97514 100%);
}

body {
    background-color: var(--light-grey);
    color: var(--text-color);
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}


.phone_number {
    color: black;
    text-decoration: none;
}

.beingg_social_logo_photobox {
    height: 2.5em;
    width: auto;
}


.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #555;
}

.contact-info i {
    color: var(--primary-yellow);
    margin-top: 3px;
}

.phone_number {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.phone_number:hover {
    color: var(--primary-yellow);
}

/* Copyright Section */
.copyright-section {
    background-color: #eee;
    padding: 10px 0;
    border-top: 1px solid #ddd;
}

.copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.copyright-section p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #555;
}

.legal-links {
    display: flex;
    gap: 15px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--primary-yellow);
}

/* ========== MODERN HERO SECTION STYLES ========== */
.hero_section_new {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #f18917 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero_bg_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.animated_shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape1 {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: #f18917;
    border-radius: 50%;
    animation-delay: 0s;
}

.shape2 {
    top: 60%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: #ff6b35;
    border-radius: 20px;
    animation-delay: 2s;
}

.shape3 {
    bottom: 20%;
    left: 20%;
    width: 60px;
    height: 60px;
    background: #d97514;
    transform: rotate(45deg);
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero_container_new {
    position: relative;
    z-index: 2;
}

.hero_content_new {
    color: white;
}

.hero_badge {
    display: inline-block;
    background: rgba(241, 137, 23, 0.2);
    color: #f18917;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(241, 137, 23, 0.3);
}

.hero_title_new {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text_gradient {
    background: linear-gradient(135deg, #f18917, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero_subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    min-height: 60px;
    color: #ffdd59;
    font-weight: 600;
}

.hero_description_new {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.stats_container {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.stat_item {
    flex: 1;
}

.stat_number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f18917;
    margin-bottom: 5px;
}

.stat_label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.hero_cta_buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn_primary_new {
    background: linear-gradient(135deg, #f18917, #d97514);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(241, 137, 23, 0.4);
}

.btn_primary_new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(241, 137, 23, 0.6);
}

.btn_secondary_new {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn_secondary_new:hover {
    background: white;
    color: #1e3c72;
    transform: translateY(-3px);
}

/* ========== HERO FORM STYLES ========== */
.hero_form_container {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.form_title {
    color: #1e3c72;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.form_subtitle {
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}

.modern_input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    background: white;
}

.modern_input:focus {
    outline: none;
    border-color: #f18917;
    box-shadow: 0 0 0 3px rgba(241, 137, 23, 0.1);
}

.submit_btn_new {
    width: 100%;
    background: linear-gradient(135deg, #f18917, #d97514);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit_btn_new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241, 137, 23, 0.3);
}

/* ========== SECTION STYLES ========== */

.section_badge {
    display: inline-block;
    background: rgba(241, 137, 23, 0.1);
    color: #f18917;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section_subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* ========== WHY CHOOSE SECTION ========== */
.why_choose_section {
    background: white;
    padding: 80px 0;
}

/* ========== WHO CAN JOIN SECTION ========== */

.who_can_join_section {
    background: #f8f9fa;
    padding: 80px 0;
}


.benefits_list {
    list-style: none;
    padding: 0;
}

.benefits_list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #333;
}

.benefits_list i {
    color: #f18917;
    font-size: 1.2rem;
}


/* ========== MISSION SECTION ========== */

.mission_section {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.mission_quote {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}


/* ========== CURRICULUM SECTION ========== */
.curriculum_section {
    background: white;
    padding: 80px 0;
}


/* ========== WHY BEINGG SOCIAL SECTION ========== */
.why_beingg_social_section {
    background: #f8f9fa;
    padding: 80px 0;
}

.why_beingg_social_section .benefits_list i {
    color: #ffc107;
}

/* ========== REVIEWS SECTION ========== */

.reviews_section {
    background: white;
    padding: 80px 0;
}

/* ========== CONTACT INFO SECTION ========== */

.contact_info_section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 80px 0;
}

.contact_info_card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.contact_title {
    font-size: 2.2rem;
    color: #1e3c72;
    margin-bottom: 10px;
}

.institute_name {
    font-size: 1.5rem;
    color: #f18917;
    margin-bottom: 40px;
}

.contact_item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact_icon {
    color: #f18917;
    font-size: 1.3rem;
}

.contact_text {
    margin: 0;
    color: #666;
    text-align: center;
    max-width: 400px;
}

.contact_link {
    color: #f18917;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
}

.cta_buttons_contact {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn_primary_contact,
.btn_secondary_contact {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn_primary_contact {
    background: linear-gradient(135deg, #f18917, #d97514);
    color: white;
}

.btn_secondary_contact {
    background: transparent;
    color: #f18917;
    border: 2px solid #f18917;
}

.btn_primary_contact:hover,
.btn_secondary_contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(241, 137, 23, 0.3);
}

/* ========== VERDICT SECTION ========== */
.verdict_section {
    position: relative;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 80px 0;
    overflow: hidden;
}

.verdict_bg_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.verdict_animated_shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.verdict_shape {
    position: absolute;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.verdict_shape1 {
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: #f18917;
    border-radius: 50%;
}

.verdict_shape2 {
    bottom: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: #ff6b35;
    transform: rotate(45deg);
}

.verdict_shape3 {
    top: 50%;
    right: 30%;
    width: 60px;
    height: 60px;
    background: #d97514;
    border-radius: 20px;
}

.verdict_content {
    position: relative;
    z-index: 2;
    color: white;
}

.verdict_title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.verdict_highlight_box {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.verdict_icon {
    font-size: 3rem;
    color: #f18917;
    margin-bottom: 20px;
}

.verdict_text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

/* ========== FAQ SECTION ========== */
.faq_section_page {
    background: white;
    /* padding: 30px 0; */
}

.faq_group_title {
    color: #1e3c72;
    font-size: 1.5rem;
    margin: 30px 0;
    text-align: center;
}

.faq_container {
    max-width: 100%;
}

.faq_item {
    margin-bottom: 20px;
    border: 1px solid #e1e5e9;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq_question {
    width: 100%;
    padding: 20px;
    border: none;
    background: white;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.faq_question:hover {
    background: #f8f9fa;
}

.faq_question i {
    color: #f18917;
    transition: transform 0.3s ease;
}

.faq_item.active .faq_question i {
    transform: rotate(180deg);
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq_item.active .faq_answer {
    max-height: 300px;
}

.faq_answer p {
    padding: 0 20px 20px;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* ========== CTA SECTION ========== */
.cta_section_institutes {
    background: linear-gradient(135deg, #f18917, #d97514);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta_content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta_content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta_buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn_cta_primary,
.btn_cta_secondary {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn_cta_primary {
    background: white;
    color: #f18917;
}

.btn_cta_secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn_cta_primary:hover,
.btn_cta_secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1200px) {
    .hero_title_new {
        font-size: 3rem;
    }

    .stats_container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .hero_form_container {
        margin-top: 50px;
    }

    .section_title {
        font-size: 2rem;
    }

    .contact_info_card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero_title_new {
        font-size: 2.5rem;
    }

    .hero_subtitle {
        font-size: 1.2rem;
    }

    .hero_cta_buttons {
        flex-direction: column;
    }

    .btn_primary_new,
    .btn_secondary_new {
        width: 100%;
        text-align: center;
    }

    .stats_container {
        gap: 20px;
    }

    .stat_number {
        font-size: 2rem;
    }

    .cta_buttons,
    .cta_buttons_contact {
        flex-direction: column;
        align-items: center;
    }

    .btn_cta_primary,
    .btn_cta_secondary,
    .btn_primary_contact,
    .btn_secondary_contact {
        width: 80%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero_section_new {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .hero_title_new {
        font-size: 2rem;
    }

    .hero_form_container {
        padding: 20px;
    }

    .contact_info_card {
        padding: 20px;
    }

    .contact_item {
        flex-direction: column;
        text-align: center;
    }

    section {
        padding: 50px 0;
    }
}

/* Responsive Styles */
@media (min-width: 768px) {
    .copyright-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .copyright-section p {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
        padding: 0 40px;
    }

    .about-section {
        grid-column: span 1;
    }
}

.spacer_div,

.breadcrumbs_container {
    margin-top: 3em;
    padding: 1em 0 1em 1.3em;
}


.breadcrumbs_anchor {
    color: var(--dark-grey);
    text-decoration: none;
}

.updating_text {
    color: var(--primary-yellow);
    font-size: 1.5em;
    padding-bottom: 0em;
    border-bottom: 2px solid white;
    width: fit-content;
}


.download_brochure_btn {
    background: #ff6933;
    color: white;
    border: 1px solid transparent;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 300ms ease;
}

.download_brochure_btn:hover {
    background: white;
    color: var(--primary-yellow);
    border: 1px solid var(--primary-yellow);
}

.about_us_side_image {
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    box-shadow: var(--shadow_effect);
    animation: animate_callnow_btn 3s ease-in-out infinite;
}

@keyframes animate_callnow_btn {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.sub_heading {
    background: var(--primary-yellow);
    color: white;
    padding: 5px 8px;
    border-radius: 5px;
}

.about_us_title {
    font-size: 2em;
}

.about_us_side_details_title {
    color: var(--primary-yellow);
}

.points_ul,
.about_us_side_details_ul {
    padding-left: 2em;
    list-style-type: lower-roman;
}

.trainers_image {
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.trainers_image_box {
    height: 22em;
    width: 100%;
}

.trainers_details_contentbox {
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 0.5em 0;
    background: white;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
}

.trainers_image_container:hover .trainers_details_contentbox {
    opacity: 1;
    visibility: visible;
}

.containerization {
    background: white;
    padding: 1.5em;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq_section {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-image: url("/images/banner_image.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.running_counters_iconbox>i {
    background: var(--primary-yellow);
    color: white;
    padding: 1em;
    border-radius: 50%;
    font-size: 1.5em;
}

.running_counters_title {
    font-size: 2.5em;
}

.contact_us_side_details_description {
    text-decoration: none;
    color: black;
}

.contact_us_details_iconbox>i {
    background: var(--primary-yellow);
    color: white;
    padding: 0.5em;
    border-radius: 50%;
}


.adavanced_digital_marketing_institute_section,
.running_counters_section,
.reviews_section,
.hero_section {
    background: var(--primary-yellow);
}

.send_me_a_brochure_btn {
    background: white;
    color: var(--primary-yellow);
    border: 1px solid transparent;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 300ms ease;
}

.send_me_a_brochure_btn:hover {
    background: var(--primary-yellow);
    color: white;
    border: 1px solid white;
}

.about_us_side_details_li {
    color: white;
}

.tabs-container {
    margin-bottom: 30px;
}

.tabs-nav {
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

.trustedby_indian_businesses_title {
    font-size: 1em;
    color: var(--primary-yellow);
}

.trustedby_indian_businesses_title::before,
.trustedby_indian_businesses_title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 25%;
    height: 1px;
    background-color: var(--primary-yellow);
}

.trustedby_indian_businesses_title::before {
    left: 0;
}

.trustedby_indian_businesses_title::after {
    right: 0;
}

.about_us_side_details_description_box,
.about_us_side_image_box {
    position: sticky;
    top: 6em;
    scroll-behavior: smooth;
    will-change: transform;
}

.course_day_title {
    font-size: 1em;
    font-weight: 500 !important;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5em;
}

.hero_side_details_title {
    font-size: 3em;
}

/* =============================================== */
/* HOMEPAGE SPECIFIC STYLES - MERGED FROM homepage.css */
/* =============================================== */

/* Institute Card Specific Styles */
.institute_card {
    position: relative;
}

.institute_rank {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(241, 137, 23, 0.3);
}

.institute_rating {
    margin: 15px 0;
    text-align: center;
}

.institute_rating .stars {
    color: #FFD700;
    font-size: 18px;
    margin-right: 8px;
}

.institute_rating .rating_text {
    color: #666;
    font-size: 14px;
}

.institute_highlights {
    margin-top: 15px;
    text-align: center;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.highlight_badge {
    background: var(--gradient-secondary);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.featured_card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid var(--primary-orange);
    transform: scale(1.02);
}

.featured_card .module_icon {
    background: var(--gradient-primary);
}



/* Hero Section New Design */
.hero_section_new {
    /* min-height: 100vh; */
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero_bg_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,138.7C672,128,768,128,864,138.7C960,149,1056,171,1152,165.3C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.animated_shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape1 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape2 {
    width: 120px;
    height: 120px;
    border-radius: 38% 62% 63% 37% / 70% 33% 67% 30%;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape3 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    33% {
        transform: translateY(-30px) rotate(120deg);
        opacity: 0.5;
    }

    66% {
        transform: translateY(30px) rotate(240deg);
        opacity: 0.8;
    }
}

.hero_container_new {
    position: relative;
    z-index: 2;
}

.hero_content_new {
    color: white;
}

.hero_badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero_title_new {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.text_gradient {
    background: linear-gradient(90deg, #ffd700, #ffed4b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero_subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    min-height: 40px;
    color: #ffd700;
}

.hero_description_new {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.8;
}

.hero_stats {
    margin-bottom: 30px;
}

.stat_item {
    text-align: center;
}

.stat_item h3 {
    font-size: 2rem;
    margin: 0;
    color: #ffd700;
    font-weight: 700;
}

.stat_item span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero_cta_buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn_primary_new {
    background: white;
    color: var(--primary-orange);
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn_primary_new:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn_secondary_new {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn_secondary_new:hover {
    background: white;
    color: var(--primary-orange);
    transform: translateY(-3px);
}

/* Hero Form */
.hero_form_container {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero_form_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.form_title {
    color: #f18917;
    margin-bottom: 10px;
    font-weight: 700;
}

.form_subtitle {
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
}

.modern_input {
    background: #f8f9fa;
    border: 2px solid transparent;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.modern_input:focus {
    background: white;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(241, 137, 23, 0.1);
}

.submit_btn_new {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit_btn_new:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(241, 137, 23, 0.3);
}

/* Features Strip */
.features_strip {
    background: var(--primary-orange);
    padding: 30px 0;
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.features_wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.feature_item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    padding: 10px 20px;
}

.feature_item i {
    font-size: 2rem;
    color: #ffd700;
}

.feature_item span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Why Choose Section */
.why_choose_section {
    padding: 30px 0;
    background: #f8f9fa;
}


.section_badge {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section_title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section_subtitle {
    font-size: 1.1rem;
    color: #666;
}

.feature_card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.feature_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(241, 137, 23, 0.15);
    border-color: #ff6933;
}

.card_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #ff6933;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.feature_card h4 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature_card p {
    color: #666;
    line-height: 1.8;
}

.course_modules_section {
    padding: 80px 0;
    background: #fafafa;
}

.modules_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.module_card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #f18917;
    color: #333;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.module_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(241, 137, 23, 0.15);
    border-color: #f18917;
    background: linear-gradient(135deg, #fff5eb 0%, #ffede0 100%);
}

.module_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f18917 0%, #ff9d3d 100%);
}

.module_icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f18917 0%, #ff9d3d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(241, 137, 23, 0.3);
}

.module_card h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    color: #333;
    font-weight: 700;
}

.module_topics {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.module_topics li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.module_topics li:hover {
    color: #f18917;
}

.module_topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f18917;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Statistics Section */
.stats_section {
    padding: 80px 0;
    background: #ff6933;
    color: white;
}

.stat_box {
    text-align: center;
    padding: 20px;
}

.stat_box i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.stat_box h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat_box span {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials_section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials_slider {
    margin-top: 50px;
}

.testimonial_card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.stars {
    color: #ffd700;
    margin-bottom: 20px;
}

.testimonial_text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial_author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial_author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial_author h5 {
    margin: 0;
    color: var(--text-color);
}

.testimonial_author span {
    font-size: 0.9rem;
    color: #888;
}

/* CTA Section */
.cta_section {
    padding: 100px 0;
    background: var(--gradient-hero);
    color: white;
    text-align: center;
}

.cta_content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta_content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta_buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn_outline_white {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn_outline_white:hover {
    background: white;
    color: var(--primary-orange);
    transform: translateY(-3px);
}


/* Responsive Design */
@media (max-width: 992px) {
    .hero_title_new {
        font-size: 2.5rem;
    }

    .modules_grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero_section_new {
        padding: 50px 0 50px !important;
    }

    .hero_title_new {
        font-size: 2rem;
    }

    .hero_subtitle {
        font-size: 1.2rem;
    }

    .hero_form_container {
        margin-top: 40px;
        padding: 30px 20px;
    }

    .features_strip {
        margin-top: 0;
    }

    .feature_item {
        width: 50%;
        justify-content: center;
        padding: 10px;
    }

    .section_title {
        font-size: 2rem;
    }

    .stat_box h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero_cta_buttons {
        flex-direction: column;
    }

    .btn_primary_new,
    .btn_secondary_new {
        width: 100%;
    }

    .feature_item {
        width: 100%;
    }

    .modules_grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================== */
/* INSTITUTE LISTING STYLES - MERGED FROM institute-listing.css */
/* =============================================== */

/* Hero Section for Institutes Page */
.institutes_hero_section {
    background: linear-gradient(135deg, #f18917 0%, #ff6b35 50%, #d97514 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}


.institutes_hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,138.7C672,128,768,128,864,138.7C960,149,1056,171,1152,165.3C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.institutes_hero_section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero_content_center {
    position: relative;
    z-index: 2;
}


.hero_title_institutes {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero_subtitle_institutes {
    font-size: 1.3rem;
    color: white;
    opacity: 0.95;
    margin-bottom: 30px;
    font-weight: 300;
}

.breadcrumb_nav {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb_nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.breadcrumb_nav a:hover {
    opacity: 0.8;
}

.breadcrumb_nav span {
    margin: 0 10px;
}


.hero_content_center p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Hero Form Container */
.hero_form_container {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.hero_form_container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.hero_form {
    width: 100%;
}

.hero_form .form_title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f18917;
    margin-bottom: 10px;
    text-align: center;
}

.hero_form .form_subtitle {
    color: #666;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.modern_input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e8ecf3;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    background: #f8f9fb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.modern_input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.modern_input:focus {
    outline: none;
    border-color: #f18917;
    background: white;
    box-shadow: 0 0 0 4px rgba(241, 137, 23, 0.1);
    transform: translateY(-1px);
}

.modern_input:valid:not(:placeholder-shown) {
    border-color: #10b981;
    background: #f0fdf4;
}

/* Custom Select for modern_input */
select.modern_input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f18917' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    cursor: pointer;
}

.submit_btn_new {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f18917 0%, #ff6b35 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.submit_btn_new:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(241, 137, 23, 0.35);
}

.submit_btn_new:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.submit_btn_new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit_btn_new:hover::before {
    left: 100%;
}

.form_header {
    text-align: center;
    margin-bottom: 30px;
}

.offer_badge {
    background: linear-gradient(135deg, #f18917, #ff6b35);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.form_group {
    margin-bottom: 20px;
}

.form_group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
}

.form_control_custom {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form_control_custom:focus {
    outline: none;
    border-color: #f18917;
    background: white;
    box-shadow: 0 0 0 4px rgba(241, 137, 23, 0.1);
}

.input_icon {
    position: relative;
}

.input_icon i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.with_icon {
    padding-right: 40px;
}

.btn_submit_form {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #f18917, #ff6b35);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn_submit_form:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(241, 137, 23, 0.3);
}

.btn_submit_form::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn_submit_form:active::after {
    width: 300px;
    height: 300px;
}

.trust_indicators {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.trust_item {
    text-align: center;
    flex: 1;
}

.trust_number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f18917;
}

.trust_label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}


/* Enhanced Form Styling */
.form_group {
    position: relative;
}

.form_group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.form_group label i {
    color: #f18917;
    font-size: 0.9rem;
}

.form_control_custom {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e8ecf3;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    background: #f8f9fb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.form_control_custom::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.form_control_custom:focus {
    outline: none;
    border-color: #f18917;
    background: white;
    box-shadow: 0 0 0 4px rgba(241, 137, 23, 0.1);
    transform: translateY(-1px);
}

.form_control_custom:valid:not(:placeholder-shown) {
    border-color: #10b981;
    background: #f0fdf4;
}

/* Custom Select Dropdown */
.form_control_custom select,
select.form_control_custom {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f18917' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    cursor: pointer;
}

/* Input Icons */
.input_icon {
    position: relative;
}

.input_icon .form_control_custom {
    padding-right: 50px;
}

.input_icon i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.input_icon .form_control_custom:focus+i {
    color: #f18917;
}

/* Enhanced Submit Button */
.btn_submit_form {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f18917 0%, #ff6b35 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.btn_submit_form:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(241, 137, 23, 0.35);
}

.btn_submit_form:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.btn_submit_form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn_submit_form:hover::before {
    left: 100%;
}

.btn_submit_form i {
    margin-right: 8px;
}

.error {
    border-color: #ef4444;
    background: #fef2f2;
    animation: shake 0.5s ease-in-out;
}

.success {
    border-color: #10b981;
    background: #f0fdf4;
}


@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.btn_submit_form .loading {
    pointer-events: none;
    opacity: 0.8;
}


.btn_submit_form.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Enhanced Trust Indicators */
.trust_indicators {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #f1f5f9;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.trust_item {
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff5eb 0%, #fef7ed 100%);
    transition: transform 0.3s ease;
}

.trust_item:hover {
    transform: translateY(-2px);
}

.trust_number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #f18917;
    line-height: 1.2;
}

.trust_label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Header Enhancements */
.offer_badge {
    background: linear-gradient(135deg, #f18917, #ff6b35);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(241, 137, 23, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer_badge i {
    color: #ffd700;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* .form_title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 8px;
    line-height: 1.3;
} */

.form_subtitle {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 500;
}

/* Introduction Section */
.intro_section {
    padding: 60px 0;
    background: #fff;
}

.lead_text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.intro_content strong {
    color: #f18917;
}

/* Institute Listing Section */
.institutes_listing_section {
    padding: 30px 0;
    background: #f8f9fa;
}

.institute_card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #ff6933;
}

.institute_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(241, 137, 23, 0.15);
}

.institute_card.featured {
    background: linear-gradient(135deg, #fff5eb 0%, #fff 100%);
    border: 2px solid #ff6933;
    border-left: 4px solid #ff6933;
    position: relative;
}

.featured_badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #f18917;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(241, 137, 23, 0.3);
}

.featured_badge i {
    margin-right: 5px;
    color: #ffd700;
}

.institute_number {
    position: absolute;
    left: -20px;
    top: 30px;
    width: 50px;
    height: 50px;
    background: #ff6933;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(241, 137, 23, 0.3);
}

.institute_content {
    padding-left: 40px;
}

.institute_name {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.institute_description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlights_section {
    margin-top: 25px;
}

.highlights_section h3 {
    font-size: 1.2rem;
    color: #ff6933;
    margin-bottom: 15px;
    font-weight: 600;
}

.highlights_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.highlight_item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    /* background: #fff5eb; */
    border-radius: 8px;
}

.highlight_item i {
    color: #f18917;
    font-size: 1.2rem;
}

.highlights_list {
    list-style: none;
    padding-left: 0;
    column-count: 2;
}

.highlights_list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.highlights_list li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #f18917;
    font-weight: bold;
}

.institute_cta {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn_institute_primary {
    background: #f18917;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn_institute_primary:hover {
    background: #d97514;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 137, 23, 0.3);
    color: white;
}

.btn_institute_secondary {
    background: transparent;
    color: #f18917;
    padding: 12px 30px;
    border: 2px solid #f18917;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn_institute_secondary:hover {
    background: #f18917;
    color: white;
}

/* Verdict Section - Enhanced Design */
.verdict_section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #fff5eb 100%);
    position: relative;
    overflow: hidden;
}

.verdict_bg_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f18917" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,138.7C672,128,768,128,864,138.7C960,149,1056,171,1152,165.3C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.7;
}

.verdict_animated_shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.verdict_shape {
    position: absolute;
    background: rgba(241, 137, 23, 0.1);
    border-radius: 50%;
    animation: verdictFloat 15s infinite ease-in-out;
}

.verdict_shape1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.verdict_shape2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.verdict_shape3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 60%;
    animation-delay: 6s;
}

@keyframes verdictFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.7;
    }
}

.verdict_content {
    position: relative;
    z-index: 2;
}

.verdict_badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f18917, #ff6b35);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(241, 137, 23, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.verdict_badge i {
    color: #ffd700;
    font-size: 18px;
}

.verdict_title {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #333, #f18917);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.verdict_highlight_box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    width: 100%;
    max-width: none;
    position: relative;
    border: 2px solid #f18917;
    overflow: hidden;
}

.verdict_highlight_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #f18917, #ff6b35);
}

.verdict_icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f18917, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(241, 137, 23, 0.3);
}

.verdict_text {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.verdict_text strong {
    color: #f18917;
    font-weight: 700;
}

.verdict_stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.verdict_stat_item {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    transition: transform 0.3s ease;
}

.verdict_stat_item:hover {
    transform: translateY(-10px);
}

.stat_number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f18917;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat_label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta_buttons_verdict {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn_primary_verdict {
    background: linear-gradient(135deg, #f18917, #ff6b35);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(241, 137, 23, 0.3);
    position: relative;
    overflow: hidden;
}

.btn_primary_verdict::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn_primary_verdict:hover::before {
    left: 100%;
}

.btn_primary_verdict:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(241, 137, 23, 0.4);
    color: white;
}

/*
.btn_secondary_verdict {
    background: white;
    color: #f18917;
    padding: 18px 45px;
    border: 3px solid #f18917;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn_secondary_verdict:hover {
    background: #f18917;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(241, 137, 23, 0.3);
}
*/

.btn_primary_verdict i,
.btn_secondary_verdict i {
    font-size: 16px;
}

/* Responsive Design for Verdict Section */
@media (max-width: 768px) {
    .verdict_title {
        font-size: 2.2rem;
    }

    .verdict_highlight_box {
        padding: 30px 20px;
        margin: 30px 15px;
    }

    .verdict_text {
        font-size: 1.1rem;
    }

    .verdict_stats {
        gap: 30px;
    }

    .cta_buttons_verdict {
        flex-direction: column;
        align-items: center;
    }

    .btn_primary_verdict,
    .btn_secondary_verdict {
        width: 280px;
        justify-content: center;
    }
}

/* FAQ Section for this page */
.faq_section_page {
    padding: 10px 0;
    background: #f8f9fa;
}

.faq_section_page .section_title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.faq_section_page .section_subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.faq_container {
    max-width: 900px;
    margin: 0 auto;
}

.faq_item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq_item:hover {
    box-shadow: 0 5px 15px rgba(241, 137, 23, 0.1);
}

.faq_question {
    width: 100%;
    padding: 20px 30px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq_question:hover {
    background: #fff5eb;
}

.faq_item.active .faq_question {
    background: #f18917;
    color: white;
}

.faq_question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq_item.active .faq_question i {
    transform: rotate(180deg);
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq_item.active .faq_answer {
    max-height: 500px;
    padding: 20px 30px;
    border-top: 1px solid #eee;
}

.faq_answer p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.faq_answer strong {
    color: #f18917;
}

/* FAQ Group Styles */
.faq_section_group {
    margin-bottom: 30px;
}

.faq_group_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6933;
    margin-bottom: 25px;
    text-align: center !important;
    position: relative;
    padding-bottom: 15px;
    display: block;
    width: 100%;
}

.faq_group_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #f18917, #ff6b35);
    border-radius: 2px;
}

/* CTA Section for Institutes */
.cta_section_institutes {
    padding: 100px 0;
    background: linear-gradient(135deg, #f18917 0%, #ff6b35 50%, #d97514 100%);
    color: white;
    text-align: center;
}

.cta_section_institutes h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta_section_institutes p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta_buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn_cta_primary {
    background: white;
    color: #f18917;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn_cta_primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: #f18917;
}

.btn_cta_secondary {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn_cta_secondary:hover {
    background: white;
    color: #f18917;
}

/* Responsive Design for Institute Listing */
@media (max-width: 992px) {
    .hero_title_institutes {
        font-size: 2.5rem;
    }

    .institute_content {
        padding-left: 20px;
    }

    .highlights_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero_title_institutes {
        font-size: 2rem;
    }

    .hero_subtitle_institutes {
        font-size: 1.1rem;
    }

    .institute_number {
        position: static;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .institute_content {
        padding-left: 0;
    }

    .institute_cta {
        flex-direction: column;
    }

    .btn_institute_primary,
    .btn_institute_secondary {
        width: 100%;
        text-align: center;
    }

    .featured_badge {
        position: static;
        display: inline-block;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero_form_container {
        padding: 25px;
        margin-top: 30px;
    }

    .hero_form .form_title {
        font-size: 1.5rem;
    }

    .hero_form .form_subtitle {
        font-size: 0.9rem;
    }

    .modern_input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .submit_btn_new {
        padding: 14px 18px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero_title_institutes {
        font-size: 1.5rem;
    }

    .cta_buttons {
        flex-direction: column;
    }

    .btn_cta_primary,
    .btn_cta_secondary,
    .btn_primary_verdict,
    .btn_secondary_verdict {
        width: 100%;
    }

    .hero_form_container {
        padding: 20px;
    }

    .modern_input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .submit_btn_new {
        padding: 14px 18px;
        font-size: 1rem;
    }
}

/* =============================================== */
/* ADDITIONAL STYLES - MERGED FROM file.css */
/* =============================================== */

/*
.hero_section {
    background: white !important;
}

.hero_title {
    font-size: 3.5em;
}

.hero_description {
    color: #555;
    font-size: 1em;
}
*/

/*
.hero_image {
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.hero_image_box {
    height: 380px;
    width: fit-content;
    overflow: hidden;
    margin: 0 auto;
    z-index: 1;
}

.hero_image_overlay {
    position: absolute;
    bottom: -1em;
    right: 4em;
    background: var(--primary-yellow);
    z-index: 0;
    border-bottom-right-radius: 10px;
}
*/

.section_subtitle {
    color: #222222;
}

/*
.services_description {
    color: #555;
}

.services_iconbox>i {
    background: var(--primary-yellow);
    padding: 1em;
    color: white;
    border-radius: 50%;
    top: -2em;
}
*/

.download_brochure_btn {
    background: #f2622d;
    color: white;
    border: 1px solid transparent;
}

.download_brochure_btn:hover {
    background: white;
    color: #f2622d;
    border: 1px solid #f2622d;
}

/* =============================================== */
/* RESPONSIVE STYLES - MERGED FROM responsive.css */
/* =============================================== */

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .hero_side_details_title {
        font-size: 2em;
    }

    .tabs-nav {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        place-items: center !important;
    }


    .about_us_side_details_description,
    .about_us_title {
        width: 100% !important;
    }

    /*
.products-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        padding: 0;
    }
*/

    .spacer_div,
    .breadcrumbs_container {
        margin-top: 3em;
        padding: 1em 0 1em 1em;
    }


    .copyright-container {
        flex-direction: column;
    }
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
    .hero_side_details_title {
        font-size: 2em;
    }

    .tabs-nav {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        place-items: center !important;
    }


    .about_us_side_details_description,
    .about_us_title {
        width: 100% !important;
    }

    /*
.breadcrumbs_inner_container {
        flex-direction: column;
        gap: 1em;
        align-items: flex-start;
    }
*/

    /*
.products-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        padding: 0;
    }
*/

    .spacer_div,
    .breadcrumbs_container {
        margin-top: 3em;
        padding: 1em 0 1em 1em;
    }

}

@media only screen and (min-width: 769px) and (max-width: 992px) {
    .hero_side_details_title {
        font-size: 2em;
    }

    .tabs-nav {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        place-items: center !important;
    }

    .header_tag {
        padding: 1em !important;
    }

    .nav_links_ul {
        flex-direction: column;
    }

    .navigation_bar
    /*
.show_hide {
        position: absolute;
        top: 5em;
        background: white;
        padding: 1em;
        width: 100%;
        left: 0;
        display: block;
    }
*/

    .book_appointment_anchor,
    .navigation_bar {
        display: none;
    }

    .about_us_side_details_description,
    .about_us_title {
        width: 100% !important;
    }

    /*
.breadcrumbs_inner_container {
        flex-direction: column;
        gap: 1em;
        align-items: flex-start;
    }
*/

    .spacer_div,
    .breadcrumbs_container {
        padding: 1em 0 1em 1em;
        margin-top: 3em;
    }


}

/* Course Tabs Section Styles */
.course_tabs_section {
    padding: 30px 0;
    background: #f8f9fa;
}

.course_tabs_container {
    margin-top: 50px;
}

/*
.tab_buttons_container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: sticky;
    top: 100px;
}
*/

.tab_btn {
    padding: 20px;
    background: white;
    border: 2px solid transparent;
    border-radius: 15px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tab_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-orange);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.tab_btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(241, 137, 23, 0.15);
}

.tab_btn.active {
    background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%);
    border-color: var(--primary-orange);
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(241, 137, 23, 0.2);
}

.tab_btn.active::before {
    transform: translateX(0);
}

.tab_btn_content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tab_icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f18917 0%, #ff9d3d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.tab_btn.active .tab_icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.tab_text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #333;
}

.tab_text span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.tab_content_container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    min-height: 650px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.tab_pane {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.tab_pane.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab_title {
    color: #ff6933;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/*
.tab_description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-style: italic;
}
*/

.modules_list {
    display: grid;
    gap: 25px;
    margin-bottom: 30px;
}

.module_item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #ff6933;
    margin: 1em 0;
    transition: all 0.3s ease;
}

.module_item:hover {
    background: #fff5eb;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(241, 137, 23, 0.1);
}

.module_item h5 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.module_item h5 i {
    color: #ff6933;
    font-size: 1rem;
}

.module_item ul {
    list-style: none;
    margin-left: 30px;
}

.module_item li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.tab_title .module_item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6933;
    font-weight: bold;
}

.tools_box {
    background: #ff6933;
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.tools_box h5 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tools_box h5 i {
    font-size: 1rem;
}

.tools_box p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/*
.highlight_box {
    background: linear-gradient(135deg, #f18917 0%, #ff9d3d 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 30px;
}

.highlight_box i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.highlight_box p {
    font-size: 1.2rem;
    margin: 0;
}
*/

/* Responsive for Course Tabs */
@media (max-width: 991px) {
    .tab_buttons_container {
        position: relative;
        top: auto;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 10px;
    }

    .tab_btn {
        min-width: 280px;
        flex-shrink: 0;
    }

    .tab_content_container {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .course_tabs_section {
        padding: 50px 0;
    }

    .tab_content_container {
        padding: 25px;
    }

    .tab_title {
        font-size: 1.5rem;
    }

    .module_item {
        padding: 15px;
    }

    .module_item h5 {
        font-size: 1rem;
    }

    .tools_box {
        padding: 20px;
    }
}

.img-fluid.rounded {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* ========== AI COURSE STYLES ========== */

/* AI-themed gradient backgrounds */
/*
.ai-gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
*/

.ai-gradient-text {
    background: linear-gradient(90deg, #ffd700, #ffed4b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* AI animated particles */
.ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    display: none;
}

.particle {
    position: absolute;
    display: block;
    pointer-events: none;
    width: 6px;
    height: 6px;
    background: rgba(102, 126, 234, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

/* AI hero section */
.ai-hero-section {
    /* min-height: auto; */
    padding: 30px;
    background: linear-gradient(135deg, #f18917 0%, #ff6b35 50%, #d97514 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/*
.ai-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}
*/

.ai-hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.ai-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    color: white;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.ai-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.ai-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* AI tools grid */
.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.ai-tool-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.ai-tool-card:hover {
    transform: translateY(-5px);
}

.ai-tool-icon {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 10px;
}

/* Modern form styling */
.ai-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5em;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ai-form-title {
    color: #ff6933;
    font-weight: 700;
    margin-bottom: 10px;
}

.ai-form-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.ai-input {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
    background: white;
}

.ai-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    outline: none;
}

.ai-submit-btn {
    background: linear-gradient(135deg, #f18917 0%, #ff6b35 50%, #d97514 100%);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    color: white;
    font-weight: 600;
    width: 100%;
    transition: transform 0.3s ease;
}

.ai-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Course highlights section */
.highlights-section {
    padding: 100px 0;
    background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
}

.highlight-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: #295095;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

/* Modern Curriculum Section - New Design */
/*
.curriculum-modern-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}
*/

/*
.curriculum-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}
*/

/*
.curriculum-main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}
*/

/*
.gradient-text-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
*/

/*
.curriculum-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}
*/

/* Progress Bar */
/*
.curriculum-progress-bar {
    max-width: 800px;
    margin: 50px auto 60px;
    position: relative;
}
*/

/*
.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
*/

/*
.step {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
*/

/*
.step-number {
    display: block;
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid #e9ecef;
    border-radius: 50%;
    line-height: 44px;
    font-weight: 700;
    color: #999;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
}
*/

.step.active .step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
    transform: scale(1.1);
}

/*
.step-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}
*/

/*
.progress-line {
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e9ecef;
    z-index: 1;
}
*/

/*
.progress-fill {
    height: 100%;
    width: 25%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.5s ease;
}
*/

/* Mobile Tab Selector */
/*
.mobile-tab-selector {
    display: none;
    margin-bottom: 30px;
}
*/

/*
.mobile-module-select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
}
*/

/* Module Cards Grid */
/*
.module-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
*/

.module-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.module-card:hover,
.module-card.active {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.module-card:hover::before,
.module-card.active::before {
    transform: scaleX(1);
}

/*
.module-card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    font-weight: 700;
    color: #f0f0f0;
}
*/

/*
.module-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #667eea;
    font-size: 1.5rem;
}
*/

.module-card.active .module-card-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/*
.module-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}
*/

/*
.module-card-duration {
    font-size: 0.85rem;
    color: #999;
}
*/

/* Module Content Container */
/*
.module-content-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
*/

/*
.module-content-pane {
    display: none;
}

.module-content-pane.active {
    display: block;
    animation: fadeInRight 0.5s ease;
}
*/

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*
.module-header {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 25px;
    margin-bottom: 35px;
}
*/

/*
.module-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
*/

.module-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 15px 0 10px;
    color: #2c3e50;
}

/*
.module-description {
    font-size: 1.1rem;
    color: #666;
}
*/

/* Topic Cards Grid */
/*
.module-topics-grid {
    display: grid;
    gap: 25px;
}
*/

/*
.topic-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}
*/

.topic-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    border-left-color: #667eea;
    transform: translateX(10px);
}

/*
.topic-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}
*/

/*
.topic-content {
    flex: 1;
}
*/

.topic-content h6 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.topic-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

/*
.topic-duration {
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 600;
}
*/

/* Old Curriculum Tabs Section - Deprecated */
/*
.curriculum-tabs-section {
    padding: 100px 0;
    background: white;
}
*/

/*
.curriculum_tabs_container {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
*/

.tab_buttons_container {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    padding: 30px 0;
    height: 100%;
}

/*
.curriculum_tab_btn {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    padding: 20px 25px;
    text-align: left;
    transition: all 0.3s ease;
    border-radius: 0;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
}
*/

.curriculum_tab_btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: transparent;
    transition: all 0.3s ease;
}

.curriculum_tab_btn:hover,
.curriculum_tab_btn.active {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.curriculum_tab_btn.active::before {
    background: white;
}

.tab_btn_content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tab_icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.curriculum_tab_btn.active .tab_icon {
    background: white;
    color: #667eea;
}

.tab_text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: white;
}

.tab_text span {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.3;
}

.tab_content_container {
    padding: 40px;
    background: white;
    min-height: 600px;
}

/*
.curriculum_tab_pane {
    display: none;
}

.curriculum_tab_pane.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}
*/

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*
.curriculum_tab_title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}
*/

/*
.curriculum_tab_description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-style: italic;
}
*/

/*
.curriculum_modules_list {
    display: grid;
    gap: 20px;
}
*/

/*
.curriculum_module_item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}
*/

.curriculum_module_item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.curriculum_module_item h6 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.curriculum_module_item h6 i {
    color: #667eea;
    margin-right: 10px;
}

.curriculum_module_item p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Why choose AI section */
.why-ai-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.ai-benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.ai-benefit-card:hover {
    transform: translateY(-5px);
}

/* CTA section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f18917 0%, #ff6b35 50%, #d97514 100%);
    color: white;
    text-align: center;
}

.cta-buttons {
    margin-top: 30px;
}

.btn-cta-primary {
    background: white;
    color: #667eea;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-primary:hover {
    background: transparent;
    color: white;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-secondary:hover {
    background: white;
    color: #667eea;
}

/* Course Extras Enhanced Design */
.extras-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.extras-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #295095;
}

.extras-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.extras-icon-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.extras-icon {
    width: 70px;
    height: 70px;
    background: #295095;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.extras-content h5 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.extras-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.extras-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.extras-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #555;
    font-weight: 500;
}

.extras-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.1rem;
}

/* AI Course Responsive Styles */
@media (max-width: 768px) {
    .ai-title {
        font-size: 2.5rem;
    }

    .ai-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-card {
        padding: 30px 20px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        display: block;
        margin: 10px 0;
    }

    .extras-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .extras-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Curriculum tabs responsive */
    .curriculum_tabs_container .row {
        flex-direction: column;
    }

    .tab_buttons_container {
        display: flex;
        overflow-x: auto;
        padding: 20px 0;
        gap: 10px;
    }

    .curriculum_tab_btn {
        white-space: nowrap;
        min-width: 200px;
        margin-bottom: 0;
        margin-right: 10px;
    }

    .tab_content_container {
        padding: 30px 20px;
        min-height: auto;
    }

    .curriculum_tab_title {
        font-size: 1.5rem;
    }

    .curriculum_module_item {
        padding: 20px;
    }

    /* Modern Curriculum Responsive */
    .curriculum-modern-section {
        padding: 60px 0;
    }

    .curriculum-main-title {
        font-size: 2rem;
    }

    .curriculum-progress-bar {
        margin: 30px auto 40px;
    }

    .progress-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .mobile-tab-selector {
        display: block;
    }

    .module-cards-grid {
        display: none;
    }

    .module-content-container {
        padding: 25px;
        margin-top: 0;
    }

    .module-title {
        font-size: 1.5rem;
    }

    .topic-card {
        flex-direction: column;
        text-align: center;
    }

    .topic-icon {
        margin: 0 auto;
    }
}

/* Digital Marketing Institute Page Styles */

/* Stats Container Styles */
.stats_container {
    margin-top: 40px;
}

.stat_item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat_item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.stat_number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.stat_label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Benefits List Styles */
.benefits_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits_list li {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(241, 137, 23, 0.1);
    transition: all 0.3s ease;
}

.benefits_list li:hover {
    padding-left: 15px;
    background: rgba(241, 137, 23, 0.05);
    border-radius: 8px;
}

.benefits_list li i {
    color: #f18917;
    font-size: 18px;
    margin-right: 15px;
    min-width: 25px;
}

.benefits_list li:last-child {
    border-bottom: none;
}

/* Mission Section Styles */
.mission_section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f18917 0%, #d97514 100%);
    color: white;
    text-align: center;
}

.mission_quote {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    margin-top: 20px;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
    position: relative;
}

.mission_quote::before,
.mission_quote::after {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    font-family: serif;
}

.mission_quote::before {
    top: -20px;
    left: -30px;
}

.mission_quote::after {
    bottom: -40px;
    right: -30px;
}

/* Contact Info Card Styles */
.contact_info_section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact_info_card {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact_info_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #f18917 0%, #d97514 100%);
}

.contact_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.contact_details {
    margin: 40px 0;
}

.contact_item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(241, 137, 23, 0.05);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact_item:hover {
    background: rgba(241, 137, 23, 0.1);
    transform: translateY(-3px);
}

.contact_icon {
    color: #f18917;
    font-size: 24px;
    margin-right: 20px;
    min-width: 30px;
}

.contact_text {
    color: #333;
    font-weight: 500;
    margin: 0;
    text-align: left;
    flex: 1;
}

.contact_link {
    color: #f18917;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.contact_link:hover {
    color: #d97514;
}

.cta_buttons_contact {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn_primary_contact,
.btn_secondary_contact {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn_primary_contact {
    background: linear-gradient(135deg, #f18917 0%, #d97514 100%);
    color: white;
}

.btn_primary_contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(241, 137, 23, 0.3);
    color: white;
}

.btn_secondary_contact {
    background: transparent;
    color: #f18917;
    border: 2px solid #f18917;
}

.btn_secondary_contact:hover {
    background: #f18917;
    color: white;
    transform: translateY(-3px);
}

/* Curriculum Section Styles */
.curriculum_section {
    padding: 80px 0;
    background: white;
}

.curriculum_placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    margin-top: 40px;
    border: 2px dashed #f18917;
}

.curriculum_placeholder h3 {
    color: #f18917;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.curriculum_placeholder p {
    color: #666;
    font-size: 1.1rem;
}

/* Why BeinggSocial Section */
.why_beingg_social_section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5eb 0%, #fff 100%);
}

/* Reviews Section Placeholder */
.reviews_section {
    padding: 80px 0;
    background: white;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .stats_container {
        flex-direction: column;
        gap: 20px;
    }

    .stat_item {
        width: 100%;
    }

    .stat_number {
        font-size: 2rem;
    }

    .contact_title {
        font-size: 2rem;
    }

    .mission_quote {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .mission_quote::before,
    .mission_quote::after {
        display: none;
    }

    .contact_info_card {
        padding: 40px 20px;
    }

    .contact_item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact_text {
        text-align: center;
    }

    .cta_buttons_contact {
        flex-direction: column;
        align-items: center;
    }

    .btn_primary_contact,
    .btn_secondary_contact {
        width: 100%;
        max-width: 300px;
    }
}

/* Training Features Section Styles */
.training_features_section {
    background: #f8f9fa;
    padding: 80px 0;
}

.feature_image_container {
    position: relative;
}

.feature_image_container img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/*
.floating_badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f18917 0%, #ff9d3d 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(241, 137, 23, 0.3);
}
*/

.feature_item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature_number {
    width: 50px;
    height: 50px;
    background: #ff6933;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
    padding: 30px;
}

.feature_number i {
    color: white !important;
}

.feature_item h5 {
    margin: 0 0 5px 0;
    color: #333;
}

.feature_item p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.download_brochure_btn {
    background: linear-gradient(135deg, #f18917 0%, #ff9d3d 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(241, 137, 23, 0.3);
}

.about_section_bg {
    background-color: #fff;
}