/* Smooth Scrolling */
html {
    scroll-behavior: smooth !important;
}

/* Custom styles for navigation fixes */

/* Adjust the navigation list position */
.td_nav_list_wrap {
    margin-left: 200px;
    /* Shift all buttons to the right where All Category was */
}

/* Increase spacing between nav items */
.td_nav .td_nav_list>li {
    margin-right: 25px !important;
    /* Reduced from 35px to 25px */
}

/* Adjust the last nav item spacing */
.td_nav .td_nav_list>li:last-child {
    margin-right: 0;
    padding-right: 30px;
    /* Reduced from 40px to 30px */
}

/* Adjust the search button position */
.td_hero_icon_btns {
    margin-left: 20px;
    /* Reduced from 30px to 20px */
    position: relative;
    z-index: 1;
}

/* Adjust the main header center position */
.td_main_header_center {
    margin-right: 60px;
    /* Reduced from 80px to 60px */
}

/* Make the navigation more responsive */
@media screen and (max-width: 1400px) {
    .td_nav_list_wrap {
        margin-left: 150px;
        /* Adjust shift for smaller screens */
    }

    .td_nav .td_nav_list>li {
        margin-right: 20px !important;
        /* Reduced from 25px to 20px */
    }

    .td_main_header_center {
        margin-right: 50px;
        /* Reduced from 60px to 50px */
    }

    .td_nav .td_nav_list>li:last-child {
        padding-right: 25px;
        /* Reduced from 25px to 20px */
    }
}

@media screen and (max-width: 1200px) {
    .td_nav_list_wrap {
        margin-left: 100px;
        /* Adjust shift for even smaller screens */
    }

    .td_nav .td_nav_list>li {
        margin-right: 15px !important;
        /* Reduced from 20px to 15px */
    }

    .td_main_header_center {
        margin-right: 40px;
    }

    .td_nav .td_nav_list>li:last-child {
        padding-right: 20px;
        /* Reduced from 25px to 20px */
    }
}

/* Mobile hamburger menu color */
@media screen and (max-width: 1199px) {
    .td_menu_toggle {
        color: #000000 !important;
        /* Black color for mobile hamburger menu */
        position: fixed !important;
        top: 35px !important;
        right: 20px !important;
        z-index: 1001 !important;
    }

    /* Adjust logo position for mobile */
    .td_site_header.td_style_1 .td_main_header_left {
        position: absolute;
        right: 60px;
        left: auto;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }

    /* Fix mobile menu alignment and animation */
    .td_nav_list_wrap {
        position: fixed;
        width: 280px;
        height: calc(100vh - 80px);
        /* Reduced height to leave space at top */
        top: 80px;
        /* Start menu below header */
        right: -280px;
        left: auto;
        background-color: #fff;
        transition: all 0.4s ease;
        padding-top: 20px;
        /* Reduced top padding */
        z-index: 999;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .td_nav_list_wrap.td_active {
        right: 0;
        left: auto;
    }

    /* Close button container */
    .td_nav_list_wrap .td_close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Close button X shape */
    .td_nav_list_wrap .td_close:before,
    .td_nav_list_wrap .td_close:after {
        content: '';
        position: absolute;
        width: 20px;
        height: 2px;
        background-color: #000;
        transition: all 0.3s ease;
    }

    .td_nav_list_wrap .td_close:before {
        transform: rotate(45deg);
    }

    .td_nav_list_wrap .td_close:after {
        transform: rotate(-45deg);
    }

    .td_nav .td_nav_list {
        width: 100%;
        padding: 0 20px;
    }

    .td_nav .td_nav_list>li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .td_nav .td_nav_list>li>a {
        padding: 15px 0;
        display: block;
        font-size: 16px;
        color: #000;
        font-weight: 500;
    }

    .td_nav .td_nav_list ul {
        padding-left: 15px;
        display: none;
        background: #fff;
    }

    .td_nav .td_nav_list ul li a {
        padding: 12px 0;
        font-size: 14px;
        color: #333;
    }

    /* Active menu item styles */
    .td_nav .td_nav_list>li.active>a,
    .td_nav .td_nav_list>li>a:hover {
        color: var(--accent-color, #007bff);
    }

    .td_nav .td_nav_list>li:last-child {
        border-bottom: none;
    }
}

/* Ensure search button stays in position */
.td_site_header .td_hero_icon_btns {
    position: absolute;
    right: 95px;
    /* Match container padding */
    top: 50%;
    transform: translateY(-50%);
}

/* Add container padding to prevent search button from touching edge */
.td_main_header .container-fluid {
    padding-right: 120px !important;
    /* Increased padding to accommodate search button */
}

/* Price Plan Styles */
.td_price_box {
    padding: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 600px;
}

/* Ensure all pricing cards in a row have the same height */
.row .col-lg-4 {
    display: flex;
}

.row .col-lg-4 .td_price_box {
    width: 100%;
}

/* Force equal height for all pricing cards */
#price-plans .row .col-lg-4 .td_price_box {
    height: 100% !important;
    min-height: 600px !important;
    display: flex !important;
    flex-direction: column !important;
}

#price-plans .row .col-lg-4 .td_price_box .td_price_box_features {
    flex-grow: 1 !important;
}

/* Window Header */
.td_price_box_header {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 30px 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

/* Window Title Bar */
.td_price_box_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    padding: 0 15px;
}

/* Window Control Buttons */
.td_price_box_header::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 15px;
    width: 12px;
    height: 12px;
    background: #ff5f57;
    border-radius: 50%;
    box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #28c940;
}

.td_price_box_title {
    color: var(--heading-color);
    margin: 15px 0 20px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
}

.td_price_box_price {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin: 15px 0;
    text-align: center;
    background: linear-gradient(45deg, var(--accent-color), #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.td_price_box_currency {
    font-size: 28px;
    vertical-align: top;
    margin-right: 5px;
    font-weight: 600;
}

.td_price_box_period {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    display: block;
    margin-top: 5px;
    text-align: center;
}

/* Window Content */
.td_price_box_features {
    list-style: none;
    padding: 30px 35px;
    margin: 0;
    background: #fff;
    flex-grow: 1;
}

.td_price_box_features li {
    padding: 15px 0;
    color: #444;
    display: flex;
    align-items: center;
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.td_price_box_features li:last-child {
    border-bottom: none;
}

.td_price_box_features li i {
    margin-right: 15px;
    font-size: 16px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.td_price_box_features li i.fa-check {
    color: #fff;
    background: #28a745;
}

.td_price_box_features li i.fa-times {
    color: #fff;
    background: #dc3545;
}

.td_price_box_features li.td_disabled {
    color: #999;
}

/* Window Footer */
.td_price_box_footer {
    padding: 30px 35px;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.td_price_box_footer .td_btn {
    width: 100%;
    justify-content: center;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(45deg, var(--accent-color), #6c5ce7);
    border: none;
    transition: all 0.3s ease;
}

.td_price_box_footer .td_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

/* Popular Plan */
.td_price_box.td_popular {
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.td_popular_tag {
    position: absolute;
    top: 40px;
    right: -35px;
    background: linear-gradient(45deg, var(--accent-color), #6c5ce7);
    color: #fff;
    padding: 8px 40px;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Hover Effects */
.td_price_box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.td_price_box.td_popular:hover {
    transform: translateY(-10px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .td_price_box {
        margin-bottom: 30px;
    }

    .td_price_box_title {
        font-size: 24px;
    }

    .td_price_box_price {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .td_price_box_features {
        padding: 20px 25px;
    }

    .td_price_box_features li {
        font-size: 14px;
        padding: 12px 0;
    }

    .td_price_box_header,
    .td_price_box_footer {
        padding: 25px;
    }
}

/* Simple Grade Cards - iSchool Style */
.td_simple_grade_card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid transparent;
}

.td_simple_grade_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.td_simple_grade_card.td_popular {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.td_simple_grade_card.td_popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.td_simple_grade_card.td_advanced {
    border-color: #6c5ce7;
}

.td_popular_badge,
.td_advanced_badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.td_advanced_badge {
    background: #6c5ce7;
}

.td_grade_badge {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.td_grade_number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
    line-height: 1;
}

.td_grade_age {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.td_grade_title {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.td_grade_description {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    max-width: 280px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .td_simple_grade_card {
        padding: 30px 25px;
        margin-bottom: 30px;
    }

    .td_simple_grade_card.td_popular {
        transform: none;
    }

    .td_simple_grade_card.td_popular:hover {
        transform: translateY(-5px);
    }

    .td_grade_number {
        font-size: 42px;
    }

    .td_grade_title {
        font-size: 22px;
    }

    .td_grade_description {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .td_simple_grade_card {
        padding: 25px 20px;
        margin-bottom: 25px;
    }

    .td_grade_number {
        font-size: 36px;
    }

    .td_grade_title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .td_grade_description {
        font-size: 14px;
    }
}

/* Age-based Learning Cards */
.td_age_card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.td_age_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.td_age_card.td_popular {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.td_age_card.td_popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.td_age_card.td_advanced {
    border-color: #6c5ce7;
}

.td_popular_badge,
.td_advanced_badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.td_advanced_badge {
    background: #6c5ce7;
}

.td_age_icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #6c5ce7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.td_age_icon i {
    font-size: 32px;
    color: white;
}

.td_age_card:hover .td_age_icon {
    transform: scale(1.1);
}

.td_age_range {
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.td_age_title {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.td_age_description {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 280px;
}

.td_learn_more_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid var(--accent-color);
    border-radius: 25px;
    background: transparent;
    transition: all 0.3s ease;
    margin-top: auto;
}

.td_learn_more_btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.td_learn_more_btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.td_age_card:hover .td_learn_more_btn i {
    transform: rotate(90deg);
}

/* Learning Details Section */
.td_learning_details {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent-color);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.td_details_content {
    padding: 30px;
}

.td_details_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.td_details_header h3 {
    color: var(--accent-color);
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

.td_close_details {
    background: none;
    border: none;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.td_close_details:hover {
    background: #f0f0f0;
    color: #333;
}

.td_details_body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.td_learning_outcomes,
.td_skills_gained {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
}

.td_learning_outcomes h4,
.td_skills_gained h4 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.td_learning_outcomes h4 i,
.td_skills_gained h4 i {
    color: var(--accent-color);
    font-size: 18px;
}

.td_outcome_list,
.td_skills_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.td_outcome_list li,
.td_skills_list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #555;
    font-size: 15px;
    line-height: 1.4;
}

.td_outcome_list li i,
.td_skills_list li i {
    color: var(--accent-color);
    font-size: 14px;
    width: 16px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .td_age_card {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .td_age_card.td_popular {
        transform: none;
    }

    .td_age_card.td_popular:hover {
        transform: translateY(-5px);
    }

    .td_age_icon {
        width: 70px;
        height: 70px;
    }

    .td_age_icon i {
        font-size: 28px;
    }

    .td_age_title {
        font-size: 22px;
    }

    .td_age_description {
        font-size: 15px;
    }

    .td_details_body {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .td_age_card {
        padding: 20px 15px;
        margin-bottom: 25px;
        margin-left: auto;
        margin-right: auto;
        max-width: 320px;
        width: 100%;
    }

    .td_age_icon {
        width: 60px;
        height: 60px;
    }

    .td_age_icon i {
        font-size: 24px;
    }

    .td_age_title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .td_age_description {
        font-size: 14px;
    }

    .td_details_content {
        padding: 20px;
    }

    .td_details_header h3 {
        font-size: 24px;
    }

    .td_learning_outcomes,
    .td_skills_gained {
        padding: 20px;
    }
}

/* Custom CSS for footer icon spacing fix - RTL Arabic Support */

/* Fix footer address widget icon spacing for RTL Arabic */
.td_footer_address_widget li {
    padding-right: 28px !important;
    /* Increase padding to prevent overlap */
    position: relative;
}

.td_footer_address_widget li i {
    position: absolute;
    right: 0;
    /* Position icon on the right for RTL */
    top: 0px;
    font-size: 18px;
    /* Slightly larger icon for better visibility */
    color: #fff;
    /* Ensure icon color is white */
}

/* Mobile responsive adjustments for RTL */
@media (max-width: 767px) {
    .td_footer_address_widget li {
        padding-right: 24px !important;
        /* Increase padding for mobile */
    }

    .td_footer_address_widget li i {
        font-size: 16px;
        /* Slightly larger icons on mobile */
    }
}

/* Ensure proper alignment for all footer themes in RTL */
.td_footer.td_style_1 .td_footer_address_widget li,
.td_footer.td_style_1.td_type_1 .td_footer_address_widget li,
.td_footer.td_style_1.td_type_3 .td_footer_address_widget li {
    padding-right: 26px !important;
    /* Increase padding for theme 3 */
}

/* Fix for layout4 which has different structure in RTL */
.td_footer.td_style_1 .td_footer_address_widget li i {
    position: absolute;
    right: 0;
    /* Position icon on the right for RTL */
    top: 0px;
    font-size: 18px;
    /* Match the larger icon size */
}

/* Ensure text doesn't wrap awkwardly in RTL */
.td_footer_address_widget li a,
.td_footer_address_widget li span {
    word-break: break-word;
    line-height: 1.4;
}

/* LTR (Left-to-Right) fallback for non-Arabic languages */
[dir="ltr"] .td_footer_address_widget li {
    padding-left: 16px !important;
    padding-right: 0 !important;
}

[dir="ltr"] .td_footer_address_widget li i {
    left: 0;
    right: auto;
}

[dir="ltr"] .td_footer.td_style_1 .td_footer_address_widget li,
[dir="ltr"] .td_footer.td_style_1.td_type_1 .td_footer_address_widget li,
[dir="ltr"] .td_footer.td_style_1.td_type_3 .td_footer_address_widget li {
    padding-left: 14px !important;
    padding-right: 0 !important;
}

[dir="ltr"] .td_footer.td_style_1 .td_footer_address_widget li i {
    left: 0;
    right: auto;
}

/* Certificate Section Styles */
.td_certificate_section .row {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.td_certificate_section .col-lg-4 {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.td_certificate_feature {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 320px !important;
    /* Force exact same height */
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center;
    margin: 0 auto;
    /* Center the cards */
}

.td_certificate_feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.td_feature_icon {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.td_certificate_feature h3 {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    flex-shrink: 0;
    height: 50px;
    /* Fixed height for titles */
    display: flex;
    align-items: center;
    justify-content: center;
}

.td_certificate_feature p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

/* Certificate image styling */
.td_certificate_img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .td_certificate_feature {
        margin-bottom: 30px;
        height: 280px !important;
        /* Force exact same height on tablet */
        max-width: 300px;
    }

    .td_certificate_section .row {
        justify-content: center;
    }

    .td_certificate_section .col-lg-4 {
        justify-content: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .td_certificate_feature {
        padding: 25px 15px;
        height: 260px !important;
        /* Force exact same height on mobile */
        max-width: 280px;
        margin: 0 auto 20px auto;
        /* Center and add bottom margin */
    }

    .td_feature_icon {
        width: 60px !important;
        height: 60px !important;
    }

    .td_certificate_feature h3 {
        font-size: 18px;
        height: 45px;
        /* Adjusted for mobile */
    }

    .td_certificate_feature p {
        font-size: 14px;
        line-height: 1.5;
    }

    .td_certificate_section .row {
        justify-content: center;
        text-align: center;
    }

    .td_certificate_section .col-lg-4 {
        justify-content: center;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
}